2014-03-25 03:31:33 +00:00
|
|
|
package models
|
|
|
|
|
2014-07-06 18:06:18 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"time"
|
2014-08-07 10:48:52 +00:00
|
|
|
|
|
|
|
"github.com/jinzhu/gorm"
|
2014-07-06 18:06:18 +00:00
|
|
|
)
|
2014-03-25 03:31:33 +00:00
|
|
|
|
|
|
|
type Template struct {
|
2014-07-12 18:46:38 +00:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
UserId int64 `json:"-"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Subject string `json:"subject"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
HTML string `json:"html"`
|
|
|
|
ModifiedDate time.Time `json:"modified_date"`
|
|
|
|
Attachments []Attachment `json:"attachments"`
|
2014-03-25 03:31:33 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 18:06:18 +00:00
|
|
|
var ErrTemplateNameNotSpecified = errors.New("Template Name not specified")
|
|
|
|
var ErrTemplateMissingParameter = errors.New("Need to specify at least plaintext or HTML format")
|
|
|
|
|
|
|
|
func (t *Template) Validate() error {
|
2014-06-02 06:57:04 +00:00
|
|
|
switch {
|
|
|
|
case t.Name == "":
|
2014-07-06 18:06:18 +00:00
|
|
|
return ErrTemplateNameNotSpecified
|
2014-06-05 04:54:46 +00:00
|
|
|
case t.Text == "" && t.HTML == "":
|
2014-07-06 18:06:18 +00:00
|
|
|
return ErrTemplateMissingParameter
|
2014-06-02 06:57:04 +00:00
|
|
|
}
|
2014-07-06 18:06:18 +00:00
|
|
|
return nil
|
2014-06-02 06:57:04 +00:00
|
|
|
}
|
|
|
|
|
2014-03-25 03:31:33 +00:00
|
|
|
// GetTemplates returns the templates owned by the given user.
|
|
|
|
func GetTemplates(uid int64) ([]Template, error) {
|
|
|
|
ts := []Template{}
|
2014-05-28 23:48:30 +00:00
|
|
|
err := db.Where("user_id=?", uid).Find(&ts).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return ts, err
|
|
|
|
}
|
2014-07-12 18:46:38 +00:00
|
|
|
for i, _ := range ts {
|
|
|
|
err = db.Where("template_id=?", ts[i].Id).Find(&ts[i].Attachments).Error
|
2014-08-07 10:48:52 +00:00
|
|
|
if err != nil && err != gorm.RecordNotFound {
|
2014-07-12 18:46:38 +00:00
|
|
|
Logger.Println(err)
|
|
|
|
return ts, err
|
|
|
|
}
|
2014-08-07 10:48:52 +00:00
|
|
|
if err == gorm.RecordNotFound {
|
|
|
|
err = nil
|
|
|
|
}
|
2014-07-12 18:46:38 +00:00
|
|
|
}
|
2014-03-25 03:31:33 +00:00
|
|
|
return ts, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTemplate returns the template, if it exists, specified by the given id and user_id.
|
|
|
|
func GetTemplate(id int64, uid int64) (Template, error) {
|
|
|
|
t := Template{}
|
2014-05-28 23:48:30 +00:00
|
|
|
err := db.Where("user_id=? and id=?", uid, id).Find(&t).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return t, err
|
|
|
|
}
|
2014-07-12 18:46:38 +00:00
|
|
|
err = db.Where("template_id=?", t.Id).Find(&t.Attachments).Error
|
2014-08-07 10:48:52 +00:00
|
|
|
if err != nil && err != gorm.RecordNotFound {
|
2014-07-12 18:46:38 +00:00
|
|
|
Logger.Println(err)
|
|
|
|
return t, err
|
|
|
|
}
|
2014-08-07 10:48:52 +00:00
|
|
|
if err == gorm.RecordNotFound {
|
|
|
|
err = nil
|
|
|
|
}
|
2014-03-25 03:31:33 +00:00
|
|
|
return t, err
|
|
|
|
}
|
|
|
|
|
2014-06-02 04:38:21 +00:00
|
|
|
// GetTemplateByName returns the template, if it exists, specified by the given name and user_id.
|
|
|
|
func GetTemplateByName(n string, uid int64) (Template, error) {
|
|
|
|
t := Template{}
|
|
|
|
err := db.Where("user_id=? and name=?", uid, n).Find(&t).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return t, err
|
|
|
|
}
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
|
2014-03-25 03:31:33 +00:00
|
|
|
// PostTemplate creates a new template in the database.
|
2014-05-28 23:48:30 +00:00
|
|
|
func PostTemplate(t *Template) error {
|
2014-03-25 03:31:33 +00:00
|
|
|
// Insert into the DB
|
2014-03-27 18:19:57 +00:00
|
|
|
err := db.Save(t).Error
|
2014-03-25 03:31:33 +00:00
|
|
|
if err != nil {
|
2014-05-28 23:48:30 +00:00
|
|
|
Logger.Println(err)
|
2014-03-25 03:31:33 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-07-24 02:04:38 +00:00
|
|
|
for i, _ := range t.Attachments {
|
|
|
|
Logger.Println(t.Attachments[i].Name)
|
|
|
|
t.Attachments[i].TemplateId = t.Id
|
|
|
|
err := db.Save(&t.Attachments[i]).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2014-03-25 03:31:33 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-02 04:38:21 +00:00
|
|
|
// PutTemplate edits an existing template in the database.
|
|
|
|
// Per the PUT Method RFC, it presumes all data for a template is provided.
|
2014-07-06 18:06:18 +00:00
|
|
|
func PutTemplate(t *Template) error {
|
2014-07-24 02:04:38 +00:00
|
|
|
// Delete all attachments, and replace with new ones
|
2014-08-07 10:48:52 +00:00
|
|
|
err := db.Debug().Where("template_id=?", t.Id).Delete(&Attachment{}).Error
|
|
|
|
if err != nil && err != gorm.RecordNotFound {
|
2014-07-24 02:04:38 +00:00
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
2014-08-07 10:48:52 +00:00
|
|
|
if err == gorm.RecordNotFound {
|
|
|
|
err = nil
|
|
|
|
}
|
2014-07-24 02:04:38 +00:00
|
|
|
for i, _ := range t.Attachments {
|
|
|
|
t.Attachments[i].TemplateId = t.Id
|
|
|
|
err := db.Save(&t.Attachments[i]).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2014-08-07 10:48:52 +00:00
|
|
|
err = db.Debug().Where("id=?", t.Id).Save(t).Error
|
2014-07-06 18:06:18 +00:00
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
2014-03-25 03:31:33 +00:00
|
|
|
return nil
|
|
|
|
}
|
2014-05-28 23:48:30 +00:00
|
|
|
|
2014-06-02 04:38:21 +00:00
|
|
|
// DeleteTemplate deletes an existing template in the database.
|
|
|
|
// An error is returned if a template with the given user id and template id is not found.
|
2014-05-28 23:48:30 +00:00
|
|
|
func DeleteTemplate(id int64, uid int64) error {
|
2014-07-24 02:04:38 +00:00
|
|
|
err := db.Where("template_id=?", id).Delete(&Attachment{}).Error
|
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = db.Where("user_id=?", uid).Delete(Template{Id: id}).Error
|
2014-05-28 23:48:30 +00:00
|
|
|
if err != nil {
|
|
|
|
Logger.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|