This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/web.go

60 lines
1.2 KiB
Go
Raw Normal View History

2015-07-28 15:57:12 +02:00
package main
2015-07-28 15:56:20 +02:00
import (
"fmt"
"io/ioutil"
"net/http"
)
2015-07-28 17:31:37 +02:00
var client_token = new(map[string]string)
var external_ip = ""
2015-07-28 15:56:20 +02:00
type Page struct {
Title string
Body []byte
}
func (p *Page) save() error {
filename := p.Title + ".txt"
return ioutil.WriteFile(filename, p.Body, 0600)
}
func loadPage(title string) (*Page, error) {
filename := title + ".txt"
body, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
return &Page{Title: title, Body: body}, nil
}
func handler(w http.ResponseWriter, r *http.Request) {
2015-07-28 17:31:37 +02:00
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
2015-07-28 15:56:20 +02:00
}
2015-07-28 17:31:37 +02:00
func Webserver() {
2015-07-28 15:56:20 +02:00
http.HandleFunc("/", handler)
2015-07-28 16:00:27 +02:00
http.ListenAndServe(":9563", nil)
2015-07-28 15:56:20 +02:00
}
2015-07-28 17:31:37 +02:00
func GetWebAddress(user *gumble.User) {
dj.SendPrivateMessage(user, fmt.Sprintf(WEB_ADDRESS, getIP(), user.Name, getIP(), user.Name))
}
func getIP() string {
if external_ip != "" {
return external_ip
} else {
if response, err := http.Get("http://myexternalip.com/raw"); err == nil {
defer response.Body.Close()
if response.StatusCode == 200 {
if body, err := ioutil.ReadAll(response.Body); err == nil {
external_ip = string(body)
}
}
}
return external_ip
}
}