2024-01-17 12:06:53 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
* website | MatterLinux Official Website
|
2024-03-19 19:56:46 +00:00
|
|
|
* MatterLinux 2023-2024 (https://matterlinux.xyz)
|
2024-01-17 12:06:53 +00:00
|
|
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2023-12-09 16:25:38 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-01-18 17:01:30 +00:00
|
|
|
"git.matterlinux.xyz/Matter/website/lib"
|
|
|
|
"git.matterlinux.xyz/Matter/website/routes"
|
2023-12-09 16:25:38 +00:00
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/gofiber/fiber/v2/log"
|
|
|
|
"github.com/gofiber/template/html/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main(){
|
|
|
|
engine := html.New("./templates", ".html")
|
|
|
|
app := fiber.New(fiber.Config{
|
2024-01-17 17:16:24 +00:00
|
|
|
DisableStartupMessage: true,
|
2023-12-09 16:25:38 +00:00
|
|
|
Views: engine,
|
|
|
|
})
|
|
|
|
app.Static("/", "./public")
|
2024-01-06 20:20:58 +00:00
|
|
|
app.Static("/assets", "./content/assets")
|
2023-12-09 16:25:38 +00:00
|
|
|
|
|
|
|
app.Get("/", routes.IndexRoute)
|
2024-01-18 17:01:30 +00:00
|
|
|
app.Get("/download", routes.DownloadRoute)
|
2024-01-06 20:20:58 +00:00
|
|
|
|
2023-12-09 16:25:38 +00:00
|
|
|
app.Get("/news", routes.NewsRoute)
|
|
|
|
app.Get("/news/:id", routes.PostRoute)
|
2024-01-06 20:20:58 +00:00
|
|
|
|
|
|
|
app.Get("/wiki", routes.WikiMainRoute)
|
|
|
|
app.Get("/wiki/:id", routes.WikiRoute)
|
|
|
|
|
2023-12-22 21:22:23 +00:00
|
|
|
app.Get("*", func(c *fiber.Ctx) error {
|
2024-01-06 20:20:58 +00:00
|
|
|
return lib.RenderError(c, 404)
|
2023-12-22 21:22:23 +00:00
|
|
|
})
|
2023-12-09 16:25:38 +00:00
|
|
|
|
2024-01-17 17:16:24 +00:00
|
|
|
log.Info("Starting MatterLinux Website on port 9878")
|
2024-03-19 18:19:26 +00:00
|
|
|
err := app.Listen(":9878")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error starting server: %s", err)
|
|
|
|
}
|
2023-12-09 16:25:38 +00:00
|
|
|
}
|