system login,logout
This commit is contained in:
parent
9017881f05
commit
7fc74044d7
|
@ -1,2 +1,2 @@
|
||||||
webroot
|
/webroot
|
||||||
config.yml
|
config.yml
|
||||||
|
|
|
@ -2,5 +2,7 @@
|
||||||
api:
|
api:
|
||||||
address: ::1
|
address: ::1
|
||||||
port: 8080
|
port: 8080
|
||||||
webroot: ./webroot
|
allowedorigins: "*"
|
||||||
|
webroot: ./webroot/build
|
||||||
database: "host=localhost user=warehost dbname=warehost password=hallo sslmode=disable"
|
database: "host=localhost user=warehost dbname=warehost password=hallo sslmode=disable"
|
||||||
|
databasedebug: false
|
||||||
|
|
|
@ -10,12 +10,14 @@ import (
|
||||||
// Config is the struct of the api
|
// Config is the struct of the api
|
||||||
type Config struct {
|
type Config struct {
|
||||||
API struct {
|
API struct {
|
||||||
Address string `yaml:"address"`
|
Address string `yaml:"address"`
|
||||||
Port string `yaml:"port"`
|
Port string `yaml:"port"`
|
||||||
|
AllowedOrigins string `yaml:"allowedorigins"`
|
||||||
} `yaml:"api"`
|
} `yaml:"api"`
|
||||||
Webroot string `yaml:"webroot"`
|
Webroot string `yaml:"webroot"`
|
||||||
Database string `yaml:"database"`
|
Database string `yaml:"database"`
|
||||||
Modules []struct {
|
DatabaseDebug bool `yaml:"databasedebug"`
|
||||||
|
Modules []struct {
|
||||||
Name string `yaml:"name"`
|
Name string `yaml:"name"`
|
||||||
Database string `yaml:"database"`
|
Database string `yaml:"database"`
|
||||||
} `yaml:"modules"`
|
} `yaml:"modules"`
|
||||||
|
|
|
@ -1,14 +1,10 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"encoding/base64"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/astaxie/session"
|
"github.com/astaxie/session"
|
||||||
"github.com/julienschmidt/httprouter"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type JsonResult struct {
|
type JsonResult struct {
|
||||||
|
@ -38,36 +34,3 @@ func JsonOutput(sessions *session.Manager, w http.ResponseWriter, r *http.Reques
|
||||||
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
||||||
w.Write(js)
|
w.Write(js)
|
||||||
}
|
}
|
||||||
func BasicAuth(h httprouter.Handle, pass []byte) httprouter.Handle {
|
|
||||||
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
||||||
if origin := r.Header.Get("Origin"); origin != "" {
|
|
||||||
w.Header().Set("Access-Control-Allow-Origin", origin)
|
|
||||||
}
|
|
||||||
w.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE")
|
|
||||||
w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization")
|
|
||||||
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
||||||
|
|
||||||
const basicAuthPrefix string = "Basic "
|
|
||||||
|
|
||||||
// Get the Basic Authentication credentials
|
|
||||||
auth := r.Header.Get("Authorization")
|
|
||||||
if strings.HasPrefix(auth, basicAuthPrefix) {
|
|
||||||
// Check credentials
|
|
||||||
payload, err := base64.StdEncoding.DecodeString(auth[len(basicAuthPrefix):])
|
|
||||||
if err == nil {
|
|
||||||
pair := bytes.SplitN(payload, []byte(":"), 2)
|
|
||||||
if len(pair) == 2 &&
|
|
||||||
bytes.Equal(pair[1], pass) {
|
|
||||||
|
|
||||||
// Delegate request to the given handle
|
|
||||||
h(w, r, ps)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Request Basic Authentication otherwise
|
|
||||||
w.Header().Set("WWW-Authenticate", "Basic realm=Restricted")
|
|
||||||
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
17
main.go
17
main.go
|
@ -12,6 +12,7 @@ import (
|
||||||
"github.com/go-xorm/xorm"
|
"github.com/go-xorm/xorm"
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
_ "github.com/lib/pq"
|
_ "github.com/lib/pq"
|
||||||
|
"github.com/rs/cors"
|
||||||
|
|
||||||
libconfig "dev.sum7.de/sum7/warehost/config"
|
libconfig "dev.sum7.de/sum7/warehost/config"
|
||||||
"dev.sum7.de/sum7/warehost/system"
|
"dev.sum7.de/sum7/warehost/system"
|
||||||
|
@ -30,24 +31,38 @@ func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
config = libconfig.ReadConfigFile(configFile)
|
config = libconfig.ReadConfigFile(configFile)
|
||||||
|
|
||||||
|
// Session mgmt
|
||||||
sessions, _ = session.NewManager("memory", "session", 3600)
|
sessions, _ = session.NewManager("memory", "session", 3600)
|
||||||
go sessions.GC()
|
go sessions.GC()
|
||||||
|
|
||||||
|
// Main Databaseconnection
|
||||||
dbconnection, err = xorm.NewEngine("postgres", config.Database)
|
dbconnection, err = xorm.NewEngine("postgres", config.Database)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("[system] Error database connection: ", err)
|
log.Fatal("[system] Error database connection: ", err)
|
||||||
}
|
}
|
||||||
defer dbconnection.Close()
|
defer dbconnection.Close()
|
||||||
|
dbconnection.ShowSQL(config.DatabaseDebug)
|
||||||
|
//load system Models to database
|
||||||
system.SyncModels(dbconnection)
|
system.SyncModels(dbconnection)
|
||||||
|
|
||||||
|
// API routes
|
||||||
router := httprouter.New()
|
router := httprouter.New()
|
||||||
system.NewAPI(config, sessions, dbconnection, router, "")
|
system.NewAPI(config, sessions, dbconnection, router, "")
|
||||||
|
|
||||||
|
// Fallback filesystem
|
||||||
if config.Webroot != "" {
|
if config.Webroot != "" {
|
||||||
router.NotFound = gziphandler.GzipHandler(http.FileServer(http.Dir(config.Webroot)))
|
router.NotFound = gziphandler.GzipHandler(http.FileServer(http.Dir(config.Webroot)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Manage CORS (JsonOutput allow requested -> lib/api)
|
||||||
|
c := cors.New(cors.Options{
|
||||||
|
AllowedOrigins: []string{config.API.AllowedOrigins},
|
||||||
|
AllowCredentials: true,
|
||||||
|
})
|
||||||
|
handler := c.Handler(router)
|
||||||
|
// Start server
|
||||||
address := net.JoinHostPort(config.API.Address, config.API.Port)
|
address := net.JoinHostPort(config.API.Address, config.API.Port)
|
||||||
log.Println("starting webserver on", address)
|
log.Println("starting webserver on", address)
|
||||||
// TODO bad
|
// TODO bad
|
||||||
log.Fatal(http.ListenAndServe(address, router))
|
log.Fatal(http.ListenAndServe(address, handler))
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
|
||||||
|
|
||||||
"github.com/astaxie/session"
|
"github.com/astaxie/session"
|
||||||
"github.com/go-xorm/xorm"
|
"github.com/go-xorm/xorm"
|
||||||
|
@ -26,9 +25,10 @@ type API struct {
|
||||||
func NewAPI(config *libconfig.Config, sessions *session.Manager, dbconnection *xorm.Engine, router *httprouter.Router, prefix string) {
|
func NewAPI(config *libconfig.Config, sessions *session.Manager, dbconnection *xorm.Engine, router *httprouter.Router, prefix string) {
|
||||||
api := &API{config: config, sessions: sessions, dbconnection: dbconnection}
|
api := &API{config: config, sessions: sessions, dbconnection: dbconnection}
|
||||||
router.GET(prefix+"/status", api.Status)
|
router.GET(prefix+"/status", api.Status)
|
||||||
router.GET(prefix+"/login", api.Login)
|
|
||||||
router.GET(prefix+"/login/:id", api.FakeLogin)
|
|
||||||
router.GET(prefix+"/logout", api.Logout)
|
router.GET(prefix+"/logout", api.Logout)
|
||||||
|
|
||||||
|
router.POST(prefix+"/login", api.Login)
|
||||||
|
//router.OPTIONS(prefix+"/login", api.Login)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Status to get Login and Server status
|
// Status to get Login and Server status
|
||||||
|
@ -57,41 +57,26 @@ func (api *API) Login(w http.ResponseWriter, r *http.Request, _ httprouter.Param
|
||||||
var requestlogin RequestLogin
|
var requestlogin RequestLogin
|
||||||
err := json.NewDecoder(r.Body).Decode(&requestlogin)
|
err := json.NewDecoder(r.Body).Decode(&requestlogin)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Println("[system]-login error fetch request")
|
log.Println("[system]-login error fetch request")
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
libapi.JsonOutput(api.sessions, w, r, false)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var login = Login{Username: requestlogin.Username}
|
var login = Login{Username: requestlogin.Username}
|
||||||
_, err = api.dbconnection.Get(&login)
|
_, err = api.dbconnection.Get(&login)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
result := false
|
|
||||||
if login.Active {
|
|
||||||
output, _ := libpassword.Validate(login.Password, requestlogin.Password)
|
|
||||||
if output {
|
|
||||||
result = true
|
|
||||||
sess.Set("login", login)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
libapi.JsonOutput(api.sessions, w, r, result)
|
|
||||||
} else {
|
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Println("[system]-login error fetch database")
|
log.Println("[system]-login error fetch database")
|
||||||
libapi.JsonOutput(api.sessions, w, r, true)
|
libapi.JsonOutput(api.sessions, w, r, false)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// FakeLogin is a API test function
|
|
||||||
func (api *API) FakeLogin(w http.ResponseWriter, r *http.Request, params httprouter.Params) {
|
|
||||||
id, _ := strconv.ParseInt(params.ByName("id"), 10, 64)
|
|
||||||
sess := api.sessions.SessionStart(w, r)
|
|
||||||
var login = Login{}
|
|
||||||
_, err := api.dbconnection.Id(id).Get(&login)
|
|
||||||
result := false
|
result := false
|
||||||
if err != nil {
|
if login.Active {
|
||||||
log.Print("[system] Error get login count: ", err)
|
output, _ := libpassword.Validate(login.Password, requestlogin.Password)
|
||||||
} else {
|
if output {
|
||||||
sess.Set("login", login)
|
result = true
|
||||||
result = true
|
sess.Set("login", login)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
log.Println("[system]-login worked", result)
|
||||||
libapi.JsonOutput(api.sessions, w, r, result)
|
libapi.JsonOutput(api.sessions, w, r, result)
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue