Changed ExtendedApp to use ServeMux directly
More work on portfolio stuff Added technologies to portfolio projects
This commit is contained in:
@@ -15,10 +15,9 @@ type CrashFilterApp interface {
|
||||
AddCrash(IndividualCrash) bool
|
||||
}
|
||||
|
||||
// Allows an app more flexibility by directly interfacing with the backend's mux
|
||||
type ExtendedApp interface {
|
||||
// Extension is called for any calls to /{appID}/
|
||||
// Alternatively, use Backend.HandleFunc for more customizability
|
||||
Extension(http.ResponseWriter, *http.Request)
|
||||
Extension(*http.ServeMux)
|
||||
}
|
||||
|
||||
type simpleApp struct {
|
||||
|
||||
@@ -44,7 +44,7 @@ func NewBackend(keyTable Table[ApiKey], apps ...App) (*Backend, error) {
|
||||
}
|
||||
b.apps[apps[i].AppID()] = apps[i]
|
||||
if ext, is := apps[i].(ExtendedApp); is {
|
||||
b.m.HandleFunc("/"+apps[i].AppID()+"/", ext.Extension)
|
||||
ext.Extension(b.m)
|
||||
}
|
||||
if !hasLog && apps[i].CountTable() != nil {
|
||||
hasLog = true
|
||||
@@ -124,10 +124,12 @@ func (b *Backend) AddUserAuth(userTable Table[User], privKey, pubKey []byte) {
|
||||
b.m.HandleFunc("POST /user/login", b.login)
|
||||
}
|
||||
|
||||
// Add values to the Backend's underlying ServeMux
|
||||
func (b *Backend) HandleFunc(pattern string, h http.HandlerFunc) {
|
||||
b.m.HandleFunc(pattern, h)
|
||||
}
|
||||
|
||||
// Try to get the App associated with the given ApiKey. Returns nil if not found.
|
||||
func (b *Backend) GetApp(a *ApiKey) App {
|
||||
return b.apps[a.AppID]
|
||||
}
|
||||
|
||||
@@ -169,9 +169,13 @@ Return:
|
||||
```json
|
||||
[
|
||||
{
|
||||
title: "title",
|
||||
title: "Darkstorm Server",
|
||||
repository: "https://github.com/CalebQ42/darkstorm-server",
|
||||
description: "The backend that runs runs my website and APIs",
|
||||
technologies: [ // May be empty
|
||||
"MongoDB",
|
||||
"RESTful API"
|
||||
],
|
||||
language: [
|
||||
{
|
||||
language: "go",
|
||||
|
||||
+15
-13
@@ -16,7 +16,7 @@ type BlogApp struct {
|
||||
conv *bbConvert.HTMLConverter
|
||||
}
|
||||
|
||||
func NewBlogApp(b *backend.Backend, db *mongo.Database, mux *http.ServeMux) *BlogApp {
|
||||
func NewBlogApp(b *backend.Backend, db *mongo.Database) *BlogApp {
|
||||
out := &BlogApp{
|
||||
back: b,
|
||||
blogCol: db.Collection("blog"),
|
||||
@@ -25,18 +25,6 @@ func NewBlogApp(b *backend.Backend, db *mongo.Database, mux *http.ServeMux) *Blo
|
||||
conv: &bbConvert.HTMLConverter{},
|
||||
}
|
||||
out.conv.ImplementDefaults()
|
||||
// setup mux
|
||||
mux.HandleFunc("GET /blog", out.reqLatestBlogs)
|
||||
mux.HandleFunc("GET /blog/list", out.reqBlogList)
|
||||
mux.HandleFunc("GET /blog/{blogID}", out.reqBlog)
|
||||
mux.HandleFunc("POST /blog", out.createBlog)
|
||||
mux.HandleFunc("POST /blog/{blogID}", out.updateBlog)
|
||||
|
||||
mux.HandleFunc("GET /author/{authorID}", out.reqAuthorInfo)
|
||||
mux.HandleFunc("POST /author", out.addAuthorInfo)
|
||||
mux.HandleFunc("POST /author/{authorID}", out.updateAuthorInfo)
|
||||
|
||||
mux.HandleFunc("GET /portfolio", out.reqPortfolio)
|
||||
return out
|
||||
}
|
||||
|
||||
@@ -51,3 +39,17 @@ func (b *BlogApp) CountTable() backend.CountTable {
|
||||
func (b *BlogApp) CrashTable() backend.CrashTable {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (b *BlogApp) Extension(mux *http.ServeMux) {
|
||||
mux.HandleFunc("GET /blog", b.reqLatestBlogs)
|
||||
mux.HandleFunc("GET /blog/list", b.reqBlogList)
|
||||
mux.HandleFunc("GET /blog/{blogID}", b.reqBlog)
|
||||
mux.HandleFunc("POST /blog", b.createBlog)
|
||||
mux.HandleFunc("POST /blog/{blogID}", b.updateBlog)
|
||||
|
||||
mux.HandleFunc("GET /author/{authorID}", b.reqAuthorInfo)
|
||||
mux.HandleFunc("POST /author", b.addAuthorInfo)
|
||||
mux.HandleFunc("POST /author/{authorID}", b.updateAuthorInfo)
|
||||
|
||||
mux.HandleFunc("GET /portfolio", b.reqPortfolio)
|
||||
}
|
||||
|
||||
@@ -2,19 +2,22 @@ package blog
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"github.com/CalebQ42/darkstorm-server/internal/backend"
|
||||
"go.mongodb.org/mongo-driver/bson"
|
||||
)
|
||||
|
||||
type PortfolioProject struct {
|
||||
Title string `bson:"_id"`
|
||||
Repository string `bson:"repository"`
|
||||
Description string `bson:"description"`
|
||||
Languages []struct {
|
||||
Language string `bson:"language"`
|
||||
Dates string `bson:"dates"`
|
||||
} `bson:"language"`
|
||||
Title string `json:"_id" bson:"_id"`
|
||||
Repository string `json:"repository" bson:"repository"`
|
||||
Description string `json:"description" bson:"description"`
|
||||
Technologies []string `json:"technologies" bson:"technologies"`
|
||||
Languages []struct {
|
||||
Language string `json:"language" bson:"language"`
|
||||
Dates string `json:"dates" bson:"dates"`
|
||||
} `json:"language" bson:"language"`
|
||||
}
|
||||
|
||||
func (b *BlogApp) Projects(languageFilter string) ([]PortfolioProject, error) {
|
||||
@@ -32,5 +35,10 @@ func (b *BlogApp) Projects(languageFilter string) ([]PortfolioProject, error) {
|
||||
}
|
||||
|
||||
func (b *BlogApp) reqPortfolio(w http.ResponseWriter, r *http.Request) {
|
||||
//TODO
|
||||
folio, err := b.Projects(r.URL.Query().Get("lang"))
|
||||
if err != nil {
|
||||
backend.ReturnError(w, http.StatusInternalServerError, "internal", "Server Error")
|
||||
return
|
||||
}
|
||||
json.NewEncoder(w).Encode(folio)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user