1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package main
- import (
- "encoding/json"
- "io"
- "io/ioutil"
- "log"
- "os"
- "strings"
- "time"
- )
- // Application stores main information needed to run the app
- type Application struct {
- Name, AccessToken, Sid, BaseURL, AuthString string
- Languages map[string]string
- Delay time.Duration
- }
- // SetBaseURL sets base URL for API endpoint.
- func (app *Application) SetBaseURL(url string) {
- if !strings.HasSuffix(url, "/") {
- url += "/"
- }
- app.BaseURL = url
- }
- // JSONDecoder decodes json to given interface, borrowed from SO.
- func JSONDecoder(data io.ReadCloser, target interface{}) {
- decoder := json.NewDecoder(data)
- err := decoder.Decode(target)
- if err != nil {
- log.Printf("Error reading json: %v", err)
- }
- }
- // LoadLanguages loads languages from languages.json to map.
- func (app *Application) LoadLanguages() {
- data, err := os.Open("./html/languages.json")
- if err != nil {
- log.Fatalf("Error reading languages: %v", err)
- }
- defer data.Close()
- app.Languages = make(map[string]string)
- JSONDecoder(data, &app.Languages)
- }
- func (app Application) checkLanguage(language string) bool {
- _, ok := app.Languages[language]
- return ok
- }
- // Login logs into the API and sets AuthString.
- func (app *Application) Login() {
- credentials, err := ioutil.ReadFile("./secrets.json")
- if err != nil {
- log.Fatalf("Error reading credentials: %v", err)
- }
- loginURL := app.BaseURL + "auth/login"
- resp, err := postQuery(loginURL, credentials)
- if err != nil {
- log.Fatalf("Error logging in: %v", err)
- }
- if resp.StatusCode != 200 {
- log.Fatalf("Error logging in: %v", resp.Status)
- }
- defer resp.Body.Close()
- JSONDecoder(resp.Body, &app)
- app.AuthString = "?authToken=" + app.AccessToken
- log.Println(app.AuthString, resp.Status)
- }
|