2023-03-14 15:22:52 +00:00
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-03-23 15:00:48 +00:00
|
|
|
"encoding/json"
|
2023-03-14 15:22:52 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/gorilla/sessions"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/labstack/echo/v4/middleware"
|
2023-04-17 12:25:39 +00:00
|
|
|
"github.com/markbates/goth/gothic"
|
2023-03-14 15:22:52 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2023-05-15 19:07:29 +00:00
|
|
|
"github.com/thomiceli/opengist/internal/config"
|
2023-09-02 22:30:57 +00:00
|
|
|
"github.com/thomiceli/opengist/internal/db"
|
2023-05-15 19:07:29 +00:00
|
|
|
"github.com/thomiceli/opengist/internal/git"
|
2023-09-02 22:30:57 +00:00
|
|
|
"github.com/thomiceli/opengist/public"
|
|
|
|
"github.com/thomiceli/opengist/templates"
|
2023-03-14 15:22:52 +00:00
|
|
|
"html/template"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2023-04-02 22:40:39 +00:00
|
|
|
"os"
|
2023-03-14 15:22:52 +00:00
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2023-06-18 15:01:27 +00:00
|
|
|
var dev = os.Getenv("OG_DEV") == "1"
|
2023-03-14 15:22:52 +00:00
|
|
|
var store *sessions.CookieStore
|
|
|
|
var re = regexp.MustCompile("[^a-z0-9]+")
|
2023-03-23 15:00:48 +00:00
|
|
|
var fm = template.FuncMap{
|
|
|
|
"split": strings.Split,
|
|
|
|
"indexByte": strings.IndexByte,
|
2023-09-02 01:58:37 +00:00
|
|
|
"toInt": func(i string) int {
|
|
|
|
val, _ := strconv.Atoi(i)
|
2023-03-23 15:00:48 +00:00
|
|
|
return val
|
|
|
|
},
|
2023-09-02 01:58:37 +00:00
|
|
|
"inc": func(i int) int {
|
2023-03-23 15:00:48 +00:00
|
|
|
return i + 1
|
|
|
|
},
|
|
|
|
"splitGit": func(i string) []string {
|
|
|
|
return strings.FieldsFunc(i, func(r rune) bool {
|
|
|
|
return r == ',' || r == ' '
|
|
|
|
})
|
|
|
|
},
|
|
|
|
"lines": func(i string) []string {
|
|
|
|
return strings.Split(i, "\n")
|
|
|
|
},
|
|
|
|
"isMarkdown": func(i string) bool {
|
2023-04-26 21:13:11 +00:00
|
|
|
return strings.ToLower(filepath.Ext(i)) == ".md"
|
2023-03-23 15:00:48 +00:00
|
|
|
},
|
|
|
|
"isCsv": func(i string) bool {
|
2023-04-26 21:13:11 +00:00
|
|
|
return strings.ToLower(filepath.Ext(i)) == ".csv"
|
2023-03-23 15:00:48 +00:00
|
|
|
},
|
|
|
|
"csvFile": func(file *git.File) *git.CsvFile {
|
2023-04-26 21:13:11 +00:00
|
|
|
if strings.ToLower(filepath.Ext(file.Filename)) != ".csv" {
|
2023-03-23 15:00:48 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
csvFile, err := git.ParseCsv(file)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return csvFile
|
|
|
|
},
|
|
|
|
"httpStatusText": http.StatusText,
|
|
|
|
"loadedTime": func(startTime time.Time) string {
|
|
|
|
return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms"
|
|
|
|
},
|
|
|
|
"slug": func(s string) string {
|
|
|
|
return strings.Trim(re.ReplaceAllString(strings.ToLower(s), "-"), "-")
|
|
|
|
},
|
2023-09-02 22:30:57 +00:00
|
|
|
"avatarUrl": func(user *db.User, noGravatar bool) string {
|
2023-05-26 07:15:37 +00:00
|
|
|
if user.AvatarURL != "" {
|
|
|
|
return user.AvatarURL
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.MD5Hash != "" && !noGravatar {
|
|
|
|
return "https://www.gravatar.com/avatar/" + user.MD5Hash + "?d=identicon&s=200"
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultAvatar()
|
2023-03-23 15:00:48 +00:00
|
|
|
},
|
|
|
|
"asset": func(jsfile string) string {
|
2023-04-06 09:47:30 +00:00
|
|
|
if dev {
|
2023-04-02 22:40:39 +00:00
|
|
|
return "http://localhost:16157/" + jsfile
|
|
|
|
}
|
2023-07-03 14:31:12 +00:00
|
|
|
return config.C.ExternalUrl + "/" + manifestEntries[jsfile].File
|
2023-03-23 15:00:48 +00:00
|
|
|
},
|
2023-05-26 07:15:37 +00:00
|
|
|
"defaultAvatar": defaultAvatar,
|
2023-09-02 01:58:37 +00:00
|
|
|
"visibilityStr": func(visibility int, lowercase bool) string {
|
|
|
|
s := "Public"
|
|
|
|
switch visibility {
|
|
|
|
case 1:
|
|
|
|
s = "Unlisted"
|
|
|
|
case 2:
|
|
|
|
s = "Private"
|
|
|
|
}
|
|
|
|
|
|
|
|
if lowercase {
|
|
|
|
return strings.ToLower(s)
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
},
|
2023-03-23 15:00:48 +00:00
|
|
|
}
|
2023-03-14 15:22:52 +00:00
|
|
|
|
|
|
|
type Template struct {
|
|
|
|
templates *template.Template
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Template) Render(w io.Writer, name string, data interface{}, _ echo.Context) error {
|
|
|
|
return t.templates.ExecuteTemplate(w, name, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Start() {
|
|
|
|
store = sessions.NewCookieStore([]byte("opengist"))
|
2023-04-17 12:25:39 +00:00
|
|
|
gothic.Store = store
|
2023-04-17 17:11:32 +00:00
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
e := echo.New()
|
|
|
|
e.HideBanner = true
|
|
|
|
e.HidePort = true
|
|
|
|
|
|
|
|
e.Use(dataInit)
|
|
|
|
e.Pre(middleware.MethodOverrideWithConfig(middleware.MethodOverrideConfig{
|
|
|
|
Getter: middleware.MethodFromForm("_method"),
|
|
|
|
}))
|
|
|
|
e.Pre(middleware.RemoveTrailingSlash())
|
2023-04-03 23:16:22 +00:00
|
|
|
e.Pre(middleware.CORS())
|
|
|
|
e.Pre(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
|
2023-03-14 15:22:52 +00:00
|
|
|
LogURI: true, LogStatus: true, LogMethod: true,
|
|
|
|
LogValuesFunc: func(ctx echo.Context, v middleware.RequestLoggerValues) error {
|
|
|
|
log.Info().Str("URI", v.URI).Int("status", v.Status).Str("method", v.Method).
|
2023-04-03 23:16:22 +00:00
|
|
|
Str("ip", ctx.RealIP()).
|
2023-03-14 15:22:52 +00:00
|
|
|
Msg("HTTP")
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}))
|
2023-03-18 23:49:06 +00:00
|
|
|
e.Use(middleware.Recover())
|
2023-03-14 15:22:52 +00:00
|
|
|
e.Use(middleware.Secure())
|
|
|
|
|
|
|
|
e.Renderer = &Template{
|
2023-09-02 22:30:57 +00:00
|
|
|
templates: template.Must(template.New("t").Funcs(fm).ParseFS(templates.Files, "*/*.html")),
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
e.HTTPErrorHandler = func(er error, ctx echo.Context) {
|
|
|
|
if err, ok := er.(*echo.HTTPError); ok {
|
|
|
|
if err.Code >= 500 {
|
|
|
|
log.Error().Int("code", err.Code).Err(err.Internal).Msg("HTTP: " + err.Message.(string))
|
|
|
|
}
|
|
|
|
|
|
|
|
setData(ctx, "error", err)
|
|
|
|
if errHtml := htmlWithCode(ctx, err.Code, "error.html"); errHtml != nil {
|
|
|
|
log.Fatal().Err(errHtml).Send()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Fatal().Err(er).Send()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-15 09:37:17 +00:00
|
|
|
e.Use(sessionInit)
|
2023-03-14 15:22:52 +00:00
|
|
|
|
|
|
|
e.Validator = NewValidator()
|
|
|
|
|
2023-04-06 09:47:30 +00:00
|
|
|
if !dev {
|
|
|
|
parseManifestEntries()
|
2023-09-02 22:30:57 +00:00
|
|
|
e.GET("/assets/*", cacheControl(echo.WrapHandler(http.FileServer(http.FS(public.Files)))))
|
2023-04-06 09:47:30 +00:00
|
|
|
}
|
2023-03-14 15:22:52 +00:00
|
|
|
|
|
|
|
// Web based routes
|
|
|
|
g1 := e.Group("")
|
|
|
|
{
|
|
|
|
g1.Use(middleware.CSRFWithConfig(middleware.CSRFConfig{
|
|
|
|
TokenLookup: "form:_csrf",
|
|
|
|
CookiePath: "/",
|
|
|
|
CookieHTTPOnly: true,
|
|
|
|
CookieSameSite: http.SameSiteStrictMode,
|
|
|
|
}))
|
|
|
|
g1.Use(csrfInit)
|
|
|
|
|
|
|
|
g1.GET("/", create, logged)
|
|
|
|
g1.POST("/", processCreate, logged)
|
|
|
|
|
|
|
|
g1.GET("/register", register)
|
|
|
|
g1.POST("/register", processRegister)
|
|
|
|
g1.GET("/login", login)
|
|
|
|
g1.POST("/login", processLogin)
|
|
|
|
g1.GET("/logout", logout)
|
2023-04-17 12:25:39 +00:00
|
|
|
g1.GET("/oauth/:provider", oauth)
|
|
|
|
g1.GET("/oauth/:provider/callback", oauthCallback)
|
2023-03-14 15:22:52 +00:00
|
|
|
|
2023-03-19 15:29:14 +00:00
|
|
|
g1.GET("/settings", userSettings, logged)
|
|
|
|
g1.POST("/settings/email", emailProcess, logged)
|
|
|
|
g1.DELETE("/settings/account", accountDeleteProcess, logged)
|
|
|
|
g1.POST("/settings/ssh-keys", sshKeysProcess, logged)
|
|
|
|
g1.DELETE("/settings/ssh-keys/:id", sshKeysDelete, logged)
|
2023-03-14 15:22:52 +00:00
|
|
|
|
2023-04-16 15:48:21 +00:00
|
|
|
g2 := g1.Group("/admin-panel")
|
2023-03-14 15:22:52 +00:00
|
|
|
{
|
|
|
|
g2.Use(adminPermission)
|
|
|
|
g2.GET("", adminIndex)
|
|
|
|
g2.GET("/users", adminUsers)
|
|
|
|
g2.POST("/users/:user/delete", adminUserDelete)
|
|
|
|
g2.GET("/gists", adminGists)
|
|
|
|
g2.POST("/gists/:gist/delete", adminGistDelete)
|
2023-03-19 00:51:25 +00:00
|
|
|
g2.POST("/sync-fs", adminSyncReposFromFS)
|
|
|
|
g2.POST("/sync-db", adminSyncReposFromDB)
|
2023-09-04 09:11:54 +00:00
|
|
|
g2.POST("/gc-repos", adminGcRepos)
|
2023-06-07 18:50:30 +00:00
|
|
|
g2.GET("/configuration", adminConfig)
|
|
|
|
g2.PUT("/set-config", adminSetConfig)
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
|
2023-04-28 18:31:10 +00:00
|
|
|
g1.GET("/all", allGists, checkRequireLogin)
|
2023-06-21 16:19:17 +00:00
|
|
|
g1.GET("/search", allGists, checkRequireLogin)
|
2023-04-28 18:31:10 +00:00
|
|
|
g1.GET("/:user", allGists, checkRequireLogin)
|
2023-06-21 16:19:17 +00:00
|
|
|
g1.GET("/:user/liked", allGists, checkRequireLogin)
|
|
|
|
g1.GET("/:user/forked", allGists, checkRequireLogin)
|
2023-03-14 15:22:52 +00:00
|
|
|
|
|
|
|
g3 := g1.Group("/:user/:gistname")
|
|
|
|
{
|
2023-04-28 18:31:10 +00:00
|
|
|
g3.Use(checkRequireLogin, gistInit)
|
2023-03-17 13:56:39 +00:00
|
|
|
g3.GET("", gistIndex)
|
|
|
|
g3.GET("/rev/:revision", gistIndex)
|
2023-03-14 15:22:52 +00:00
|
|
|
g3.GET("/revisions", revisions)
|
|
|
|
g3.GET("/archive/:revision", downloadZip)
|
|
|
|
g3.POST("/visibility", toggleVisibility, logged, writePermission)
|
|
|
|
g3.POST("/delete", deleteGist, logged, writePermission)
|
|
|
|
g3.GET("/raw/:revision/:file", rawFile)
|
2023-07-26 13:43:07 +00:00
|
|
|
g3.GET("/download/:revision/:file", downloadFile)
|
2023-03-14 15:22:52 +00:00
|
|
|
g3.GET("/edit", edit, logged, writePermission)
|
|
|
|
g3.POST("/edit", processCreate, logged, writePermission)
|
|
|
|
g3.POST("/like", like, logged)
|
|
|
|
g3.GET("/likes", likes)
|
2023-03-14 22:26:39 +00:00
|
|
|
g3.POST("/fork", fork, logged)
|
|
|
|
g3.GET("/forks", forks)
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
debugStr := ""
|
|
|
|
// Git HTTP routes
|
2023-04-06 23:52:56 +00:00
|
|
|
if config.C.HttpGit {
|
2023-09-02 01:58:37 +00:00
|
|
|
e.Any("/:user/:gistname/*", gitHttp, gistSoftInit)
|
2023-03-15 09:37:17 +00:00
|
|
|
debugStr = " (with Git over HTTP)"
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
e.Any("/*", noRouteFound)
|
|
|
|
|
2023-04-06 23:52:56 +00:00
|
|
|
addr := config.C.HttpHost + ":" + config.C.HttpPort
|
2023-03-14 15:22:52 +00:00
|
|
|
|
2023-04-06 23:52:56 +00:00
|
|
|
if config.C.HttpTLSEnabled {
|
2023-03-15 09:37:17 +00:00
|
|
|
log.Info().Msg("Starting HTTPS server on https://" + addr + debugStr)
|
2023-04-06 23:52:56 +00:00
|
|
|
if err := e.StartTLS(addr, config.C.HttpCertFile, config.C.HttpKeyFile); err != nil {
|
2023-03-15 09:37:17 +00:00
|
|
|
log.Fatal().Err(err).Msg("Failed to start HTTPS server")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Info().Msg("Starting HTTP server on http://" + addr + debugStr)
|
|
|
|
if err := e.Start(addr); err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("Failed to start HTTP server")
|
|
|
|
}
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func dataInit(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
2023-04-26 21:13:11 +00:00
|
|
|
ctxValue := context.WithValue(ctx.Request().Context(), dataKey, echo.Map{})
|
2023-03-14 15:22:52 +00:00
|
|
|
ctx.SetRequest(ctx.Request().WithContext(ctxValue))
|
|
|
|
setData(ctx, "loadStartTime", time.Now())
|
2023-04-16 22:17:06 +00:00
|
|
|
|
2023-04-28 18:31:10 +00:00
|
|
|
if err := loadSettings(ctx); err != nil {
|
|
|
|
return errorRes(500, "Cannot read settings from database", err)
|
2023-04-16 22:17:06 +00:00
|
|
|
}
|
2023-03-15 09:37:17 +00:00
|
|
|
|
2023-07-03 14:31:12 +00:00
|
|
|
setData(ctx, "c", config.C)
|
|
|
|
|
2023-04-17 18:25:35 +00:00
|
|
|
setData(ctx, "githubOauth", config.C.GithubClientKey != "" && config.C.GithubSecret != "")
|
|
|
|
setData(ctx, "giteaOauth", config.C.GiteaClientKey != "" && config.C.GiteaSecret != "")
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-15 09:37:17 +00:00
|
|
|
func sessionInit(next echo.HandlerFunc) echo.HandlerFunc {
|
2023-03-14 15:22:52 +00:00
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
sess := getSession(ctx)
|
|
|
|
if sess.Values["user"] != nil {
|
2023-03-17 13:56:39 +00:00
|
|
|
var err error
|
2023-09-02 22:30:57 +00:00
|
|
|
var user *db.User
|
2023-03-17 13:56:39 +00:00
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
if user, err = db.GetUserById(sess.Values["user"].(uint)); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
sess.Values["user"] = nil
|
|
|
|
saveSession(sess, ctx)
|
|
|
|
setData(ctx, "userLogged", nil)
|
|
|
|
return redirect(ctx, "/all")
|
|
|
|
}
|
|
|
|
if user != nil {
|
|
|
|
setData(ctx, "userLogged", user)
|
|
|
|
}
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
setData(ctx, "userLogged", nil)
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func csrfInit(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
setCsrfHtmlForm(ctx)
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func writePermission(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
gist := getData(ctx, "gist")
|
|
|
|
user := getUserLogged(ctx)
|
2023-09-02 22:30:57 +00:00
|
|
|
if !gist.(*db.Gist).CanWrite(user) {
|
|
|
|
return redirect(ctx, "/"+gist.(*db.Gist).User.Username+"/"+gist.(*db.Gist).Uuid)
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func adminPermission(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
user := getUserLogged(ctx)
|
|
|
|
if user == nil || !user.IsAdmin {
|
|
|
|
return notFound("User not found")
|
|
|
|
}
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func logged(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
user := getUserLogged(ctx)
|
|
|
|
if user != nil {
|
|
|
|
return next(ctx)
|
|
|
|
}
|
2023-07-03 14:31:03 +00:00
|
|
|
return redirect(ctx, "/all")
|
2023-03-14 15:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-28 18:31:10 +00:00
|
|
|
func checkRequireLogin(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(ctx echo.Context) error {
|
|
|
|
if user := getUserLogged(ctx); user != nil {
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
require := getData(ctx, "RequireLogin")
|
|
|
|
if require == true {
|
|
|
|
addFlash(ctx, "You must be logged in to access gists", "error")
|
|
|
|
return redirect(ctx, "/login")
|
|
|
|
}
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-24 13:41:08 +00:00
|
|
|
func cacheControl(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(c echo.Context) error {
|
|
|
|
c.Response().Header().Set(echo.HeaderCacheControl, "public, max-age=31536000")
|
|
|
|
return next(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
func noRouteFound(echo.Context) error {
|
|
|
|
return notFound("Page not found")
|
|
|
|
}
|
2023-03-23 15:00:48 +00:00
|
|
|
|
|
|
|
// ---
|
|
|
|
|
|
|
|
type Asset struct {
|
|
|
|
File string `json:"file"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var manifestEntries map[string]Asset
|
|
|
|
|
|
|
|
func parseManifestEntries() {
|
2023-09-02 22:30:57 +00:00
|
|
|
file, err := public.Files.Open("manifest.json")
|
2023-03-23 15:00:48 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("Failed to open manifest.json")
|
|
|
|
}
|
|
|
|
byteValue, err := io.ReadAll(file)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("Failed to read manifest.json")
|
|
|
|
}
|
|
|
|
if err = json.Unmarshal(byteValue, &manifestEntries); err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("Failed to unmarshal manifest.json")
|
|
|
|
}
|
|
|
|
}
|
2023-05-26 07:15:37 +00:00
|
|
|
|
|
|
|
func defaultAvatar() string {
|
|
|
|
if dev {
|
|
|
|
return "http://localhost:16157/default.png"
|
|
|
|
}
|
2023-07-03 14:31:12 +00:00
|
|
|
return config.C.ExternalUrl + "/" + manifestEntries["default.png"].File
|
2023-05-26 07:15:37 +00:00
|
|
|
}
|