Tasks/main.go

228 lines
5.9 KiB
Go
Raw Normal View History

2015-11-13 17:04:42 +08:00
package main
/**
* This is the main file for the Task application
* License: MIT
**/
import (
2015-11-21 14:39:06 +08:00
"bufio"
2015-11-13 17:04:42 +08:00
"fmt"
2015-11-21 14:39:06 +08:00
"github.com/thewhitetulip/Tasks/db"
"io/ioutil"
2015-11-13 17:04:42 +08:00
"log"
"net/http"
2015-11-21 14:39:06 +08:00
"os"
2015-11-13 17:04:42 +08:00
"strconv"
"strings"
2015-11-13 17:04:42 +08:00
"text/template"
)
var homeTemplate *template.Template
var deletedTemplate *template.Template
2015-11-14 18:56:53 +08:00
var completedTemplate *template.Template
2015-11-13 17:04:42 +08:00
var editTemplate *template.Template
var searchTemplate *template.Template
var templates *template.Template
2015-11-13 17:04:42 +08:00
var err error
func main() {
2015-11-21 14:39:06 +08:00
defer db.Close()
var allFiles []string
2015-11-21 14:39:06 +08:00
templatesDir := "./public/templates/"
files, err := ioutil.ReadDir(templatesDir)
for _, file := range files {
filename := file.Name()
2015-11-21 12:35:57 +08:00
if strings.HasSuffix(filename, ".html") {
2015-11-21 14:39:06 +08:00
allFiles = append(allFiles, templatesDir+filename)
}
2015-11-13 17:04:42 +08:00
}
2015-11-14 18:56:53 +08:00
if err != nil {
fmt.Println(err)
}
templates, err = template.ParseFiles(allFiles...)
2015-11-21 12:35:57 +08:00
homeTemplate = templates.Lookup("home.html")
deletedTemplate = templates.Lookup("deleted.html")
2015-11-21 12:35:57 +08:00
editTemplate = templates.Lookup("edit.html")
searchTemplate = templates.Lookup("search.html")
completedTemplate = templates.Lookup("completed.html")
2015-11-14 18:56:53 +08:00
2015-11-21 14:39:06 +08:00
http.HandleFunc("/", ShowAllTasksFunc)
http.HandleFunc("/complete/", CompleteTaskFunc)
http.HandleFunc("/delete/", DeleteTaskFunc)
http.HandleFunc("/deleted/", ShowTrashTaskFunc)
http.HandleFunc("/trash/", TrashTaskFunc)
http.HandleFunc("/edit/", EditTaskFunc)
http.HandleFunc("/completed/", ShowCompleteTasksFunc)
http.HandleFunc("/restore/", RestoreTaskFunc)
http.HandleFunc("/add/", AddTaskFunc)
http.HandleFunc("/update/", UpdateTaskFunc)
http.HandleFunc("/search/", SearchTaskFunc)
//http.HandleFunc("/static/", ServeStaticFunc)
http.Handle("/static/", http.FileServer(http.Dir("public")))
2015-11-13 17:04:42 +08:00
fmt.Println("running on 8080")
2015-11-21 14:39:06 +08:00
log.Fatal(http.ListenAndServe(":8080", nil))
2015-11-13 17:04:42 +08:00
}
2015-11-21 14:39:06 +08:00
//ShowAllTasksFunc is used to handle the "/" URL which is the default ons
func ShowAllTasksFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
context := db.GetTasks("pending") //true when you want non deleted notes
homeTemplate.Execute(w, context)
}
2015-11-13 17:04:42 +08:00
}
2015-11-21 14:39:06 +08:00
//ShowTrashTaskFunc is used to handle the "/trash" URL which is used to show the deleted tasks
func ShowTrashTaskFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
context := db.GetTasks("trashed") //false when you want deleted notes
deletedTemplate.Execute(w, context)
}
2015-11-14 18:56:53 +08:00
}
2015-11-21 14:39:06 +08:00
//SearchTaskFunc is used to handle the /search/ url, handles the search function
func SearchTaskFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
r.ParseForm()
query := r.Form.Get("query")
context := db.SearchTask(query)
searchTemplate.Execute(w, context)
} else {
2015-11-13 17:04:42 +08:00
}
2015-11-21 14:39:06 +08:00
2015-11-13 17:04:42 +08:00
}
2015-11-21 14:39:06 +08:00
//AddTaskFunc is used to handle the addition of new task, "/add" URL
func AddTaskFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
r.ParseForm()
title := r.Form.Get("title")
content := r.Form.Get("content")
truth := db.AddTask(title, content)
if truth != nil {
http.Redirect(w, r, "/", http.StatusFound)
} else {
fmt.Println(err)
}
}
2015-11-13 17:04:42 +08:00
}
2015-11-21 14:39:06 +08:00
//ShowCompleteTasksFunc is used to populate the "/completed/" URL
func ShowCompleteTasksFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
context := db.GetTasks("complete") //false when you want finished notes
completedTemplate.Execute(w, context)
2015-11-13 17:04:42 +08:00
}
}
2015-11-21 14:39:06 +08:00
//EditTaskFunc is used to edit tasks, handles "/edit/" URL
func EditTaskFunc(w http.ResponseWriter, r *http.Request) {
id, err := strconv.Atoi(r.URL.Path[len("/edit/"):])
2015-11-13 17:04:42 +08:00
if err != nil {
fmt.Println(err)
} else {
2015-11-21 14:39:06 +08:00
task := db.GetTaskById(id)
editTemplate.Execute(w, task)
2015-11-13 17:04:42 +08:00
}
}
2015-11-21 14:39:06 +08:00
//CompleteTaskFunc is used to show the complete tasks, handles "/completed/" url
func CompleteTaskFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET"{
id, err := strconv.Atoi(r.URL.Path[len("/complete/"):])
2015-11-13 17:04:42 +08:00
if err != nil {
fmt.Println(err)
} else {
2015-11-21 14:39:06 +08:00
err := db.CompleteTask(id)
if err!=nil{
fmt.Println(err)
}
fmt.Println("redirecting to home")
http.Redirect(w, r, "/", http.StatusFound)
}
}
}
//DeleteTaskFunc is used to
func DeleteTaskFunc(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET"{
id := r.URL.Path[len("/delete/"):]
if id == "all" {
db.DeleteAll()
http.Redirect(w, r, "/", http.StatusFound)
} else {
id, err := strconv.Atoi(id)
if err != nil {
fmt.Println(err)
} else {
db.DeleteTask(id)
http.Redirect(w, r, "/deleted/", http.StatusFound)
}
2015-11-13 17:04:42 +08:00
}
}
}
2015-11-21 14:39:06 +08:00
//TrashTaskFunc is used to populate the "/trash/" URL
func TrashTaskFunc(w http.ResponseWriter, r *http.Request) {
id, err := strconv.Atoi(r.URL.Path[len("/trash/"):])
2015-11-14 18:56:53 +08:00
if err != nil {
fmt.Println(err)
} else {
2015-11-21 14:39:06 +08:00
db.TrashTask(id)
2015-11-14 18:56:53 +08:00
http.Redirect(w, r, "/", http.StatusFound)
}
}
2015-11-21 14:39:06 +08:00
//RestoreTaskFunc is used to restore task from trash, handles "/restore/" URL
func RestoreTaskFunc(w http.ResponseWriter, r *http.Request) {
id, err := strconv.Atoi(r.URL.Path[len("/restore/"):])
2015-11-13 17:04:42 +08:00
if err != nil {
fmt.Println(err)
} else {
2015-11-21 14:39:06 +08:00
db.RestoreTask(id)
2015-11-14 18:56:53 +08:00
http.Redirect(w, r, "/", http.StatusFound)
2015-11-13 17:04:42 +08:00
}
}
2015-11-21 14:39:06 +08:00
//UpdateTaskFunc is used to update a task, handes "/update/" URL
func UpdateTaskFunc(w http.ResponseWriter, r *http.Request) {
2015-11-13 17:04:42 +08:00
r.ParseForm()
id, err := strconv.Atoi(r.Form.Get("id"))
2015-11-13 21:11:30 +08:00
if err != nil {
2015-11-13 17:04:42 +08:00
fmt.Println(err)
}
title := r.Form.Get("title")
content := r.Form.Get("content")
2015-11-21 14:39:06 +08:00
db.UpdateTask(id, title, content)
2015-11-13 17:04:42 +08:00
http.Redirect(w, r, "/", http.StatusFound)
}
2015-11-21 14:39:06 +08:00
//ServeStaticFunc is used to serve static files
func ServeStaticFunc(w http.ResponseWriter, r *http.Request) {
path := "./public" + r.URL.Path
var contentType string
if strings.HasSuffix(path, ".css") {
contentType = "text/css"
} else if strings.HasSuffix(path, ".png") {
contentType = "image/png"
} else if strings.HasSuffix(path, ".png") {
contentType = "application/javascript"
} else {
contentType = "plain/text"
}
f, err := os.Open(path)
if err == nil {
defer f.Close()
w.Header().Add("Content Type", contentType)
br := bufio.NewReader(f)
br.WriteTo(w)
} else {
w.WriteHeader(404)
}
}