TaskFlow/db/files.go

110 lines
3.0 KiB
Go
Raw Normal View History

2016-01-31 14:05:46 +08:00
package db
2016-02-01 22:34:19 +08:00
/*
2016-02-06 14:58:00 +08:00
stores the functions related to file IO and category
2016-02-01 22:34:19 +08:00
*/
2016-01-31 14:05:46 +08:00
import (
"log"
2016-02-05 03:39:36 +08:00
"github.com/thewhitetulip/Tasks/types"
2016-01-31 14:05:46 +08:00
)
// AddFile is used to add the md5 of a file name which is uploaded to our application
// this will enable us to randomize the URL without worrying about the file names
func AddFile(fileName, token string) error {
SQL := database.prepare("insert into files values(?,?)")
tx := database.begin()
2016-01-31 14:05:46 +08:00
_, err = tx.Stmt(SQL).Exec(fileName, token)
if err != nil {
log.Println(err)
tx.Rollback()
} else {
log.Println(tx.Commit())
}
return err
}
// GetFileName is used to fetch the name according to the md5 checksum from the db
func GetFileName(token string) (string, error) {
sql := "select name from files where autoName=?"
var fileName string
rows := database.query(sql, fileName)
2016-01-31 14:05:46 +08:00
if rows.Next() {
err := rows.Scan(&fileName)
if err != nil {
log.Println(err)
return "", err
}
}
if err != nil {
return "", err
}
2016-01-31 14:05:46 +08:00
return fileName, nil
}
2016-02-03 01:40:44 +08:00
//GetCategories will return the list of categories to be
//rendered in the template
2016-02-05 03:39:36 +08:00
func GetCategories() []types.CategoryCount {
stmt := "select c.name, count(*) from category c left outer join task t where c.id = t.cat_id and t.is_deleted='N' and t.finish_date is null group by name union select name, 0 from category where name not in (select distinct name from task t join category c on t.cat_id = c.id and is_deleted!='Y')"
2016-02-03 01:40:44 +08:00
rows := database.query(stmt)
2016-02-05 03:39:36 +08:00
var categories []types.CategoryCount
var category types.CategoryCount
2016-02-03 01:40:44 +08:00
for rows.Next() {
2016-02-05 03:39:36 +08:00
err := rows.Scan(&category.Name, &category.Count)
2016-02-03 01:40:44 +08:00
if err != nil {
log.Println(err)
}
categories = append(categories, category)
}
return categories
}
//AddCategory is used to add the task in the database
func AddCategory(category string) error {
err := taskQuery("insert into category(name) values(?)", category)
return err
}
2016-02-06 14:58:00 +08:00
// GetCategoryByName will return the ID of that category passed as args
2016-02-03 01:40:44 +08:00
// used while inserting tasks into the table
2016-02-06 14:58:00 +08:00
func GetCategoryByName(category string) int {
2016-02-03 01:40:44 +08:00
stmt := "select id from category where name=?"
rows := database.query(stmt, category)
var categoryID int
for rows.Next() {
err := rows.Scan(&categoryID)
if err != nil {
log.Println(err)
}
}
return categoryID
}
2016-02-06 14:58:00 +08:00
//DeleteCategoryByName will be used to delete a category from the category page
func DeleteCategoryByName(category string) error {
//first we delete entries from task and then from category
categoryID := GetCategoryByName(category)
query := "update task set cat_id = null where id =?"
err := taskQuery(query, categoryID)
if err == nil {
err = taskQuery("delete from category where id=?", categoryID)
if err != nil {
return err
}
}
return err
}
//UpdateCategoryByName will be used to delete a category from the category page
func UpdateCategoryByName(oldName, newName string) error {
query := "update category set name = ? where name=?"
log.Println(query)
err := taskQuery(query, newName, oldName)
return err
}