From 11c0e0ca37ce58d74f3cd5831265b9912f6bc8ea Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Fri, 8 Jan 2021 22:25:55 -0500 Subject: Make the application a bit more user friendly Make a split between being accessed over loopback and remotely. Attempt to show the IP of the server on the internal page to make it easy to hand out. Remove the ability to change any of the runtime configuration or quit the program unless you're local. --- cmd/web/index.go | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 54 insertions(+), 4 deletions(-) (limited to 'cmd/web/index.go') diff --git a/cmd/web/index.go b/cmd/web/index.go index a4a91c2..87f9e25 100644 --- a/cmd/web/index.go +++ b/cmd/web/index.go @@ -20,11 +20,14 @@ var ( +{{ if .Local }}

Library: {{.Lib.Folder}}

{{ if .Info.Running }} @@ -39,6 +42,42 @@ Error {{.Info.Error}} Downloading from: {{.Info.Url}} {{ end }} +

About

+

+The steam exporter is designed to let you export your steam games, either to +another local hard drive or another computer on the network. +

+

+It also allows you to import games from across the network as well if you +provide an HTTP url from which to download the game file as exported +from this application. +

+

+ + You can download this application from this UI as well here. + +

+ +

+You can give people this link to view the library remotely and download +games from your computer: +

+http://{{.HostIP}}:{{.Port}}/ +

+{{ else }} +

Remote Steam library access

+ + + If you need this program to install the games click here. + + +

+Right click and copy the link address to paste into your local machine +if you do not wish to store the archive or have enough space for it on +your drive. +

+{{ end }} +

Installed games: @@ -54,6 +93,7 @@ an external hard drive {{ end }} +{{ if .Local }} Delete a game: ( Type out exact name, case sensitive )

@@ -80,7 +120,7 @@ Change library path
- +{{ end }}

Version information

{{.Version}}
@@ -97,10 +137,20 @@ func index(w http.ResponseWriter, r *http.Request) { err := Templ.ExecuteTemplate(w, "index", struct { - Lib *steam.Library - Info *statusInfo + Lib *steam.Library + Info *statusInfo + Local bool + HostIP string + Port string Version string - }{Lib, status.s, Version}) + }{ + Lib, + status.s, + isLocal(r.RemoteAddr), + getHostIP(), + getPort(), + Version, + }) if err != nil { Logger.Printf("While Rendering template: %s", err) } -- cgit v1.2.3