Compare commits

...

23 Commits

Author SHA1 Message Date
Midou36O e72719f6b0
Merge options-pub into oauth
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-19 17:34:59 +01:00
Midou36O 6bdbf3b83d
Make it compatible with the previous version.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 19:16:57 +01:00
Midou36O 1c2e6e3da9
Fix everything odyssey pointed out.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 17:44:37 +01:00
Midou36O 65d35747fc
Fix Some more stuff, disabling form actually works now.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 17:18:14 +01:00
Midou36O af39a52971
Ok so, pages don't get disabled, but they don't show up! Half working.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 01:43:17 +01:00
Midou36O 16ea5c3138
Fix the go error.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 00:40:46 +01:00
Midou36O 0beb8a33de
Did I forget the image? Maybe I did.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 00:37:34 +01:00
Midou36O 3abdbde812
Add dev to docker (there has to be a way to improve this!) 2022-09-18 00:34:45 +01:00
Midou36O bfdc165346
I'm stupid.
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-09-18 00:26:10 +01:00
Midou36O 64a39ac5e5
fuck this was the solution
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 23:24:32 +01:00
Midou36O 950d65ca59
huh?
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 23:23:39 +01:00
Midou36O 65634751b6
fix
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 23:20:23 +01:00
Midou36O 7542cfba4a
Meanwhile on gitea
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 23:16:52 +01:00
Midou36O 9a504d1638
Partial working form and announcements settings.
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 23:12:06 +01:00
Midou36O e614ab79fa
Use viper instead of the clusterfuck of json i was trying to use.
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 22:33:44 +01:00
Midou36O 41209f3ee3
ignore options.
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 22:18:21 +01:00
Odyssey 977136d9c2 h
Signed-off-by: Odyssey <odyssey346@disroot.org>
2022-09-17 23:08:33 +02:00
Odyssey b05c48cfbb no options.sjon
Signed-off-by: Odyssey <odyssey346@disroot.org>
2022-09-17 23:04:03 +02:00
Odyssey 11a792d96c improve grammar here
Signed-off-by: Odyssey <odyssey346@disroot.org>
2022-09-17 23:03:47 +02:00
Midou36O 427bec5081
make it better
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 21:55:50 +01:00
Midou36O dc69cc447d
Initial work
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-17 21:50:55 +01:00
Midou36O c5b3c2bd98
Initial work. 2022-09-17 21:50:46 +01:00
Midou36O e8d8b9b096
Update docker.yml
ci/woodpecker/push/woodpecker Pipeline failed Details
2022-09-15 17:37:33 +00:00
14 changed files with 129 additions and 35 deletions

View File

@ -26,4 +26,4 @@ jobs:
uses: docker/build-push-action@v3
with:
push: true
tags: projectsegfault/segfautils:latest
tags: realprojectsegfault/segfautils:latest

1
.gitignore vendored
View File

@ -1 +1,2 @@
data/config.toml
data/announcements.json

View File

@ -8,10 +8,12 @@ pipeline:
- go build -o segfautils
dockerize_n_publish:
when:
branch: [master]
branch : [master]
event: [push]
name: dockerize and publish
image: plugins/docker
image: plugins/docker
registry: git.projectsegfau.lt
repo: git.projectsegfau.lt/projectsegfault/segfautils
settings:
username:
from_secret: username
@ -19,6 +21,20 @@ pipeline:
from_secret: password
repo: projectsegfault/segfautils
dockerfile: Dockerfile
dockerize_dev:
when:
event: [push]
image: plugins/docker
name: dockerize and publish dev
registry: git.projectsegfau.lt
repo: git.projectsegfau.lt/projectsegfault/segfautils
settings:
username:
from_secret: username
password:
from_secret: password
repo: projectsegfau.lt/segfautils
tags: dev
dockerfile: Dockerfile

View File

