2022-05-15 18:10:49 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017-2022 CAcert Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-05-22 13:00:50 +00:00
|
|
|
"fmt"
|
2022-05-15 18:10:49 +00:00
|
|
|
"io/fs"
|
|
|
|
"net/http"
|
|
|
|
|
2022-05-22 12:08:02 +00:00
|
|
|
"github.com/julienschmidt/httprouter"
|
2022-05-22 10:23:42 +00:00
|
|
|
"github.com/justinas/alice"
|
2022-05-15 18:10:49 +00:00
|
|
|
"github.com/vearutop/statigz"
|
|
|
|
"github.com/vearutop/statigz/brotli"
|
|
|
|
|
|
|
|
"git.cacert.org/cacert-boardvoting/ui"
|
|
|
|
)
|
|
|
|
|
2022-05-22 09:02:37 +00:00
|
|
|
func (app *application) routes() http.Handler {
|
2022-05-15 18:10:49 +00:00
|
|
|
staticDir, _ := fs.Sub(ui.Files, "static")
|
|
|
|
|
|
|
|
staticData, ok := staticDir.(fs.ReadDirFS)
|
|
|
|
if !ok {
|
|
|
|
app.errorLog.Fatal("could not use uiStaticDir as fs.ReadDirFS")
|
|
|
|
}
|
|
|
|
|
|
|
|
fileServer := statigz.FileServer(staticData, brotli.AddEncoding, statigz.EncodeOnInit)
|
|
|
|
|
2022-05-22 13:00:50 +00:00
|
|
|
router := httprouter.New()
|
|
|
|
|
|
|
|
router.NotFound = http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) { app.notFound(w) })
|
|
|
|
router.PanicHandler = func(w http.ResponseWriter, _ *http.Request, err interface{}) {
|
|
|
|
w.Header().Set("Connection", "close")
|
|
|
|
app.serverError(w, fmt.Errorf("%s", err))
|
|
|
|
}
|
|
|
|
|
2022-05-22 19:15:54 +00:00
|
|
|
router.Handler(
|
|
|
|
http.MethodGet,
|
|
|
|
"/",
|
|
|
|
http.RedirectHandler("/motions/", http.StatusMovedPermanently),
|
|
|
|
)
|
2022-05-22 12:08:02 +00:00
|
|
|
router.Handler(
|
|
|
|
http.MethodGet,
|
|
|
|
"/favicon.ico",
|
|
|
|
http.RedirectHandler("/static/images/favicon.ico", http.StatusMovedPermanently),
|
|
|
|
)
|
|
|
|
router.Handler(http.MethodGet, "/static/*filepath", http.StripPrefix("/static", fileServer))
|
2022-05-22 19:15:54 +00:00
|
|
|
|
2022-05-26 13:27:25 +00:00
|
|
|
dynamic := alice.New(
|
|
|
|
app.sessionManager.LoadAndSave,
|
|
|
|
app.tryAuthenticate,
|
|
|
|
)
|
|
|
|
|
2022-05-26 15:25:25 +00:00
|
|
|
canVote := dynamic.Append(app.userCanVote, noSurf)
|
|
|
|
canEditVote := dynamic.Append(app.userCanEditVote, noSurf)
|
|
|
|
canManageUsers := dynamic.Append(app.userCanChangeVoters, noSurf)
|
2022-05-22 19:15:54 +00:00
|
|
|
|
|
|
|
router.Handler(http.MethodGet, "/motions/", dynamic.ThenFunc(app.motionList))
|
|
|
|
router.Handler(http.MethodGet, "/motions/:tag", dynamic.ThenFunc(app.motionDetails))
|
2022-05-26 13:27:25 +00:00
|
|
|
router.Handler(http.MethodGet, "/motions/:tag/edit", canEditVote.ThenFunc(app.editMotionForm))
|
|
|
|
router.Handler(http.MethodPost, "/motions/:tag/edit", canEditVote.ThenFunc(app.editMotionSubmit))
|
|
|
|
router.Handler(http.MethodGet, "/motions/:tag/withdraw", canEditVote.ThenFunc(app.withdrawMotionForm))
|
|
|
|
router.Handler(http.MethodPost, "/motions/:tag/withdraw", canEditVote.ThenFunc(app.withdrawMotionSubmit))
|
|
|
|
router.Handler(http.MethodGet, "/vote/:tag/:choice", canVote.ThenFunc(app.voteForm))
|
|
|
|
router.Handler(http.MethodPost, "/vote/:tag/:choice", canVote.ThenFunc(app.voteSubmit))
|
|
|
|
router.Handler(http.MethodGet, "/proxy/:tag", canVote.ThenFunc(app.proxyVoteForm))
|
|
|
|
router.Handler(http.MethodPost, "/proxy/:tag", canVote.ThenFunc(app.proxyVoteSubmit))
|
|
|
|
router.Handler(http.MethodGet, "/newmotion/", canEditVote.ThenFunc(app.newMotionForm))
|
|
|
|
router.Handler(http.MethodPost, "/newmotion/", canEditVote.ThenFunc(app.newMotionSubmit))
|
|
|
|
|
|
|
|
router.Handler(http.MethodGet, "/users/", canManageUsers.ThenFunc(app.userList))
|
2022-06-02 21:14:38 +00:00
|
|
|
router.Handler(http.MethodGet, "/new-user/", canManageUsers.ThenFunc(app.newUserForm))
|
|
|
|
router.Handler(http.MethodPost, "/new-user/", canManageUsers.ThenFunc(app.newUserSubmit))
|
2022-05-26 13:27:25 +00:00
|
|
|
router.Handler(http.MethodGet, "/users/:id/", canManageUsers.ThenFunc(app.editUserForm))
|
|
|
|
router.Handler(http.MethodPost, "/users/:id/", canManageUsers.ThenFunc(app.editUserSubmit))
|
|
|
|
router.Handler(http.MethodGet, "/users/:id/add-mail", canManageUsers.ThenFunc(app.userAddEmailForm))
|
|
|
|
router.Handler(http.MethodPost, "/users/:id/add-mail", canManageUsers.ThenFunc(app.userAddEmailSubmit))
|
2022-06-02 21:14:38 +00:00
|
|
|
router.Handler(http.MethodGet, "/users/:id/mail/:address/delete",
|
|
|
|
canManageUsers.ThenFunc(app.userDeleteEmailForm))
|
|
|
|
router.Handler(http.MethodPost, "/users/:id/mail/:address/delete",
|
|
|
|
canManageUsers.ThenFunc(app.userDeleteEmailSubmit))
|
2022-05-26 13:27:25 +00:00
|
|
|
router.Handler(http.MethodGet, "/users/:id/delete", canManageUsers.ThenFunc(app.deleteUserForm))
|
2022-05-26 14:47:57 +00:00
|
|
|
router.Handler(http.MethodPost, "/users/:id/delete", canManageUsers.ThenFunc(app.deleteUserSubmit))
|
2022-05-15 18:10:49 +00:00
|
|
|
|
2022-05-26 17:22:56 +00:00
|
|
|
router.HandlerFunc(http.MethodGet, "/health", app.healthCheck)
|
|
|
|
|
2022-05-22 13:00:50 +00:00
|
|
|
standard := alice.New(app.logRequest, secureHeaders)
|
2022-05-22 10:23:42 +00:00
|
|
|
|
2022-05-22 12:08:02 +00:00
|
|
|
return standard.Then(router)
|
2022-05-15 18:10:49 +00:00
|
|
|
}
|