2023-09-21 16:43:11 +01:00
|
|
|
package utils
|
2023-09-18 00:26:42 +01:00
|
|
|
|
|
|
|
import (
|
2023-09-19 13:39:59 +01:00
|
|
|
"database/sql"
|
|
|
|
"errors"
|
2023-09-18 00:26:42 +01:00
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2023-09-19 13:39:59 +01:00
|
|
|
"io"
|
2023-09-18 00:26:42 +01:00
|
|
|
"net/http"
|
2023-09-21 15:38:02 +01:00
|
|
|
"os"
|
|
|
|
"path"
|
2023-09-18 00:26:42 +01:00
|
|
|
"strings"
|
2023-09-19 13:39:59 +01:00
|
|
|
"time"
|
2023-09-21 16:43:11 +01:00
|
|
|
|
|
|
|
dbtypes "git.andr3h3nriqu3s.com/andr3/fyp/logic/db_types"
|
2024-03-09 10:52:08 +00:00
|
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/models/utils"
|
2023-10-20 12:37:56 +01:00
|
|
|
"github.com/charmbracelet/log"
|
2024-04-09 17:28:59 +01:00
|
|
|
"github.com/go-playground/validator/v10"
|
2024-02-23 23:49:23 +00:00
|
|
|
"github.com/goccy/go-json"
|
2023-09-18 00:26:42 +01:00
|
|
|
)
|
|
|
|
|
2023-09-19 13:39:59 +01:00
|
|
|
type AnyMap = map[string]interface{}
|
|
|
|
|
2023-09-18 00:26:42 +01:00
|
|
|
type Error struct {
|
2023-09-21 16:43:11 +01:00
|
|
|
Code int
|
2024-03-09 10:52:08 +00:00
|
|
|
data any
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 13:50:03 +01:00
|
|
|
type HandleFunc struct {
|
|
|
|
path string
|
2024-03-09 10:52:08 +00:00
|
|
|
fn func(c *Context) *Error
|
2023-09-18 13:50:03 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 00:26:42 +01:00
|
|
|
type Handler interface {
|
|
|
|
New()
|
|
|
|
Startup()
|
2024-03-09 10:52:08 +00:00
|
|
|
Get(fn func(c *Context) *Error)
|
|
|
|
Post(fn func(c *Context) *Error)
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 13:50:03 +01:00
|
|
|
type Handle struct {
|
2024-04-13 16:59:08 +01:00
|
|
|
Db *sql.DB
|
|
|
|
gets []HandleFunc
|
|
|
|
posts []HandleFunc
|
|
|
|
deletes []HandleFunc
|
|
|
|
Config Config
|
|
|
|
validate *validator.Validate
|
2023-09-18 13:50:03 +01:00
|
|
|
}
|
2023-09-18 00:26:42 +01:00
|
|
|
|
2023-09-19 13:39:59 +01:00
|
|
|
func decodeBody(r *http.Request) (string, *Error) {
|
|
|
|
body, err := io.ReadAll(r.Body)
|
|
|
|
if err == nil {
|
2023-09-21 16:43:11 +01:00
|
|
|
return "", &Error{Code: http.StatusBadRequest}
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return string(body[:]), nil
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func handleError(err *Error, c *Context) {
|
2023-09-18 00:26:42 +01:00
|
|
|
if err != nil {
|
2024-03-09 10:52:08 +00:00
|
|
|
c.Logger.Warn("Responded with error", "code", err.Code, "data", err.data)
|
|
|
|
c.Writer.WriteHeader(err.Code)
|
|
|
|
var e *Error
|
|
|
|
if err.data != nil {
|
|
|
|
e = c.SendJSON(err.data)
|
|
|
|
} else {
|
|
|
|
e = c.SendJSON(500)
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|
2024-03-09 10:52:08 +00:00
|
|
|
if e != nil {
|
2024-04-12 20:36:23 +01:00
|
|
|
c.Logger.Error("Something went very wrong while trying to send and error message")
|
2024-03-09 10:52:08 +00:00
|
|
|
c.Writer.Write([]byte("505"))
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) Get(path string, fn func(c *Context) *Error) {
|
|
|
|
x.gets = append(x.gets, HandleFunc{path, fn})
|
2023-09-21 15:38:02 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) Post(path string, fn func(c *Context) *Error) {
|
|
|
|
x.posts = append(x.posts, HandleFunc{path, fn})
|
2023-09-21 15:38:02 +01:00
|
|
|
}
|
|
|
|
|
2024-04-09 17:28:59 +01:00
|
|
|
func (x *Handle) PostAuth(path string, authLevel int, fn func(c *Context) *Error) {
|
|
|
|
inner_fn := func(c *Context) *Error {
|
2024-04-13 16:59:08 +01:00
|
|
|
if !c.CheckAuthLevel(authLevel) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fn(c)
|
|
|
|
}
|
|
|
|
x.posts = append(x.posts, HandleFunc{path, inner_fn})
|
|
|
|
}
|
|
|
|
|
|
|
|
func PostAuthJson[T interface{}](x *Handle, path string, authLevel int, fn func(c *Context, obj *T) *Error) {
|
|
|
|
inner_fn := func(c *Context) *Error {
|
|
|
|
if !c.CheckAuthLevel(authLevel) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
obj := new(T)
|
|
|
|
|
|
|
|
if err := c.ToJSON(obj); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fn(c, obj)
|
2024-04-09 17:28:59 +01:00
|
|
|
}
|
2024-04-13 16:59:08 +01:00
|
|
|
|
2024-04-09 17:28:59 +01:00
|
|
|
x.posts = append(x.posts, HandleFunc{path, inner_fn})
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) Delete(path string, fn func(c *Context) *Error) {
|
|
|
|
x.deletes = append(x.deletes, HandleFunc{path, fn})
|
2023-09-18 13:50:03 +01:00
|
|
|
}
|
|
|
|
|
2024-04-13 00:38:36 +01:00
|
|
|
func (x *Handle) DeleteAuth(path string, authLevel int, fn func(c *Context) *Error) {
|
|
|
|
inner_fn := func(c *Context) *Error {
|
2024-04-13 16:59:08 +01:00
|
|
|
if !c.CheckAuthLevel(authLevel) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fn(c)
|
2024-04-13 00:38:36 +01:00
|
|
|
}
|
|
|
|
x.posts = append(x.posts, HandleFunc{path, inner_fn})
|
|
|
|
}
|
|
|
|
|
2024-04-13 16:59:08 +01:00
|
|
|
func DeleteAuthJson[T interface{}](x *Handle, path string, authLevel int, fn func(c *Context, obj *T) *Error) {
|
|
|
|
inner_fn := func(c *Context) *Error {
|
|
|
|
if !c.CheckAuthLevel(authLevel) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
obj := new(T)
|
|
|
|
|
|
|
|
if err := c.ToJSON(obj); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fn(c, obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
x.deletes = append(x.deletes, HandleFunc{path, inner_fn})
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) handleGets(context *Context) {
|
2024-04-13 16:59:08 +01:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
context.Logger.Error("Something went very wrong", "Error", r)
|
|
|
|
handleError(&Error{500, "500"}, context)
|
|
|
|
}
|
|
|
|
}()
|
2024-04-12 20:36:23 +01:00
|
|
|
|
2023-09-18 13:50:03 +01:00
|
|
|
for _, s := range x.gets {
|
2024-03-09 10:52:08 +00:00
|
|
|
if s.path == context.R.URL.Path {
|
|
|
|
handleError(s.fn(context), context)
|
2023-09-18 13:50:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 15:47:31 +01:00
|
|
|
context.ShowMessage = false
|
2024-03-09 10:52:08 +00:00
|
|
|
handleError(&Error{404, "Endpoint not found"}, context)
|
2023-09-18 13:50:03 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) handlePosts(context *Context) {
|
2024-04-13 16:59:08 +01:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
context.Logger.Error("Something went very wrong", "Error", r)
|
|
|
|
handleError(&Error{500, "500"}, context)
|
|
|
|
}
|
|
|
|
}()
|
2024-04-12 20:36:23 +01:00
|
|
|
|
2023-09-18 13:50:03 +01:00
|
|
|
for _, s := range x.posts {
|
2024-03-09 10:52:08 +00:00
|
|
|
if s.path == context.R.URL.Path {
|
|
|
|
handleError(s.fn(context), context)
|
2023-09-18 13:50:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 15:47:31 +01:00
|
|
|
context.ShowMessage = false
|
2024-03-09 10:52:08 +00:00
|
|
|
handleError(&Error{404, "Endpoint not found"}, context)
|
2023-09-18 13:50:03 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x *Handle) handleDeletes(context *Context) {
|
2024-04-13 16:59:08 +01:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
context.Logger.Error("Something went very wrong", "Error", r)
|
|
|
|
handleError(&Error{500, "500"}, context)
|
|
|
|
}
|
|
|
|
}()
|
2024-04-12 20:36:23 +01:00
|
|
|
|
2023-09-21 15:38:02 +01:00
|
|
|
for _, s := range x.deletes {
|
2024-03-09 10:52:08 +00:00
|
|
|
if s.path == context.R.URL.Path {
|
|
|
|
handleError(s.fn(context), context)
|
2023-09-21 15:38:02 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 15:47:31 +01:00
|
|
|
context.ShowMessage = false
|
2024-03-09 10:52:08 +00:00
|
|
|
handleError(&Error{404, "Endpoint not found"}, context)
|
2023-09-21 15:38:02 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (c *Context) CheckAuthLevel(authLevel int) bool {
|
2023-09-21 15:38:02 +01:00
|
|
|
if authLevel > 0 {
|
2024-03-09 10:52:08 +00:00
|
|
|
if c.requireAuth() {
|
|
|
|
c.Logoff()
|
2023-09-21 15:38:02 +01:00
|
|
|
return false
|
|
|
|
}
|
2023-09-21 16:43:11 +01:00
|
|
|
if c.User.UserType < authLevel {
|
2024-03-09 10:52:08 +00:00
|
|
|
c.NotAuth()
|
2023-09-21 15:38:02 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-09-19 13:39:59 +01:00
|
|
|
type Context struct {
|
2024-04-08 14:17:13 +01:00
|
|
|
Token *string
|
|
|
|
User *dbtypes.User
|
|
|
|
Logger *log.Logger
|
|
|
|
Db *sql.DB
|
|
|
|
Writer http.ResponseWriter
|
|
|
|
R *http.Request
|
|
|
|
Tx *sql.Tx
|
|
|
|
ShowMessage bool
|
2024-04-08 15:47:31 +01:00
|
|
|
Handle *Handle
|
2024-04-08 14:17:13 +01:00
|
|
|
}
|
|
|
|
|
2024-04-13 16:59:08 +01:00
|
|
|
func (c Context) GetDb() *sql.DB {
|
|
|
|
return c.Db
|
2024-04-12 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
2024-04-13 16:59:08 +01:00
|
|
|
func (c Context) GetLogger() *log.Logger {
|
|
|
|
return c.Logger
|
2024-04-12 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c Context) Query(query string, args ...any) (*sql.Rows, error) {
|
2024-04-13 16:59:08 +01:00
|
|
|
return c.Db.Query(query, args...)
|
2024-04-12 20:36:23 +01:00
|
|
|
}
|
|
|
|
|
2024-04-08 14:17:13 +01:00
|
|
|
func (c Context) Prepare(str string) (*sql.Stmt, error) {
|
|
|
|
if c.Tx == nil {
|
|
|
|
return c.Db.Prepare(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.Tx.Prepare(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
var TransactionAlreadyStarted = errors.New("Transaction already started")
|
|
|
|
var TransactionNotStarted = errors.New("Transaction not started")
|
|
|
|
|
|
|
|
func (c *Context) StartTx() error {
|
|
|
|
if c.Tx != nil {
|
|
|
|
return TransactionAlreadyStarted
|
|
|
|
}
|
|
|
|
var err error = nil
|
|
|
|
c.Tx, err = c.Db.Begin()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) CommitTx() error {
|
|
|
|
if c.Tx == nil {
|
|
|
|
return TransactionNotStarted
|
|
|
|
}
|
|
|
|
err := c.Tx.Commit()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.Tx = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) RollbackTx() error {
|
|
|
|
if c.Tx == nil {
|
|
|
|
return TransactionNotStarted
|
|
|
|
}
|
|
|
|
err := c.Tx.Rollback()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.Tx = nil
|
|
|
|
return nil
|
2023-10-06 09:45:47 +01:00
|
|
|
}
|
|
|
|
|
2024-04-12 20:36:23 +01:00
|
|
|
/**
|
|
|
|
* Parse and vailidates the json
|
2024-04-13 16:59:08 +01:00
|
|
|
*/
|
2024-04-12 20:36:23 +01:00
|
|
|
func (c Context) ParseJson(dat any, str string) *Error {
|
|
|
|
decoder := json.NewDecoder(strings.NewReader(str))
|
|
|
|
|
2024-04-13 16:59:08 +01:00
|
|
|
return c.decodeAndValidade(decoder, dat)
|
2024-04-12 20:36:23 +01:00
|
|
|
}
|
2024-02-23 23:49:23 +00:00
|
|
|
|
2024-04-12 20:36:23 +01:00
|
|
|
func (c Context) ToJSON(dat any) *Error {
|
2024-03-09 10:52:08 +00:00
|
|
|
decoder := json.NewDecoder(c.R.Body)
|
2024-04-13 16:59:08 +01:00
|
|
|
|
|
|
|
return c.decodeAndValidade(decoder, dat)
|
2024-04-12 20:36:23 +01:00
|
|
|
}
|
2024-02-23 23:49:23 +00:00
|
|
|
|
2024-04-12 20:36:23 +01:00
|
|
|
func (c Context) decodeAndValidade(decoder *json.Decoder, dat any) *Error {
|
2024-03-09 10:52:08 +00:00
|
|
|
err := decoder.Decode(dat)
|
|
|
|
if err != nil {
|
2024-04-13 16:59:08 +01:00
|
|
|
c.Logger.Error("Failed to decode json", "dat", dat, "err", err)
|
|
|
|
return c.JsonBadRequest("Bad Request! Invalid json passed!")
|
2024-03-09 10:52:08 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 16:59:08 +01:00
|
|
|
err = c.Handle.validate.Struct(dat)
|
|
|
|
if err != nil {
|
|
|
|
c.Logger.Error("Failed invalid json passed", "dat", dat, "err", err)
|
|
|
|
return c.JsonBadRequest("Bad Request! Invalid json passed!")
|
|
|
|
}
|
2024-04-09 17:28:59 +01:00
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
return nil
|
2024-02-23 23:49:23 +00:00
|
|
|
}
|
|
|
|
|
2024-03-01 23:03:25 +00:00
|
|
|
func (c Context) SendJSON(dat any) *Error {
|
2024-03-09 10:52:08 +00:00
|
|
|
c.Writer.Header().Add("content-type", "application/json")
|
|
|
|
text, err := json.Marshal(dat)
|
|
|
|
if err != nil {
|
|
|
|
return c.Error500(err)
|
|
|
|
}
|
|
|
|
if _, err = c.Writer.Write(text); err != nil {
|
|
|
|
return c.Error500(err)
|
|
|
|
}
|
|
|
|
return nil
|
2024-02-23 23:49:23 +00:00
|
|
|
}
|
|
|
|
|
2024-03-01 23:03:25 +00:00
|
|
|
func (c Context) SendJSONStatus(status int, dat any) *Error {
|
2024-03-09 10:52:08 +00:00
|
|
|
c.Writer.Header().Add("content-type", "application/json")
|
|
|
|
c.Writer.WriteHeader(status)
|
|
|
|
text, err := json.Marshal(dat)
|
|
|
|
if err != nil {
|
|
|
|
return c.Error500(err)
|
|
|
|
}
|
|
|
|
if _, err = c.Writer.Write(text); err != nil {
|
|
|
|
return c.Error500(err)
|
|
|
|
}
|
|
|
|
return nil
|
2024-02-23 23:49:23 +00:00
|
|
|
}
|
|
|
|
|
2024-03-01 23:03:25 +00:00
|
|
|
func (c Context) JsonBadRequest(dat any) *Error {
|
2024-03-09 10:52:08 +00:00
|
|
|
c.SetReportCaller(true)
|
|
|
|
c.Logger.Warn("Request failed with a bad request", "dat", dat)
|
|
|
|
c.SetReportCaller(false)
|
2024-04-13 16:59:08 +01:00
|
|
|
return c.ErrorCode(nil, 404, dat)
|
2024-03-01 23:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c Context) JsonErrorBadRequest(err error, dat any) *Error {
|
2023-10-20 12:37:56 +01:00
|
|
|
c.SetReportCaller(true)
|
2024-03-09 10:52:08 +00:00
|
|
|
c.Logger.Error("Error while processing request", "err", err, "dat", dat)
|
2023-10-20 12:37:56 +01:00
|
|
|
c.SetReportCaller(false)
|
2024-03-09 10:52:08 +00:00
|
|
|
return c.SendJSONStatus(http.StatusBadRequest, dat)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) GetModelFromId(id_path string) (*BaseModel, *Error) {
|
|
|
|
|
|
|
|
id, err := GetIdFromUrl(c, id_path)
|
2023-10-06 10:46:45 +01:00
|
|
|
if err != nil {
|
2024-03-09 10:52:08 +00:00
|
|
|
return nil, c.SendJSONStatus(http.StatusNotFound, "Model not found")
|
2023-10-06 10:46:45 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
model, err := GetBaseModel(c.Db, id)
|
|
|
|
if err == ModelNotFoundError {
|
|
|
|
return nil, c.SendJSONStatus(http.StatusNotFound, "Model not found")
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, c.Error500(err)
|
2023-10-20 12:37:56 +01:00
|
|
|
}
|
2023-10-06 10:46:45 +01:00
|
|
|
|
2024-04-08 14:17:13 +01:00
|
|
|
return model, nil
|
2024-03-09 10:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ModelUpdateStatus(c *Context, id string, status int) {
|
|
|
|
_, err := c.Db.Exec("update models set status=$1 where id=$2;", status, id)
|
|
|
|
if err != nil {
|
2024-04-08 14:17:13 +01:00
|
|
|
c.Logger.Error("Failed to update model status", "err", err)
|
|
|
|
c.Logger.Warn("TODO Maybe handle better")
|
2024-03-09 10:52:08 +00:00
|
|
|
}
|
2023-10-06 10:46:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c Context) SetReportCaller(report bool) {
|
2023-10-20 12:37:56 +01:00
|
|
|
if report {
|
|
|
|
c.Logger.SetCallerOffset(2)
|
|
|
|
c.Logger.SetReportCaller(true)
|
|
|
|
} else {
|
|
|
|
c.Logger.SetCallerOffset(1)
|
|
|
|
c.Logger.SetReportCaller(false)
|
|
|
|
}
|
2023-10-06 10:46:45 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (c Context) ErrorCode(err error, code int, data any) *Error {
|
2023-10-20 12:37:56 +01:00
|
|
|
if code == 400 {
|
|
|
|
c.SetReportCaller(true)
|
|
|
|
c.Logger.Warn("When returning BadRequest(400) please use context.Error400\n")
|
|
|
|
c.SetReportCaller(false)
|
|
|
|
}
|
2023-10-06 09:45:47 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Logger.Errorf("Something went wrong returning with: %d\n.Err:\n", code)
|
|
|
|
c.Logger.Error(err)
|
|
|
|
}
|
2024-03-09 10:52:08 +00:00
|
|
|
return &Error{code, data}
|
2023-10-12 12:08:12 +01:00
|
|
|
}
|
|
|
|
|
2023-10-06 10:46:45 +01:00
|
|
|
func (c Context) Error500(err error) *Error {
|
|
|
|
return c.ErrorCode(err, http.StatusInternalServerError, nil)
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
|
|
|
|
2024-04-12 20:36:23 +01:00
|
|
|
func (c Context) E500M(msg string, err error) *Error {
|
|
|
|
return c.ErrorCode(err, http.StatusInternalServerError, msg)
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (c *Context) requireAuth() bool {
|
2023-09-21 15:38:02 +01:00
|
|
|
if c.User == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var LogoffError = errors.New("Invalid token!")
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (x Handle) createContext(handler *Handle, r *http.Request, w http.ResponseWriter) (*Context, error) {
|
2023-09-19 13:39:59 +01:00
|
|
|
|
|
|
|
var token *string
|
|
|
|
|
2023-10-20 12:37:56 +01:00
|
|
|
logger := log.NewWithOptions(os.Stdout, log.Options{
|
2024-02-08 18:20:58 +00:00
|
|
|
ReportCaller: true,
|
2023-10-20 12:37:56 +01:00
|
|
|
ReportTimestamp: true,
|
|
|
|
TimeFormat: time.Kitchen,
|
|
|
|
Prefix: r.URL.Path,
|
|
|
|
})
|
2023-10-12 12:08:12 +01:00
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
t := r.Header.Get("token")
|
|
|
|
if t != "" {
|
|
|
|
token = &t
|
|
|
|
}
|
2023-09-19 13:39:59 +01:00
|
|
|
|
2023-09-21 15:38:02 +01:00
|
|
|
// TODO check that the token is still valid
|
2023-09-19 13:39:59 +01:00
|
|
|
if token == nil {
|
|
|
|
return &Context{
|
2024-04-08 15:47:31 +01:00
|
|
|
Logger: logger,
|
|
|
|
Db: handler.Db,
|
|
|
|
Writer: w,
|
|
|
|
R: r,
|
|
|
|
ShowMessage: true,
|
|
|
|
Handle: &x,
|
2023-09-21 15:38:02 +01:00
|
|
|
}, nil
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
|
|
|
|
2023-09-21 16:43:11 +01:00
|
|
|
user, err := dbtypes.UserFromToken(x.Db, *token)
|
2023-09-19 13:39:59 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Join(err, LogoffError)
|
|
|
|
}
|
|
|
|
|
2024-04-08 15:47:31 +01:00
|
|
|
return &Context{token, user, logger, handler.Db, w, r, nil, true, &x}, nil
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func contextlessLogoff(w http.ResponseWriter) {
|
|
|
|
w.WriteHeader(http.StatusUnauthorized)
|
|
|
|
w.Write([]byte("\"Not Authorized\""))
|
2023-09-21 15:38:02 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
func (c *Context) Logoff() { contextlessLogoff(c.Writer) }
|
|
|
|
|
|
|
|
func (c *Context) NotAuth() {
|
|
|
|
c.Writer.WriteHeader(http.StatusUnauthorized)
|
|
|
|
e := c.SendJSON("Not Authorized")
|
|
|
|
if e != nil {
|
|
|
|
c.Writer.WriteHeader(http.StatusInternalServerError)
|
|
|
|
c.Writer.Write([]byte("You can not access this resource!"))
|
2023-09-21 15:38:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 16:43:11 +01:00
|
|
|
func (x Handle) StaticFiles(pathTest string, fileType string, contentType string) {
|
2023-09-21 15:38:02 +01:00
|
|
|
http.HandleFunc(pathTest, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
path := r.URL.Path[len(pathTest):]
|
|
|
|
|
|
|
|
if !strings.HasSuffix(path, fileType) {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
w.Write([]byte("File not found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
t, err := template.ParseFiles("./views" + pathTest + path)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
w.Write([]byte("Failed to load template"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", contentType+"; charset=utf-8")
|
|
|
|
t.Execute(w, nil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-09-21 16:43:11 +01:00
|
|
|
func (x Handle) ReadFiles(pathTest string, baseFilePath string, fileType string, contentType string) {
|
2023-09-21 15:38:02 +01:00
|
|
|
http.HandleFunc(pathTest, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user_path := r.URL.Path[len(pathTest):]
|
|
|
|
|
2023-09-27 21:20:39 +01:00
|
|
|
// fmt.Printf("Requested path: %s\n", user_path)
|
2023-09-21 15:38:02 +01:00
|
|
|
|
|
|
|
if !strings.HasSuffix(user_path, fileType) {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
w.Write([]byte("File not found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes, err := os.ReadFile(path.Join(baseFilePath, pathTest, user_path))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
w.Write([]byte("Failed to load file"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", contentType)
|
|
|
|
w.Write(bytes)
|
|
|
|
})
|
2023-09-19 13:39:59 +01:00
|
|
|
}
|
2023-09-18 13:50:03 +01:00
|
|
|
|
2024-03-02 12:45:49 +00:00
|
|
|
// TODO remove this
|
2023-10-20 12:37:56 +01:00
|
|
|
func (x Handle) ReadTypesFiles(pathTest string, baseFilePath string, fileTypes []string, contentTypes []string) {
|
|
|
|
http.HandleFunc(pathTest, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user_path := r.URL.Path[len(pathTest):]
|
|
|
|
|
|
|
|
// fmt.Printf("Requested path: %s\n", user_path)
|
|
|
|
|
|
|
|
found := false
|
2023-10-24 22:35:11 +01:00
|
|
|
index := -1
|
2023-10-20 12:37:56 +01:00
|
|
|
|
|
|
|
for i, fileType := range fileTypes {
|
|
|
|
if strings.HasSuffix(user_path, fileType) {
|
|
|
|
found = true
|
2023-10-24 22:35:11 +01:00
|
|
|
index = i
|
2024-03-02 12:45:49 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
w.Write([]byte("File not found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes, err := os.ReadFile(path.Join(baseFilePath, pathTest, user_path))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
w.Write([]byte("Failed to load file"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", contentTypes[index])
|
|
|
|
w.Write(bytes)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x Handle) ReadTypesFilesApi(pathTest string, baseFilePath string, fileTypes []string, contentTypes []string) {
|
2024-03-09 10:52:08 +00:00
|
|
|
http.HandleFunc("/api"+pathTest, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
r.URL.Path = strings.Replace(r.URL.Path, "/api", "", 1)
|
|
|
|
|
2024-03-02 12:45:49 +00:00
|
|
|
user_path := r.URL.Path[len(pathTest):]
|
|
|
|
|
|
|
|
found := false
|
|
|
|
index := -1
|
|
|
|
|
|
|
|
for i, fileType := range fileTypes {
|
|
|
|
if strings.HasSuffix(user_path, fileType) {
|
|
|
|
found = true
|
|
|
|
index = i
|
2023-10-20 12:37:56 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
w.Write([]byte("File not found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes, err := os.ReadFile(path.Join(baseFilePath, pathTest, user_path))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
w.Write([]byte("Failed to load file"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", contentTypes[index])
|
|
|
|
w.Write(bytes)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-04-08 15:47:31 +01:00
|
|
|
func NewHandler(db *sql.DB, config Config) *Handle {
|
2023-09-21 15:38:02 +01:00
|
|
|
|
|
|
|
var gets []HandleFunc
|
|
|
|
var posts []HandleFunc
|
|
|
|
var deletes []HandleFunc
|
2024-04-13 16:59:08 +01:00
|
|
|
validate := validator.New()
|
2024-04-09 17:28:59 +01:00
|
|
|
x := &Handle{db, gets, posts, deletes, config, validate}
|
2023-09-18 13:50:03 +01:00
|
|
|
|
2023-09-18 00:26:42 +01:00
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
2024-03-09 10:52:08 +00:00
|
|
|
|
|
|
|
w.Header().Add("Access-Control-Allow-Origin", "*")
|
|
|
|
w.Header().Add("Access-Control-Allow-Headers", "*")
|
|
|
|
w.Header().Add("Access-Control-Allow-Methods", "*")
|
|
|
|
|
2023-09-19 13:39:59 +01:00
|
|
|
// Decide answertype
|
2024-04-08 15:47:31 +01:00
|
|
|
/* if !(r.Header.Get("content-type") == "application/json" || r.Header.Get("response-type") == "application/json") {
|
2024-03-09 10:52:08 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
w.Write([]byte("Please set content-type to application/json or set response-type to application/json\n"))
|
|
|
|
return
|
2024-04-08 15:47:31 +01:00
|
|
|
}*/
|
2024-03-01 23:03:25 +00:00
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
if !strings.HasPrefix(r.URL.Path, "/api") {
|
|
|
|
w.WriteHeader(404)
|
|
|
|
w.Write([]byte("Path not found"))
|
|
|
|
return
|
|
|
|
}
|
2024-03-01 23:03:25 +00:00
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
r.URL.Path = strings.Replace(r.URL.Path, "/api", "", 1)
|
2023-09-18 13:50:03 +01:00
|
|
|
|
2023-09-19 13:39:59 +01:00
|
|
|
//Login state
|
2024-03-09 10:52:08 +00:00
|
|
|
context, err := x.createContext(x, r, w)
|
2023-09-19 13:39:59 +01:00
|
|
|
if err != nil {
|
2024-03-09 10:52:08 +00:00
|
|
|
contextlessLogoff(w)
|
2023-09-19 13:39:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:52:08 +00:00
|
|
|
// context.Logger.Info("Parsing", "path", r.URL.Path)
|
2024-02-23 23:49:23 +00:00
|
|
|
|
2023-09-18 13:50:03 +01:00
|
|
|
if r.Method == "GET" {
|
2024-03-09 10:52:08 +00:00
|
|
|
x.handleGets(context)
|
2024-04-08 14:17:13 +01:00
|
|
|
} else if r.Method == "POST" {
|
2024-03-09 10:52:08 +00:00
|
|
|
x.handlePosts(context)
|
2024-04-08 14:17:13 +01:00
|
|
|
} else if r.Method == "DELETE" {
|
2024-03-09 10:52:08 +00:00
|
|
|
x.handleDeletes(context)
|
2024-04-08 14:17:13 +01:00
|
|
|
} else if r.Method == "OPTIONS" {
|
|
|
|
// do nothing
|
2024-04-08 15:47:31 +01:00
|
|
|
} else {
|
|
|
|
panic("TODO handle method: " + r.Method)
|
|
|
|
}
|
|
|
|
|
|
|
|
if context.ShowMessage {
|
|
|
|
context.Logger.Info("Processed", "method", r.Method, "url", r.URL.Path)
|
|
|
|
}
|
2023-09-18 13:50:03 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
return x
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x Handle) Startup() {
|
2024-02-02 16:16:26 +00:00
|
|
|
log.Info("Starting up!\n")
|
2023-10-24 22:35:11 +01:00
|
|
|
|
2024-04-08 15:47:31 +01:00
|
|
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", x.Config.Port), nil))
|
2023-09-18 00:26:42 +01:00
|
|
|
}
|