mirror of
https://git.freecumextremist.com/grumbulon/pomme.git
synced 2024-11-22 11:33:46 +00:00
Merge pull request 'frontend :)' (#2) from frontend-init into master
Reviewed-on: https://git.freecumextremist.com/grumbulon/pomme/pulls/2
This commit is contained in:
commit
c8a22b5924
25 changed files with 2303 additions and 37 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -21,3 +21,6 @@
|
|||
# Go workspace file
|
||||
go.work
|
||||
|
||||
pomme
|
||||
test.db
|
||||
.dccache
|
14
README.md
14
README.md
|
@ -2,4 +2,16 @@ This will be a website that, to oversimplify things, allows users to submit zone
|
|||
|
||||
Working project title is pomme.
|
||||
|
||||
More information to come soon.
|
||||
More information to come soon.
|
||||
|
||||
## Running
|
||||
To build & install you need both Go and Node (>= 18 should work)
|
||||
|
||||
You also need to [install pnpm](https://pnpm.io/installation).
|
||||
|
||||
to generate and build:
|
||||
|
||||
```bash
|
||||
go generate ./...
|
||||
go build ./cmd/pomme
|
||||
```
|
||||
|
|
|
@ -4,52 +4,23 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"git.freecumextremist.com/grumbulon/pomme/frontend"
|
||||
"git.freecumextremist.com/grumbulon/pomme/internal/api"
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/go-chi/chi/v5/middleware"
|
||||
"github.com/go-pkgz/auth"
|
||||
"github.com/go-pkgz/auth/avatar"
|
||||
"github.com/go-pkgz/auth/provider"
|
||||
"github.com/go-pkgz/auth/token"
|
||||
)
|
||||
|
||||
func main() {
|
||||
options := auth.Opts{
|
||||
SecretReader: token.SecretFunc(func(id string) (string, error) { // secret key for JWT
|
||||
return "secret", nil
|
||||
}),
|
||||
TokenDuration: time.Minute * 5, // token expires in 5 minutes
|
||||
CookieDuration: time.Hour * 24, // cookie expires in 1 day and will enforce re-login
|
||||
Issuer: "pomme",
|
||||
URL: "http://127.0.0.1:8080",
|
||||
AvatarStore: avatar.NewLocalFS("/tmp"),
|
||||
Validator: token.ValidatorFunc(func(_ string, claims token.Claims) bool {
|
||||
// allow only dev_* names
|
||||
return claims.User != nil && strings.HasPrefix(claims.User.Name, "dev_")
|
||||
}),
|
||||
}
|
||||
service := auth.NewService(options)
|
||||
service.AddDirectProvider("local", provider.CredCheckerFunc(func(user, password string) (ok bool, err error) {
|
||||
ok, err = api.Login(user, password)
|
||||
return ok, err
|
||||
}))
|
||||
|
||||
m := service.Middleware()
|
||||
|
||||
pomme := chi.NewRouter()
|
||||
pomme.Use(middleware.Logger)
|
||||
pomme.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("welcome"))
|
||||
})
|
||||
pomme.Get("/create", api.NewUser)
|
||||
pomme.Post("/check", api.Ingest)
|
||||
pomme.With(m.Auth).Get("/private", api.AuthTest)
|
||||
authRoutes, avaRoutes := service.Handlers()
|
||||
pomme.Mount("/auth", authRoutes) // add auth handlers
|
||||
pomme.Mount("/avatar", avaRoutes) // add avatar handler
|
||||
pomme.Use(middleware.GetHead)
|
||||
pomme.Use(middleware.Recoverer)
|
||||
|
||||
pomme.Mount("/", frontend.SvelteKitHandler("/"))
|
||||
pomme.Mount("/api", api.Api())
|
||||
|
||||
log.Println("\t-------------------------------------")
|
||||
log.Println("\t\tRunning on port 3000")
|
||||
log.Println("\t-------------------------------------")
|
||||
|
|
13
frontend/.eslintignore
Normal file
13
frontend/.eslintignore
Normal file
|
@ -0,0 +1,13 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
20
frontend/.eslintrc.cjs
Normal file
20
frontend/.eslintrc.cjs
Normal file
|
@ -0,0 +1,20 @@
|
|||
module.exports = {
|
||||
root: true,
|
||||
parser: '@typescript-eslint/parser',
|
||||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
||||
plugins: ['svelte3', '@typescript-eslint'],
|
||||
ignorePatterns: ['*.cjs'],
|
||||
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
|
||||
settings: {
|
||||
'svelte3/typescript': () => require('typescript')
|
||||
},
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 2020
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
es2017: true,
|
||||
node: true
|
||||
}
|
||||
};
|
10
frontend/.gitignore
vendored
Normal file
10
frontend/.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
1
frontend/.npmrc
Normal file
1
frontend/.npmrc
Normal file
|
@ -0,0 +1 @@
|
|||
engine-strict=true
|
13
frontend/.prettierignore
Normal file
13
frontend/.prettierignore
Normal file
|
@ -0,0 +1,13 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
9
frontend/.prettierrc
Normal file
9
frontend/.prettierrc
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"useTabs": true,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": ["prettier-plugin-svelte"],
|
||||
"pluginSearchDirs": ["."],
|
||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||
}
|
38
frontend/README.md
Normal file
38
frontend/README.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
# create-svelte
|
||||
|
||||
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
|
||||
|
||||
## Creating a project
|
||||
|
||||
If you're seeing this, you've probably already done this step. Congrats!
|
||||
|
||||
```bash
|
||||
# create a new project in the current directory
|
||||
npm create svelte@latest
|
||||
|
||||
# create a new project in my-app
|
||||
npm create svelte@latest my-app
|
||||
```
|
||||
|
||||
## Developing
|
||||
|
||||
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
|
||||
# or start the server and open the app in a new browser tab
|
||||
npm run dev -- --open
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
To create a production version of your app:
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
You can preview the production build with `npm run preview`.
|
||||
|
||||
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
|
39
frontend/embed.go
Normal file
39
frontend/embed.go
Normal file
|
@ -0,0 +1,39 @@
|
|||
package frontend
|
||||
|
||||
import (
|
||||
"embed"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/fs"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
//go:generate pnpm i
|
||||
//go:generate pnpm run build
|
||||
//go:embed all:build
|
||||
var files embed.FS
|
||||
|
||||
// I stole this lol
|
||||
func SvelteKitHandler(path string) http.Handler {
|
||||
fsys, err := fs.Sub(files, "build")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
filesystem := http.FS(fsys)
|
||||
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
path := strings.TrimPrefix(r.URL.Path, path)
|
||||
|
||||
_, err := filesystem.Open(path)
|
||||
if errors.Is(err, os.ErrNotExist) {
|
||||
path = fmt.Sprintf("%s.html", path)
|
||||
}
|
||||
|
||||
r.URL.Path = path
|
||||
http.FileServer(filesystem).ServeHTTP(w, r)
|
||||
})
|
||||
}
|
36
frontend/package.json
Normal file
36
frontend/package.json
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"name": "frontend",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"test": "playwright test",
|
||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
||||
"test:unit": "vitest",
|
||||
"lint": "prettier --plugin-search-dir . --check . && eslint .",
|
||||
"format": "prettier --plugin-search-dir . --write ."
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.28.1",
|
||||
"@sveltejs/adapter-auto": "^1.0.0",
|
||||
"@sveltejs/adapter-static": "^1.0.0",
|
||||
"@sveltejs/kit": "^1.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
||||
"@typescript-eslint/parser": "^5.45.0",
|
||||
"eslint": "^8.28.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-svelte3": "^4.0.0",
|
||||
"prettier": "^2.8.0",
|
||||
"prettier-plugin-svelte": "^2.8.1",
|
||||
"svelte": "^3.54.0",
|
||||
"svelte-check": "^2.9.2",
|
||||
"tslib": "^2.4.1",
|
||||
"typescript": "^4.9.3",
|
||||
"vite": "^4.0.0",
|
||||
"vitest": "^0.25.3"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
11
frontend/playwright.config.ts
Normal file
11
frontend/playwright.config.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import type { PlaywrightTestConfig } from '@playwright/test';
|
||||
|
||||
const config: PlaywrightTestConfig = {
|
||||
webServer: {
|
||||
command: 'npm run build && npm run preview',
|
||||
port: 4173
|
||||
},
|
||||
testDir: 'tests'
|
||||
};
|
||||
|
||||
export default config;
|
1968
frontend/pnpm-lock.yaml
Normal file
1968
frontend/pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load diff
9
frontend/src/app.d.ts
vendored
Normal file
9
frontend/src/app.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
// See https://kit.svelte.dev/docs/types#app
|
||||
// for information about these interfaces
|
||||
// and what to do when importing types
|
||||
declare namespace App {
|
||||
// interface Error {}
|
||||
// interface Locals {}
|
||||
// interface PageData {}
|
||||
// interface Platform {}
|
||||
}
|
12
frontend/src/app.html
Normal file
12
frontend/src/app.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
7
frontend/src/index.test.ts
Normal file
7
frontend/src/index.test.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('sum test', () => {
|
||||
it('adds 1 + 2 to equal 3', () => {
|
||||
expect(1 + 2).toBe(3);
|
||||
});
|
||||
});
|
1
frontend/src/routes/+layout.ts
Normal file
1
frontend/src/routes/+layout.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export const prerender = true
|
2
frontend/src/routes/+page.svelte
Normal file
2
frontend/src/routes/+page.svelte
Normal file
|
@ -0,0 +1,2 @@
|
|||
<h1>Welcome to SvelteKit</h1>
|
||||
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
|
BIN
frontend/static/favicon.png
Normal file
BIN
frontend/static/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
15
frontend/svelte.config.js
Normal file
15
frontend/svelte.config.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import adapter from '@sveltejs/adapter-static';
|
||||
import { vitePreprocess } from '@sveltejs/kit/vite';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
||||
// for more information about preprocessors
|
||||
preprocess: vitePreprocess(),
|
||||
|
||||
kit: {
|
||||
adapter: adapter()
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
6
frontend/tests/test.ts
Normal file
6
frontend/tests/test.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { expect, test } from '@playwright/test';
|
||||
|
||||
test('index page has expected h1', async ({ page }) => {
|
||||
await page.goto('/');
|
||||
expect(await page.textContent('h1')).toBe('Welcome to SvelteKit');
|
||||
});
|
17
frontend/tsconfig.json
Normal file
17
frontend/tsconfig.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"extends": "./.svelte-kit/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"strict": true
|
||||
}
|
||||
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
||||
//
|
||||
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
||||
// from the referenced tsconfig.json - TypeScript does not merge them in
|
||||
}
|
11
frontend/vite.config.js
Normal file
11
frontend/vite.config.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
|
||||
/** @type {import('vite').UserConfig} */
|
||||
const config = {
|
||||
plugins: [sveltekit()],
|
||||
test: {
|
||||
include: ['src/**/*.{test,spec}.{js,ts}']
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
|
@ -5,14 +5,56 @@ import (
|
|||
"log"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"git.freecumextremist.com/grumbulon/pomme/internal"
|
||||
"git.freecumextremist.com/grumbulon/pomme/internal/db"
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/go-chi/render"
|
||||
"github.com/go-pkgz/auth"
|
||||
"github.com/go-pkgz/auth/avatar"
|
||||
"github.com/go-pkgz/auth/provider"
|
||||
"github.com/go-pkgz/auth/token"
|
||||
"golang.org/x/crypto/bcrypt"
|
||||
)
|
||||
|
||||
// API handler
|
||||
func Api() (api *chi.Mux) {
|
||||
options := auth.Opts{
|
||||
SecretReader: token.SecretFunc(func(id string) (string, error) { // secret key for JWT
|
||||
return "secret", nil
|
||||
}),
|
||||
TokenDuration: time.Minute * 5, // token expires in 5 minutes
|
||||
CookieDuration: time.Hour * 24, // cookie expires in 1 day and will enforce re-login
|
||||
Issuer: "pomme",
|
||||
URL: "http://127.0.0.1:8080",
|
||||
AvatarStore: avatar.NewLocalFS("/tmp"),
|
||||
Validator: token.ValidatorFunc(func(_ string, claims token.Claims) bool {
|
||||
// allow only dev_* names
|
||||
return claims.User != nil && strings.HasPrefix(claims.User.Name, "dev_")
|
||||
}),
|
||||
}
|
||||
service := auth.NewService(options)
|
||||
service.AddDirectProvider("local", provider.CredCheckerFunc(func(user, password string) (ok bool, err error) {
|
||||
ok, err = Login(user, password)
|
||||
return ok, err
|
||||
}))
|
||||
|
||||
m := service.Middleware()
|
||||
|
||||
api = chi.NewRouter()
|
||||
|
||||
api.Get("/create", NewUser)
|
||||
api.Post("/check", Ingest)
|
||||
api.With(m.Auth).Get("/private", AuthTest)
|
||||
authRoutes, avaRoutes := service.Handlers()
|
||||
api.Mount("/auth", authRoutes) // add auth handlers
|
||||
api.Mount("/avatar", avaRoutes) // add avatar handler
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func Ingest(w http.ResponseWriter, r *http.Request) {
|
||||
data := &internal.ZoneRequest{}
|
||||
log.Println(data)
|
||||
|
|
Loading…
Reference in a new issue