116 lines
3.1 KiB
Go
116 lines
3.1 KiB
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
"text/template"
|
|
"time"
|
|
|
|
"git.teamworkapps.com/shortcut/forms"
|
|
"github.com/knadh/go-pop3"
|
|
)
|
|
|
|
// We use my forms package to create a password change form which on success executes a docker call to change the password
|
|
|
|
type tplData struct {
|
|
Time int64
|
|
Body string
|
|
}
|
|
|
|
func main() {
|
|
|
|
forms.GlobalStyles.ContainerClasses = "w-full bg-gray-100 justify-center py-6 rounded-lg shadow flex"
|
|
forms.GlobalStyles.ItemClasses = "w-full px-1 py-2"
|
|
forms.GlobalStyles.ErrorClasses = "text-red-600 text-right font-bold text-xl"
|
|
forms.GlobalStyles.LabelClasses = "block text-sm font-medium leading-6 text-gray-900"
|
|
forms.GlobalStyles.InputClasses = "block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
|
|
f := forms.NewForm()
|
|
e := forms.NewElement()
|
|
e.Label = "Email Address"
|
|
e.Type = "text"
|
|
e.Validator = "email"
|
|
e.Name = "email"
|
|
f.Add(e)
|
|
|
|
e = forms.NewElement()
|
|
e.Label = "Old Password"
|
|
e.Type = "password"
|
|
e.Validator = ""
|
|
e.Name = "oldpassword"
|
|
f.Add(e)
|
|
|
|
e = forms.NewElement()
|
|
e.Label = "New Password"
|
|
e.Type = "password"
|
|
e.Validator = "minlength=8;haslowercase;hasuppercase;hasdigit"
|
|
e.Name = "newpassword"
|
|
f.Add(e)
|
|
|
|
e = forms.NewElement()
|
|
e.Label = "Confirm Password"
|
|
e.Type = "password"
|
|
e.Validator = "mustmatch=newpassword"
|
|
e.Name = "confirmpassword"
|
|
f.Add(e)
|
|
|
|
e = forms.NewElement()
|
|
e.Label = "Change Password"
|
|
e.Type = "submit"
|
|
e.InputClasses = "flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
f.Add(e)
|
|
|
|
f.Route = "/changepassword"
|
|
out, err := f.ToJSON()
|
|
if err == nil {
|
|
os.WriteFile("form.json", out, 0644)
|
|
}
|
|
|
|
tmpFile := "template.html"
|
|
tmpl, err := template.New(path.Base(tmpFile)).ParseFiles(tmpFile)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
var d tplData
|
|
|
|
s := http.NewServeMux()
|
|
s.HandleFunc("/style.css", http.FileServer(http.Dir("./")).ServeHTTP)
|
|
s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
d.Body = f.Render(true)
|
|
tmpl.Execute(w, d)
|
|
})
|
|
s.HandleFunc("/changepassword", func(w http.ResponseWriter, r *http.Request) {
|
|
if f.Validate(r) != nil {
|
|
d.Body = f.Render(true)
|
|
tmpl.Execute(w, d)
|
|
return
|
|
}
|
|
// Test if the given username ans password can authenticate via pop3
|
|
// If so, change the password
|
|
|
|
p := pop3.New(pop3.Opt{Host: "localhost", Port: 995, TLSEnabled: true})
|
|
|
|
c, err := p.NewConn()
|
|
if err != nil {
|
|
d.Body="Internal error"
|
|
tmpl.Execute(w, d)
|
|
return
|
|
}
|
|
defer c.Quit()
|
|
|
|
// Authenticate.
|
|
if err := c.Auth(f.GetValue("email"), f.GetValue("oldpassword")); err != nil {
|
|
f.MakeInvalid("oldpassword", "Invalid password")
|
|
d.Body = f.Render(true)
|
|
tmpl.Execute(w, d)
|
|
return
|
|
}
|
|
w.Write([]byte("I want to change the password"))
|
|
})
|
|
d.Time = time.Now().Unix()
|
|
d.Body = f.Render(true)
|
|
tmpl.Execute(os.Stdout, d)
|
|
http.ListenAndServe(":8910", s)
|
|
}
|