forked from mar-mei/guide2go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
56 lines (47 loc) · 1.25 KB
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"fmt"
"log"
"net/http"
"os"
"strings"
"github.com/gorilla/mux"
)
func Server() {
log.SetOutput(os.Stdout)
port := strings.Split(Config.Options.Hostname, ":")
var addr string
serverImagesPath := Config.Options.ImagesPath
fs := http.FileServer(http.Dir(serverImagesPath))
if len(port) == 2 {
addr = ":" + port[1]
} else {
log.Println("No port found, using port 8080")
addr = ":8080"
}
log.Printf("Listening on: %s", addr)
log.Printf("Using %s folder as image path", serverImagesPath)
r := mux.NewRouter()
if Config.Options.ProxyImages {
r.HandleFunc("/images/{id}", proxyImages)
} else if Config.Options.TVShowImages {
r.PathPrefix("/images/").Handler(http.StripPrefix("/images/", fs))
}
r.HandleFunc("/run", run)
err := http.ListenAndServe(addr, r)
if err != nil {
log.Fatal(err)
}
}
func proxyImages(w http.ResponseWriter, r *http.Request) {
image := mux.Vars(r)
url := "https://json.schedulesdirect.org/20141201/image/" + image["id"] + "?token=" + Token
a, _ := http.NewRequest("GET", url, nil)
http.Redirect(w, a, url, http.StatusSeeOther)
log.Println("requested image: " + r.RequestURI)
}
func run(w http.ResponseWriter, r *http.Request) {
var sd SD
go sd.Update(Config2)
fmt.Fprint(w, "Grabbing EPG")
}