pogo/admin.go

98 lines
2.3 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
package main
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"
2017-09-11 20:12:24 +01:00
)
2017-09-19 20:28:59 +01:00
2017-09-11 18:10:35 +01:00
// Write custom CSS to disk or send it back to the client if GET
func CustomCss(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
r.ParseMultipartForm(32 << 20)
css := strings.Join(r.Form["css"], "")
filename := "custom.css"
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>"))
}
} else {
css, err := ioutil.ReadFile("./assets/web/static/custom.css")
if err != nil {
2017-09-21 20:10:16 +01:00
panic(err)
} else {
w.Write(css)
}
}
}
func CreateEpisode(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
r.ParseMultipartForm(32 << 20)
// 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"
fmt.Println(name)
description := strings.Join(r.Form["description"], "")
fmt.Println(description)
2017-09-21 20:10:16 +01:00
// Finish building filenames
2017-09-21 20:10:16 +01:00
err := ioutil.WriteFile("./podcasts/"+shownotes, []byte(description), 0644)
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)
return
}
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)
return
}
defer f.Close()
io.Copy(f, file)
w.Write([]byte("<script>window.location = '/admin#published';</script>"))
}
2017-07-25 15:39:49 +01:00
}
func RemoveEpisode(w http.ResponseWriter, r *http.Request) {
2017-07-25 15:39:49 +01:00
// Episode should be the full MP3 filename
// Remove MP3 first
r.ParseMultipartForm(32 << 20)
2017-09-21 20:10:16 +01:00
episode := strings.Join(r.Form["episode"], "")
2017-07-25 15:39:49 +01:00
os.Remove(episode)
sn := strings.Replace(episode, ".mp3", "_SHOWNOTES.md", 2)
2017-07-25 15:39:49 +01:00
os.Remove(sn)
2017-09-11 18:10:35 +01:00
}