@ -15,8 +15,30 @@ import (
var (
authToken = config.AuthToken()
resAnn = config.OptAnn()
)
func AnnCheck() {
if resAnn == "false" {
log.Println("[Segfautils] Announcements are disabled")
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "Announcements are disabled.", http.StatusServiceUnavailable)
})
http.HandleFunc("/api/announcements", func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "{\"enabled\": \"false\"}", http.StatusServiceUnavailable)
})
} else {
AnnPage()
Announcements()
}
}
func AnnPage() {
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/announcements.html")
})
}
func Announcements() {
http.HandleFunc("/api/announcements", getAnnouncements)
http.HandleFunc("/api/announcements/post", handleAnnouncements)
@ -39,6 +61,7 @@ func handleAnnouncements(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
now := time.Now().Unix()
data := map[string]interface{}{
"enabled": "true",
"title": r.FormValue("title"),
"link": r.FormValue("link"),
"severity": r.FormValue("severity"),

View File

@ -1,18 +1,16 @@
package api
import (
"fmt"
"io"
"log"
"net/http"
"github.com/kataras/hcaptcha"
"fmt"
"io"
"net/url"
"text/template"
"github.com/ProjectSegfault/segfautils/config"
"github.com/ProjectSegfault/segfautils/utils"
"github.com/kataras/hcaptcha"
)
var (
@ -20,8 +18,37 @@ var (
secretKey = config.HCaptchaSecretKey()
webhookURL = config.WebhookURL()
client = hcaptcha.New(secretKey) /* See `Client.FailureHandler` too. */
resForm = config.OptForm()
)
func FormCheck() {
if resForm == "false" {
log.Println("[Segfautils] Contact form is disabled")
http.HandleFunc("/form", func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "Form is disabled.", http.StatusServiceUnavailable)
})
} else {
FormPage()
Form()
}
}
func FormPage() {
type StaticThing struct {
HCaptchaSiteKey string
}
tmpl_form := template.Must(template.ParseFiles("static/form.html"))
http.HandleFunc("/form/", func(w http.ResponseWriter, r *http.Request) {
hcaptcha_site_key := config.HCaptchaSiteKey()
data := StaticThing{
HCaptchaSiteKey: hcaptcha_site_key,
}
tmpl_form.Execute(w, data)
})
}
func Form() {
http.HandleFunc("/api/form", client.HandlerFunc(theActualFormCode))
}

View File

@ -15,7 +15,7 @@ func AuthToken() string {
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting segfautils.auth_token", err.Error())
log.Println("Error reading config. Error getting: segfautils.auth_token", err.Error())
}
result := viper.GetString("segfautils.auth_token")
return result

View File

@ -11,7 +11,7 @@ func HCaptchaSecretKey() string {
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting hcaptcha.secret_key", err.Error())
log.Println("Error reading config. Error getting: hcaptcha.secret_key", err.Error())
}
result := viper.GetString("hcaptcha.secret_key")
return result

View File

@ -11,7 +11,7 @@ func HCaptchaSiteKey() string {
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting hcaptcha.site_key", err.Error())
log.Println("Error reading config. Error getting: hcaptcha.site_key", err.Error())
}
result := viper.GetString("hcaptcha.site_key")
return result

18
config/optionannounce.go Normal file
View File

@ -0,0 +1,18 @@
package config
import (
"log"
"github.com/spf13/viper"
)
func OptAnn() string {
viper.SetConfigName("config")
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config. Error getting: options.announce", err.Error())
}
result := viper.GetString("options.announce")
return result
}

18
config/optionform.go Normal file
View File

@ -0,0 +1,18 @@
package config
import (
"log"
"github.com/spf13/viper"
)
func OptForm() string {
viper.SetConfigName("config")
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config. Error getting: options.form", err.Error())
}
result := viper.GetString("options.form")
return result
}

View File

@ -12,7 +12,7 @@ func Port() string {
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting segfautils.port", err.Error())
log.Println("Error reading config. Error getting: segfautils.port", err.Error())
}
result := strconv.Itoa(viper.GetInt("segfautils.port"))
return result

View File

@ -11,7 +11,7 @@ func WebhookURL() string {
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting segfautils.webhook_url", err.Error())
log.Println("Error reading config. Error getting: segfautils.webhook_url", err.Error())
}
result := viper.GetString("segfautils.webhook_url")
return result

View File

@ -11,4 +11,8 @@ secret_key = "YOURSECRETKEY"
client_id = "YOURCLIENTID"
client_secret = "YOURCLIENTSECRET"
redirect_url = "YOURREDIRECTURL"
auth_url = "YOURAUTHURL"
auth_url = "YOURAUTHURL"
[options]
announce = true
form = false

25
main.go
View File

@ -12,18 +12,13 @@ import (
)
type StaticThingy struct {
Port string
HCaptchaSiteKey string
Port string
}
var port string
var shit bool
func main() {
log.Println("[Segfautils] Starting")
utils.CheckConfig()
log.Println("[HTTP] Starting server")
hcaptcha_site_key := config.HCaptchaSiteKey()
tmpl := template.Must(template.ParseFiles("static/index.html"))
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
data := StaticThingy{
@ -32,22 +27,14 @@ func main() {
tmpl.Execute(w, data)
})
tmpl_form := template.Must(template.ParseFiles("static/form.html"))
http.HandleFunc("/form/", func(w http.ResponseWriter, r *http.Request) {
data := StaticThingy{
HCaptchaSiteKey: hcaptcha_site_key,
}
tmpl_form.Execute(w, data)
})
log.Println("[HTTP] Starting server")
api.AnnCheck()
api.FormCheck()
http.HandleFunc("/api/", func(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "welcome to hell")
})
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/announcements.html")
})
api.Form()
api.Announcements()
log.Println("[HTTP] HTTP server is now running at " + config.Port() + "!")
log.Println(http.ListenAndServe(":"+config.Port(), nil))
}