pogo/admin/admin.go

227 lines
5.5 KiB
Go
Raw Normal View History

2017-07-25 15:39:49 +01:00
/* admin.go
2017-09-21 20:10:16 +01:00
*
2017-07-25 15:39:49 +01:00
* Here is where all the neccesary functions for managing episodes
* live, e.g adding removing etc.
2017-09-11 20:12:24 +01:00
*/
2017-07-25 15:39:49 +01:00
2017-10-05 06:48:02 +01:00
package admin
import (
"fmt"
"io"
2017-09-21 20:10:16 +01:00
"io/ioutil"
"net/http"
"os"
2017-09-21 20:10:16 +01:00
"strings"
"encoding/json"
2017-10-05 06:48:02 +01:00
"github.com/gmemstr/pogo/common"
2017-09-11 20:12:24 +01:00
)
2017-09-19 20:28:59 +01:00
type Users struct {
Username UserOpts `json:u`
}
type UserOpts struct {
Password string `json:password`
Realname string `json:realname`
Email string `json:email`
}
func AddUser() common.Handler {
return func(rc *common.RouterContext, w http.ResponseWriter, r *http.Request) *common.HTTPError {
err := r.ParseMultipartForm(32 << 20)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
d, err := ioutil.ReadFile("assets/config/users.json")
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
var u []Users
err = json.Unmarshal(d, &u)
// username := strings.Join(r.Form["username"], "")
password := strings.Join(r.Form["password"], "")
realname := strings.Join(r.Form["realname"], "")
email := strings.Join(r.Form["email"], "")
// newuseropts := &UserOpts {
// Password: password,
// Realname: realname,
// Email: email,
// }
u = append(u, Users{UserOpts{Password: password,Realname: realname,Email: email,}})
json.Marshal(u)
fmt.Println(u)
w.Write([]byte("<script>window.location = '/admin#useradded';</script>"))
return nil
}
}
2017-09-11 18:10:35 +01:00
// Write custom CSS to disk or send it back to the client if GET
2017-10-05 06:48:02 +01:00
func CustomCss() common.Handler {
return func(rc *common.RouterContext, w http.ResponseWriter, r *http.Request) *common.HTTPError {
if r.Method == "GET" {
return common.ReadAndServeFile("assets/web/static/custom.css", w)
}
err := r.ParseMultipartForm(32 << 20)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
css := strings.Join(r.Form["css"], "")
filename := "custom.css"
2017-10-05 06:48:02 +01:00
err = ioutil.WriteFile("./assets/web/static/"+filename, []byte(css), 0644)
2017-09-21 20:10:16 +01:00
if err != nil {
w.Write([]byte("<script>window.location = '/admin#failed';</script>"))
2017-09-21 20:10:16 +01:00
panic(err)
} else {
2017-09-21 20:10:16 +01:00
w.Write([]byte("<script>window.location = '/admin#cssupdated';</script>"))
}
2017-10-05 06:48:02 +01:00
return nil
}
}
func EditEpisode() common.Handler {
return func(rc *common.RouterContext, w http.ResponseWriter, r *http.Request) *common.HTTPError {
err := r.ParseMultipartForm(32 << 20)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
PreviousFilename := strings.Join(r.Form["previousfilename"], "")
date := strings.Join(r.Form["date"], "")
title := strings.Join(r.Form["title"], "")
name := fmt.Sprintf("%v_%v", date, title)
filename := "./podcasts/" + name + ".mp3"
shownotes := "./podcasts/" + name + "_SHOWNOTES.md"
fmt.Println(filename)
description := strings.Join(r.Form["description"], "")
if ("./podcasts" + PreviousFilename + ".mp3" != filename) {
err = os.Rename("./podcasts/" + PreviousFilename + ".mp3", filename)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
err = os.Rename("./podcasts/" + PreviousFilename + "_SHOWNOTES.md", shownotes)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
}
err = ioutil.WriteFile(shownotes, []byte(description), 0644)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
w.Write([]byte("<script>window.location = '/admin#published';</script>"))
return nil
}
}
2017-10-05 06:48:02 +01:00
func CreateEpisode() common.Handler {
return func(rc *common.RouterContext, w http.ResponseWriter, r *http.Request) *common.HTTPError {
err := r.ParseMultipartForm(32 << 20)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
// Build filename for episode
date := strings.Join(r.Form["date"], "")
title := strings.Join(r.Form["title"], "")
2017-09-21 20:10:16 +01:00
name := fmt.Sprintf("%v_%v", date, title)
filename := name + ".mp3"
shownotes := name + "_SHOWNOTES.md"
description := strings.Join(r.Form["description"], "")
2017-09-21 20:10:16 +01:00
// Finish building filenames
2017-10-05 06:48:02 +01:00
err = ioutil.WriteFile("./podcasts/"+shownotes, []byte(description), 0644)
2017-09-21 20:10:16 +01:00
if err != nil {
w.Write([]byte("<script>window.location = '/admin#failed';</script>"))
2017-09-21 20:10:16 +01:00
fmt.Println(err)
}
file, handler, err := r.FormFile("file")
2017-09-21 20:10:16 +01:00
if err != nil {
w.Write([]byte("<script>window.location = '/admin#failed';</script>"))
2017-09-21 20:10:16 +01:00
fmt.Println(err)
2017-10-05 06:48:02 +01:00
return nil
2017-09-21 20:10:16 +01:00
}
defer file.Close()
fmt.Println(handler.Header)
f, err := os.OpenFile("./podcasts/"+filename, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil {
w.Write([]byte("<script>window.location = '/admin#failed';</script>"))
2017-09-21 20:10:16 +01:00
fmt.Println(err)
2017-10-05 06:48:02 +01:00
return nil
2017-09-21 20:10:16 +01:00
}
defer f.Close()
io.Copy(f, file)
w.Write([]byte("<script>window.location = '/admin#published';</script>"))
2017-10-05 06:48:02 +01:00
return nil
}
2017-07-25 15:39:49 +01:00
}
2017-10-05 06:48:02 +01:00
func RemoveEpisode() common.Handler {
return func(rc *common.RouterContext, w http.ResponseWriter, r *http.Request) *common.HTTPError {
// Episode should be the full MP3 filename
// Remove MP3 first
err := r.ParseMultipartForm(32 << 20)
if err != nil {
return &common.HTTPError{
Message: err.Error(),
StatusCode: http.StatusBadRequest,
}
}
episode := strings.Join(r.Form["episode"], "")
os.Remove(episode)
sn := strings.Replace(episode, ".mp3", "_SHOWNOTES.md", 2)
os.Remove(sn)
2017-10-05 06:48:02 +01:00
return nil
}
2017-09-11 18:10:35 +01:00
}