2016-12-11 16:06:17 +00:00
|
|
|
/* Copyright Azareal 2016 - 2017 */
|
2016-12-02 07:38:54 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
import "fmt"
|
|
|
|
import "strconv"
|
|
|
|
import "bytes"
|
2016-12-02 15:03:31 +00:00
|
|
|
import "regexp"
|
|
|
|
import "strings"
|
2016-12-05 07:21:17 +00:00
|
|
|
import "time"
|
2016-12-02 15:03:31 +00:00
|
|
|
import "io"
|
|
|
|
import "os"
|
2016-12-02 07:38:54 +00:00
|
|
|
import "net/http"
|
|
|
|
import "html"
|
2016-12-03 04:50:35 +00:00
|
|
|
import "html/template"
|
2016-12-02 07:38:54 +00:00
|
|
|
import "database/sql"
|
|
|
|
import _ "github.com/go-sql-driver/mysql"
|
|
|
|
import "golang.org/x/crypto/bcrypt"
|
|
|
|
|
|
|
|
// A blank list to fill out that parameter in Page for routes which don't use it
|
2016-12-18 12:56:06 +00:00
|
|
|
var tList []interface{}
|
2016-12-16 10:37:42 +00:00
|
|
|
var nList map[int]string
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
// GET functions
|
2016-12-05 07:21:17 +00:00
|
|
|
func route_static(w http.ResponseWriter, r *http.Request){
|
|
|
|
//name := r.URL.Path[len("/static/"):]
|
2017-01-01 15:45:43 +00:00
|
|
|
//log.Print("Outputting static file '" + r.URL.Path + "'")
|
|
|
|
|
|
|
|
file, ok := static_files[r.URL.Path]
|
|
|
|
if !ok {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Surely, there's a more efficient way of doing this?
|
|
|
|
if t, err := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since")); err == nil && file.Info.ModTime().Before(t.Add(1 * time.Second)) {
|
2016-12-05 07:21:17 +00:00
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
h := w.Header()
|
2017-01-01 15:45:43 +00:00
|
|
|
h.Set("Last-Modified", file.FormattedModTime)
|
|
|
|
h.Set("Content-Type", file.Mimetype)
|
|
|
|
h.Set("Content-Length", strconv.FormatInt(file.Length, 10)) // Avoid doing a type conversion every time?
|
|
|
|
//http.ServeContent(w,r,r.URL.Path,file.Info.ModTime(),file)
|
|
|
|
//w.Write(file.Data)
|
|
|
|
io.Copy(w, bytes.NewReader(file.Data)) // Use w.Write instead?
|
|
|
|
//io.CopyN(w, bytes.NewReader(file.Data), static_files[r.URL.Path].Length)
|
2016-12-05 07:21:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func route_fstatic(w http.ResponseWriter, r *http.Request){
|
|
|
|
http.ServeFile(w, r, r.URL.Path)
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
func route_overview(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pi := Page{"Overview","overview",user,noticeList,tList,0}
|
2016-12-02 07:38:54 +00:00
|
|
|
err := templates.ExecuteTemplate(w,"overview.html", pi)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_custom_page(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-09 13:46:29 +00:00
|
|
|
name := r.URL.Path[len("/pages/"):]
|
2016-12-16 10:37:42 +00:00
|
|
|
if templates.Lookup("page_" + name) == nil {
|
2016-12-13 02:14:14 +00:00
|
|
|
NotFound(w,r,user)
|
|
|
|
}
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Page","page",user,noticeList,tList,0}
|
|
|
|
err := templates.ExecuteTemplate(w,"page_" + name,pi)
|
2016-12-08 14:11:18 +00:00
|
|
|
if err != nil {
|
2016-12-13 02:14:14 +00:00
|
|
|
InternalError(err, w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_topics(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
// I'll have to find a solution which doesn't involve shutting down all of the routes for a user, if they don't have ANY permissions
|
|
|
|
/*if !user.Perms.ViewTopic {
|
|
|
|
NoPermissions(w,r,user)
|
|
|
|
return
|
|
|
|
}*/
|
2016-12-16 10:37:42 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
var topicList []TopicUser
|
2016-12-23 12:35:22 +00:00
|
|
|
rows, err := get_topic_list_stmt.Query()
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem := TopicUser{ID: 0,}
|
2016-12-02 07:38:54 +00:00
|
|
|
for rows.Next() {
|
2017-01-01 15:45:43 +00:00
|
|
|
err := rows.Scan(&topicItem.ID, &topicItem.Title, &topicItem.Content, &topicItem.CreatedBy, &topicItem.Is_Closed, &topicItem.Sticky, &topicItem.CreatedAt, &topicItem.ParentID, &topicItem.CreatedByName, &topicItem.Avatar)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
if topicItem.Is_Closed {
|
|
|
|
topicItem.Status = "shut"
|
2016-12-02 07:38:54 +00:00
|
|
|
} else {
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem.Status = "open"
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
2017-01-01 15:45:43 +00:00
|
|
|
if topicItem.Avatar != "" {
|
|
|
|
if topicItem.Avatar[0] == '.' {
|
|
|
|
topicItem.Avatar = "/uploads/avatar_" + strconv.Itoa(topicItem.CreatedBy) + topicItem.Avatar
|
2016-12-07 09:34:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem.Avatar = strings.Replace(noavatar,"{id}",strconv.Itoa(topicItem.CreatedBy),1)
|
2016-12-03 08:09:40 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
if hooks["trow_assign"] != nil {
|
2016-12-21 02:30:32 +00:00
|
|
|
topicItem = run_hook("trow_assign", topicItem).(TopicUser)
|
2016-12-11 16:06:17 +00:00
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
topicList = append(topicList, topicItem)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
err = rows.Err()
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-07 13:46:14 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
pi := TopicsPage{"Topic List",user,noticeList,topicList,0}
|
2016-12-21 02:30:32 +00:00
|
|
|
if template_topics_handle != nil {
|
|
|
|
template_topics_handle(pi,w)
|
2016-12-18 12:56:06 +00:00
|
|
|
} else {
|
|
|
|
err = templates.ExecuteTemplate(w,"topics.html", pi)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
2016-12-03 13:45:08 +00:00
|
|
|
|
|
|
|
func route_forum(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
var topicList []TopicUser
|
2016-12-03 13:45:08 +00:00
|
|
|
|
|
|
|
fid, err := strconv.Atoi(r.URL.Path[len("/forum/"):])
|
|
|
|
if err != nil {
|
|
|
|
LocalError("The provided ForumID is not a valid number.",w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
_, ok = forums[fid]
|
2016-12-06 10:26:48 +00:00
|
|
|
if !ok {
|
|
|
|
NotFound(w,r,user)
|
2016-12-03 13:45:08 +00:00
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Perms.ViewTopic {
|
|
|
|
NoPermissions(w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-03 13:45:08 +00:00
|
|
|
|
|
|
|
rows, err := db.Query("select topics.tid, topics.title, topics.content, topics.createdBy, topics.is_closed, topics.sticky, topics.createdAt, topics.parentID, users.name, users.avatar from topics left join users ON topics.createdBy = users.uid WHERE topics.parentID = ? order by topics.sticky DESC, topics.lastReplyAt DESC, topics.createdBy DESC", fid)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem := TopicUser{ID: 0}
|
2016-12-03 13:45:08 +00:00
|
|
|
for rows.Next() {
|
2017-01-01 15:45:43 +00:00
|
|
|
err := rows.Scan(&topicItem.ID, &topicItem.Title, &topicItem.Content, &topicItem.CreatedBy, &topicItem.Is_Closed, &topicItem.Sticky, &topicItem.CreatedAt, &topicItem.ParentID, &topicItem.CreatedByName, &topicItem.Avatar)
|
2016-12-03 13:45:08 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
if topicItem.Is_Closed {
|
|
|
|
topicItem.Status = "shut"
|
2016-12-03 13:45:08 +00:00
|
|
|
} else {
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem.Status = "open"
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
2017-01-01 15:45:43 +00:00
|
|
|
if topicItem.Avatar != "" {
|
|
|
|
if topicItem.Avatar[0] == '.' {
|
|
|
|
topicItem.Avatar = "/uploads/avatar_" + strconv.Itoa(topicItem.CreatedBy) + topicItem.Avatar
|
2016-12-07 09:34:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-01-01 15:45:43 +00:00
|
|
|
topicItem.Avatar = strings.Replace(noavatar,"{id}",strconv.Itoa(topicItem.CreatedBy),1)
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
if hooks["trow_assign"] != nil {
|
2016-12-21 02:30:32 +00:00
|
|
|
topicItem = run_hook("trow_assign", topicItem).(TopicUser)
|
2016-12-11 16:06:17 +00:00
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
topicList = append(topicList, topicItem)
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
|
|
|
err = rows.Err()
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-07 13:46:14 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
pi := ForumPage{forums[fid].Name,user,noticeList,topicList,0}
|
2016-12-21 02:30:32 +00:00
|
|
|
if template_forum_handle != nil {
|
|
|
|
template_forum_handle(pi,w)
|
2016-12-18 12:56:06 +00:00
|
|
|
} else {
|
|
|
|
err = templates.ExecuteTemplate(w,"forum.html", pi)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func route_forums(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
var forumList []Forum
|
2016-12-06 10:26:48 +00:00
|
|
|
for _, forum := range forums {
|
|
|
|
if forum.Active {
|
2016-12-18 12:56:06 +00:00
|
|
|
forumList = append(forumList, forum)
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-06 10:26:48 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
pi := ForumsPage{"Forum List",user,noticeList,forumList,0}
|
2016-12-21 02:30:32 +00:00
|
|
|
if template_forums_handle != nil {
|
|
|
|
template_forums_handle(pi,w)
|
2016-12-18 12:56:06 +00:00
|
|
|
} else {
|
|
|
|
err := templates.ExecuteTemplate(w,"forums.html", pi)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
func route_topic_id(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
var(
|
2016-12-03 04:50:35 +00:00
|
|
|
err error
|
2016-12-02 07:38:54 +00:00
|
|
|
rid int
|
|
|
|
content string
|
|
|
|
replyContent string
|
|
|
|
replyCreatedBy int
|
|
|
|
replyCreatedByName string
|
|
|
|
replyCreatedAt string
|
|
|
|
replyLastEdit int
|
|
|
|
replyLastEditBy int
|
2016-12-02 15:03:31 +00:00
|
|
|
replyAvatar string
|
2016-12-04 06:16:59 +00:00
|
|
|
replyCss template.CSS
|
2016-12-07 09:34:09 +00:00
|
|
|
replyLines int
|
|
|
|
replyTag string
|
2016-12-09 13:46:29 +00:00
|
|
|
replyURL string
|
|
|
|
replyURLPrefix string
|
|
|
|
replyURLName string
|
2016-12-04 06:16:59 +00:00
|
|
|
is_super_admin bool
|
|
|
|
group int
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
replyList []Reply
|
2016-12-02 07:38:54 +00:00
|
|
|
)
|
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
topic := TopicUser{0,"","",0,false,false,"",0,"","","",no_css_tmpl,0,"","","",""}
|
2016-12-03 04:50:35 +00:00
|
|
|
topic.ID, err = strconv.Atoi(r.URL.Path[len("/topic/"):])
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("The provided TopicID is not a valid number.",w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Perms.ViewTopic {
|
2016-12-23 12:35:22 +00:00
|
|
|
//fmt.Printf("%+v\n", user)
|
|
|
|
//fmt.Printf("%+v\n", user.Perms)
|
2016-12-21 02:30:32 +00:00
|
|
|
NoPermissions(w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
// Get the topic..
|
2016-12-09 13:46:29 +00:00
|
|
|
err = db.QueryRow("select topics.title, topics.content, topics.createdBy, topics.createdAt, topics.is_closed, topics.sticky, topics.parentID, users.name, users.avatar, users.is_super_admin, users.group, users.url_prefix, users.url_name from topics left join users ON topics.createdBy = users.uid where tid = ?", topic.ID).Scan(&topic.Title, &content, &topic.CreatedBy, &topic.CreatedAt, &topic.Is_Closed, &topic.Sticky, &topic.ParentID, &topic.CreatedByName, &topic.Avatar, &is_super_admin, &group, &topic.URLPrefix, &topic.URLName)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err == sql.ErrNoRows {
|
2016-12-06 10:26:48 +00:00
|
|
|
NotFound(w,r,user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-04 06:16:59 +00:00
|
|
|
topic.Content = template.HTML(parse_message(content))
|
2016-12-07 09:34:09 +00:00
|
|
|
topic.ContentLines = strings.Count(content,"\n")
|
|
|
|
|
2016-12-03 04:50:35 +00:00
|
|
|
if topic.Is_Closed {
|
2017-01-01 15:45:43 +00:00
|
|
|
topic.Status = "shut"
|
2016-12-26 04:44:07 +00:00
|
|
|
|
|
|
|
// We don't want users posting in locked topics...
|
|
|
|
if !user.Is_Mod {
|
|
|
|
user.Perms.CreateReply = false
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
} else {
|
2016-12-03 04:50:35 +00:00
|
|
|
topic.Status = "open"
|
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
if topic.Avatar != "" {
|
|
|
|
if topic.Avatar[0] == '.' {
|
|
|
|
topic.Avatar = "/uploads/avatar_" + strconv.Itoa(topic.CreatedBy) + topic.Avatar
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
topic.Avatar = strings.Replace(noavatar,"{id}",strconv.Itoa(topic.CreatedBy),1)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
2016-12-07 13:46:14 +00:00
|
|
|
if is_super_admin || groups[group].Is_Mod || groups[group].Is_Admin {
|
2016-12-04 06:16:59 +00:00
|
|
|
topic.Css = staff_css_tmpl
|
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
if groups[group].Tag != "" {
|
|
|
|
topic.Tag = groups[group].Tag
|
|
|
|
} else {
|
|
|
|
topic.Tag = ""
|
|
|
|
}
|
2016-12-09 13:46:29 +00:00
|
|
|
if settings["url_tags"] == false {
|
|
|
|
topic.URLName = ""
|
|
|
|
} else {
|
|
|
|
topic.URL, ok = external_sites[topic.URLPrefix]
|
|
|
|
if !ok {
|
|
|
|
topic.URL = topic.URLName
|
|
|
|
} else {
|
|
|
|
topic.URL = replyURL + topic.URLName
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
// Get the replies..
|
2016-12-09 13:46:29 +00:00
|
|
|
rows, err := db.Query("select replies.rid, replies.content, replies.createdBy, replies.createdAt, replies.lastEdit, replies.lastEditBy, users.avatar, users.name, users.is_super_admin, users.group, users.url_prefix, users.url_name from replies left join users ON replies.createdBy = users.uid where tid = ?", topic.ID)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
for rows.Next() {
|
2016-12-09 13:46:29 +00:00
|
|
|
err := rows.Scan(&rid, &replyContent, &replyCreatedBy, &replyCreatedAt, &replyLastEdit, &replyLastEditBy, &replyAvatar, &replyCreatedByName, &is_super_admin, &group, &replyURLPrefix, &replyURLName)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 15:03:31 +00:00
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
replyLines = strings.Count(replyContent,"\n")
|
2016-12-07 13:46:14 +00:00
|
|
|
if is_super_admin || groups[group].Is_Mod || groups[group].Is_Admin {
|
2016-12-04 06:16:59 +00:00
|
|
|
replyCss = staff_css_tmpl
|
|
|
|
} else {
|
|
|
|
replyCss = no_css_tmpl
|
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
if replyAvatar != "" {
|
|
|
|
if replyAvatar[0] == '.' {
|
|
|
|
replyAvatar = "/uploads/avatar_" + strconv.Itoa(replyCreatedBy) + replyAvatar
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
replyAvatar = strings.Replace(noavatar,"{id}",strconv.Itoa(replyCreatedBy),1)
|
|
|
|
}
|
|
|
|
if groups[group].Tag != "" {
|
|
|
|
replyTag = groups[group].Tag
|
|
|
|
} else {
|
|
|
|
replyTag = ""
|
2016-12-02 15:03:31 +00:00
|
|
|
}
|
2016-12-09 13:46:29 +00:00
|
|
|
if settings["url_tags"] == false {
|
|
|
|
replyURLName = ""
|
|
|
|
} else {
|
|
|
|
replyURL, ok = external_sites[replyURLPrefix]
|
|
|
|
if !ok {
|
|
|
|
replyURL = replyURLName
|
|
|
|
} else {
|
|
|
|
replyURL = replyURL + replyURLName
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 15:03:31 +00:00
|
|
|
|
2016-12-18 12:56:06 +00:00
|
|
|
replyItem := Reply{rid,topic.ID,replyContent,template.HTML(parse_message(replyContent)),replyCreatedBy,replyCreatedByName,replyCreatedAt,replyLastEdit,replyLastEditBy,replyAvatar,replyCss,replyLines,replyTag,replyURL,replyURLPrefix,replyURLName}
|
2016-12-11 16:06:17 +00:00
|
|
|
|
|
|
|
if hooks["rrow_assign"] != nil {
|
2016-12-18 12:56:06 +00:00
|
|
|
replyItem = run_hook("rrow_assign", replyItem).(Reply)
|
2016-12-11 16:06:17 +00:00
|
|
|
}
|
2016-12-18 12:56:06 +00:00
|
|
|
replyList = append(replyList, replyItem)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
err = rows.Err()
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
tpage := TopicPage{topic.Title,user,noticeList,replyList,topic,0}
|
|
|
|
if template_topic_handle != nil {
|
|
|
|
template_topic_handle(tpage,w)
|
2016-12-16 10:37:42 +00:00
|
|
|
} else {
|
2016-12-21 02:30:32 +00:00
|
|
|
err = templates.ExecuteTemplate(w,"topic.html", tpage)
|
2016-12-16 10:37:42 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
|
|
|
|
func route_profile(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
var(
|
|
|
|
err error
|
|
|
|
rid int
|
|
|
|
replyContent string
|
|
|
|
replyCreatedBy int
|
|
|
|
replyCreatedByName string
|
|
|
|
replyCreatedAt string
|
|
|
|
replyLastEdit int
|
|
|
|
replyLastEditBy int
|
|
|
|
replyAvatar string
|
|
|
|
replyCss template.CSS
|
|
|
|
replyLines int
|
|
|
|
replyTag string
|
|
|
|
is_super_admin bool
|
|
|
|
group int
|
|
|
|
|
2016-12-26 04:44:07 +00:00
|
|
|
replyList []Reply
|
2016-12-07 09:34:09 +00:00
|
|
|
)
|
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
puser := User{ID: 0,}
|
2016-12-07 09:34:09 +00:00
|
|
|
puser.ID, err = strconv.Atoi(r.URL.Path[len("/user/"):])
|
|
|
|
if err != nil {
|
|
|
|
LocalError("The provided TopicID is not a valid number.",w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:46:14 +00:00
|
|
|
if puser.ID == user.ID {
|
|
|
|
user.Is_Mod = true
|
|
|
|
puser = user
|
|
|
|
} else {
|
|
|
|
// Fetch the user data
|
2016-12-09 13:46:29 +00:00
|
|
|
err = db.QueryRow("SELECT `name`, `group`, `is_super_admin`, `avatar`, `message`, `url_prefix`, `url_name` FROM `users` WHERE `uid` = ?", puser.ID).Scan(&puser.Name, &puser.Group, &puser.Is_Super_Admin, &puser.Avatar, &puser.Message, &puser.URLPrefix, &puser.URLName)
|
2016-12-07 13:46:14 +00:00
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
NotFound(w,r,user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
puser.Is_Admin = puser.Is_Super_Admin || groups[puser.Group].Is_Admin
|
|
|
|
puser.Is_Super_Mod = puser.Is_Admin || groups[puser.Group].Is_Mod
|
|
|
|
puser.Is_Mod = puser.Is_Super_Mod
|
2016-12-08 14:11:18 +00:00
|
|
|
puser.Is_Banned = groups[puser.Group].Is_Banned
|
|
|
|
if puser.Is_Banned && puser.Is_Super_Mod {
|
|
|
|
puser.Is_Banned = false
|
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 02:14:14 +00:00
|
|
|
if groups[puser.Group].Tag != "" {
|
|
|
|
puser.Tag = groups[puser.Group].Tag
|
|
|
|
} else {
|
|
|
|
puser.Tag = ""
|
|
|
|
}
|
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
if puser.Avatar != "" {
|
|
|
|
if puser.Avatar[0] == '.' {
|
|
|
|
puser.Avatar = "/uploads/avatar_" + strconv.Itoa(puser.ID) + puser.Avatar
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
puser.Avatar = strings.Replace(noavatar,"{id}",strconv.Itoa(puser.ID),1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the replies..
|
|
|
|
rows, err := db.Query("select users_replies.rid, users_replies.content, users_replies.createdBy, users_replies.createdAt, users_replies.lastEdit, users_replies.lastEditBy, users.avatar, users.name, users.is_super_admin, users.group from users_replies left join users ON users_replies.createdBy = users.uid where users_replies.uid = ?", puser.ID)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
err := rows.Scan(&rid, &replyContent, &replyCreatedBy, &replyCreatedAt, &replyLastEdit, &replyLastEditBy, &replyAvatar, &replyCreatedByName, &is_super_admin, &group)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
replyLines = strings.Count(replyContent,"\n")
|
2016-12-07 13:46:14 +00:00
|
|
|
if is_super_admin || groups[group].Is_Mod || groups[group].Is_Admin {
|
2016-12-07 09:34:09 +00:00
|
|
|
replyCss = staff_css_tmpl
|
|
|
|
} else {
|
|
|
|
replyCss = no_css_tmpl
|
|
|
|
}
|
|
|
|
if replyAvatar != "" {
|
|
|
|
if replyAvatar[0] == '.' {
|
|
|
|
replyAvatar = "/uploads/avatar_" + strconv.Itoa(replyCreatedBy) + replyAvatar
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
replyAvatar = strings.Replace(noavatar,"{id}",strconv.Itoa(replyCreatedBy),1)
|
|
|
|
}
|
|
|
|
if groups[group].Tag != "" {
|
|
|
|
replyTag = groups[group].Tag
|
|
|
|
} else if puser.ID == replyCreatedBy {
|
|
|
|
replyTag = "Profile Owner"
|
|
|
|
} else {
|
|
|
|
replyTag = ""
|
|
|
|
}
|
|
|
|
|
2016-12-18 12:56:06 +00:00
|
|
|
replyList = append(replyList, Reply{rid,puser.ID,replyContent,template.HTML(parse_message(replyContent)),replyCreatedBy,replyCreatedByName,replyCreatedAt,replyLastEdit,replyLastEditBy,replyAvatar,replyCss,replyLines,replyTag,"","",""})
|
2016-12-07 09:34:09 +00:00
|
|
|
}
|
|
|
|
err = rows.Err()
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-26 04:44:07 +00:00
|
|
|
ppage := ProfilePage{puser.Name + "'s Profile",user,noticeList,replyList,puser,false}
|
2016-12-21 02:30:32 +00:00
|
|
|
if template_profile_handle != nil {
|
2016-12-26 04:44:07 +00:00
|
|
|
template_profile_handle(ppage,w)
|
2016-12-18 12:56:06 +00:00
|
|
|
} else {
|
2016-12-26 04:44:07 +00:00
|
|
|
err = templates.ExecuteTemplate(w,"profile.html", ppage)
|
2016-12-18 12:56:06 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err, w, r, user)
|
|
|
|
}
|
|
|
|
}
|
2016-12-07 09:34:09 +00:00
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
func route_topic_create(w http.ResponseWriter, r *http.Request){
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Loggedin || !user.Perms.CreateTopic {
|
|
|
|
NoPermissions(w,r,user)
|
2016-12-04 10:44:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Create Topic","create-topic",user,noticeList,tList,0}
|
2016-12-02 07:38:54 +00:00
|
|
|
templates.ExecuteTemplate(w,"create-topic.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
// POST functions. Authorised users only.
|
|
|
|
func route_create_topic(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Loggedin || !user.Perms.CreateTopic {
|
|
|
|
NoPermissions(w,r,user)
|
2016-12-04 10:44:28 +00:00
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
success := 1
|
2016-12-03 13:45:08 +00:00
|
|
|
topic_name := html.EscapeString(r.PostFormValue("topic-name"))
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-08 14:11:18 +00:00
|
|
|
res, err := create_topic_stmt.Exec(topic_name,html.EscapeString(preparse_message(r.PostFormValue("topic-content"))),parse_message(html.EscapeString(preparse_message(r.PostFormValue("topic-content")))),user.ID)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
lastId, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
}
|
|
|
|
|
2016-12-03 13:45:08 +00:00
|
|
|
_, err = update_forum_cache_stmt.Exec(topic_name, lastId, user.Name, user.ID, 1)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if success != 1 {
|
|
|
|
errmsg := "Unable to create the topic"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
} else {
|
|
|
|
http.Redirect(w, r, "/topic/" + strconv.FormatInt(lastId, 10), http.StatusSeeOther)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_create_reply(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Loggedin || !user.Perms.CreateReply {
|
|
|
|
NoPermissions(w,r,user)
|
2016-12-04 10:44:28 +00:00
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
success := 1
|
2016-12-03 13:45:08 +00:00
|
|
|
tid, err := strconv.Atoi(r.PostFormValue("tid"))
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
|
|
|
|
errmsg := "Unable to create the reply"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-08 14:11:18 +00:00
|
|
|
content := preparse_message(html.EscapeString(r.PostFormValue("reply-content")))
|
|
|
|
log.Print(content)
|
|
|
|
_, err = create_reply_stmt.Exec(tid,content,parse_message(content),user.ID)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
}
|
|
|
|
|
2016-12-03 13:45:08 +00:00
|
|
|
var topic_name string
|
|
|
|
err = db.QueryRow("select title from topics where tid = ?", tid).Scan(&topic_name)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = update_forum_cache_stmt.Exec(topic_name, tid, user.Name, user.ID, 1)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if success != 1 {
|
|
|
|
errmsg := "Unable to create the reply"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
} else {
|
|
|
|
http.Redirect(w, r, "/topic/" + strconv.Itoa(tid), http.StatusSeeOther)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
func route_profile_reply_create(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-21 02:30:32 +00:00
|
|
|
if !user.Loggedin || !user.Perms.CreateReply {
|
|
|
|
NoPermissions(w,r,user)
|
2016-12-03 10:25:39 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
success := 1
|
|
|
|
uid, err := strconv.Atoi(r.PostFormValue("uid"))
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
2016-12-07 09:34:09 +00:00
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
|
|
|
|
errmsg := "Unable to create the reply"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-07 09:34:09 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-08 14:11:18 +00:00
|
|
|
_, err = create_profile_reply_stmt.Exec(uid,html.EscapeString(preparse_message(r.PostFormValue("reply-content"))),parse_message(html.EscapeString(preparse_message(r.PostFormValue("reply-content")))),user.ID)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
2016-12-07 09:34:09 +00:00
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
var user_name string
|
|
|
|
err = db.QueryRow("select name from users where uid = ?", uid).Scan(&user_name)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err == sql.ErrNoRows {
|
2016-12-07 09:34:09 +00:00
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
2016-12-02 07:38:54 +00:00
|
|
|
} else if err != nil {
|
2016-12-07 09:34:09 +00:00
|
|
|
InternalError(err,w,r,user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-07 09:34:09 +00:00
|
|
|
if success != 1 {
|
|
|
|
errmsg := "Unable to create the reply"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-07 09:34:09 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
} else {
|
2016-12-07 09:34:09 +00:00
|
|
|
http.Redirect(w, r, "/user/" + strconv.Itoa(uid), http.StatusSeeOther)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
func route_report_submit(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
LoginRequired(w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if user.Is_Banned {
|
|
|
|
Banned(w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := r.ParseForm()
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if r.FormValue("session") != user.Session {
|
|
|
|
SecurityError(w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-13 02:14:14 +00:00
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
item_id, err := strconv.Atoi(r.URL.Path[len("/report/submit/"):])
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad ID", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
item_type := r.FormValue("type")
|
|
|
|
success := 1
|
|
|
|
|
|
|
|
var tid int
|
|
|
|
var title string
|
|
|
|
var content string
|
|
|
|
var data string
|
|
|
|
if item_type == "reply" {
|
|
|
|
err = db.QueryRow("select tid, content from replies where rid = ?", item_id).Scan(&tid, &content)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
LocalError("We were unable to find the reported post", w, r, user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = db.QueryRow("select title, data from topics where tid = ?", tid).Scan(&title,&data)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
LocalError("We were unable to find the topic which the reported post is supposed to be in", w, r, user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
content = content + "<br><br>Original Post: <a href='/topic/" + strconv.Itoa(tid) + "'>" + title + "</a>"
|
2016-12-13 02:14:14 +00:00
|
|
|
} else if item_type == "user-reply" {
|
|
|
|
err = db.QueryRow("select uid, content from users_replies where rid = ?", item_id).Scan(&tid, &content)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
LocalError("We were unable to find the reported post", w, r, user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = db.QueryRow("select name from users where uid = ?", tid).Scan(&title)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
LocalError("We were unable to find the profile which the reported post is supposed to be on", w, r, user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
content = content + "<br><br>Original Post: <a href='/user/" + strconv.Itoa(tid) + "'>" + title + "</a>"
|
2016-12-11 16:06:17 +00:00
|
|
|
} else if item_type == "topic" {
|
|
|
|
err = db.QueryRow("select title, content from topics where tid = ?", item_id).Scan(&title,&content)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
NotFound(w,r,user)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
content = content + "<br><br>Original Post: <a href='/topic/" + strconv.Itoa(item_id) + "'>" + title + "</a>"
|
|
|
|
} else {
|
2016-12-13 02:14:14 +00:00
|
|
|
if vhooks["report_preassign"] != nil {
|
2016-12-16 10:37:42 +00:00
|
|
|
run_vhook_noreturn("report_preassign", &item_id, &item_type)
|
2016-12-13 02:14:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
// Don't try to guess the type
|
|
|
|
LocalError("Unknown type", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var count int
|
|
|
|
rows, err := db.Query("select count(*) as count from topics where data = ? and data != '' and parentID = -1", item_type + "_" + strconv.Itoa(item_id))
|
|
|
|
if err != nil && err != sql.ErrNoRows {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-16 10:37:42 +00:00
|
|
|
|
2016-12-11 16:06:17 +00:00
|
|
|
for rows.Next() {
|
|
|
|
err = rows.Scan(&count)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if count != 0 {
|
|
|
|
LocalError("Someone has already reported this!", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
title = "Report: " + title
|
|
|
|
res, err := create_report_stmt.Exec(title,content,content,user.ID,item_type + "_" + strconv.Itoa(item_id))
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
lastId, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
success = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = update_forum_cache_stmt.Exec(title, lastId, user.Name, user.ID, 1)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if success != 1 {
|
|
|
|
errmsg := "Unable to create the report"
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-11 16:06:17 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
|
|
|
} else {
|
|
|
|
http.Redirect(w, r, "/topic/" + strconv.FormatInt(lastId, 10), http.StatusSeeOther)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
func route_account_own_edit_critical(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Password","account-own-edit",user,noticeList,tList,0}
|
2016-12-02 07:38:54 +00:00
|
|
|
templates.ExecuteTemplate(w,"account-own-edit.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_account_own_edit_critical_submit(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-02 11:00:07 +00:00
|
|
|
var real_password string
|
|
|
|
var salt string
|
|
|
|
current_password := r.PostFormValue("account-current-password")
|
|
|
|
new_password := r.PostFormValue("account-new-password")
|
|
|
|
confirm_password := r.PostFormValue("account-confirm-password")
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-02 11:00:07 +00:00
|
|
|
err = get_password_stmt.QueryRow(user.ID).Scan(&real_password, &salt)
|
|
|
|
if err == sql.ErrNoRows {
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,"Your account doesn't exist."}
|
2016-12-02 11:00:07 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 11:00:07 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-02 11:00:07 +00:00
|
|
|
current_password = current_password + salt
|
|
|
|
err = bcrypt.CompareHashAndPassword([]byte(real_password), []byte(current_password))
|
|
|
|
if err == bcrypt.ErrMismatchedHashAndPassword {
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,"That's not the correct password."}
|
2016-12-02 11:00:07 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 11:00:07 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if new_password != confirm_password {
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,"The two passwords don't match."}
|
2016-12-02 11:00:07 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 11:00:07 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
SetPassword(user.ID, new_password)
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-02 11:00:07 +00:00
|
|
|
// Log the user out as a safety precaution
|
|
|
|
_, err = logout_stmt.Exec(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Password","account-own-edit-success",user,noticeList,tList,0}
|
2016-12-02 11:00:07 +00:00
|
|
|
templates.ExecuteTemplate(w,"account-own-edit-success.html", pi)
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
2016-12-02 15:03:31 +00:00
|
|
|
|
|
|
|
func route_account_own_edit_avatar(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 15:03:31 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 15:03:31 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 15:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Avatar","account-own-edit-avatar",user,noticeList,tList,0}
|
2016-12-02 15:03:31 +00:00
|
|
|
templates.ExecuteTemplate(w,"account-own-edit-avatar.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_account_own_edit_avatar_submit(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.ContentLength > int64(max_request_size) {
|
|
|
|
http.Error(w, "request too large", http.StatusExpectationFailed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Body = http.MaxBytesReader(w, r.Body, int64(max_request_size))
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 15:03:31 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 15:03:31 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 15:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
2016-12-02 15:03:31 +00:00
|
|
|
err := r.ParseMultipartForm(int64(max_request_size))
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Upload failed", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var filename string = ""
|
|
|
|
var ext string
|
|
|
|
for _, fheaders := range r.MultipartForm.File {
|
|
|
|
for _, hdr := range fheaders {
|
|
|
|
infile, err := hdr.Open();
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Upload failed", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer infile.Close()
|
|
|
|
|
|
|
|
// We don't want multiple files
|
|
|
|
if filename != "" {
|
|
|
|
if filename != hdr.Filename {
|
|
|
|
os.Remove("./uploads/avatar_" + strconv.Itoa(user.ID) + "." + ext)
|
|
|
|
LocalError("You may only upload one avatar", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
filename = hdr.Filename
|
|
|
|
}
|
|
|
|
|
|
|
|
if ext == "" {
|
|
|
|
extarr := strings.Split(hdr.Filename,".")
|
|
|
|
if len(extarr) < 2 {
|
|
|
|
LocalError("Bad file", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ext = extarr[len(extarr) - 1]
|
|
|
|
|
|
|
|
reg, err := regexp.Compile("[^A-Za-z0-9]+")
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad file extension", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ext = reg.ReplaceAllString(ext,"")
|
|
|
|
ext = strings.ToLower(ext)
|
|
|
|
}
|
|
|
|
|
|
|
|
outfile, err := os.Create("./uploads/avatar_" + strconv.Itoa(user.ID) + "." + ext);
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Upload failed [File Creation Failed]", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer outfile.Close()
|
|
|
|
|
|
|
|
_, err = io.Copy(outfile, infile);
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Upload failed [Copy Failed]", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = set_avatar_stmt.Exec("." + ext, strconv.Itoa(user.ID))
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
user.Avatar = "/uploads/avatar_" + strconv.Itoa(user.ID) + "." + ext
|
2016-12-16 10:37:42 +00:00
|
|
|
noticeList[len(noticeList)] = "Your avatar was successfully updated"
|
2016-12-02 15:03:31 +00:00
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Avatar","account-own-edit-avatar",user,noticeList,tList,0}
|
|
|
|
templates.ExecuteTemplate(w,"account-own-edit-avatar.html", pi)
|
2016-12-02 15:03:31 +00:00
|
|
|
}
|
2016-12-03 08:09:40 +00:00
|
|
|
|
|
|
|
func route_account_own_edit_username(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-03 08:09:40 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-03 08:09:40 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-03 08:09:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Username","account-own-edit-username",user,noticeList,tList,user.Name}
|
2016-12-03 08:09:40 +00:00
|
|
|
templates.ExecuteTemplate(w,"account-own-edit-username.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_account_own_edit_username_submit(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-03 08:09:40 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You need to login to edit your own account."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-03 08:09:40 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-03 08:09:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := r.ParseForm()
|
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
new_username := html.EscapeString(r.PostFormValue("account-new-username"))
|
|
|
|
_, err = set_username_stmt.Exec(new_username, strconv.Itoa(user.ID))
|
|
|
|
if err != nil {
|
2016-12-09 13:46:29 +00:00
|
|
|
LocalError("Unable to change the username. Does someone else already have this name?",w,r,user)
|
2016-12-03 08:09:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
user.Name = new_username
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Edit Username","account-own-edit-username",user,noticeList,tList,user.Name}
|
2016-12-03 08:09:40 +00:00
|
|
|
templates.ExecuteTemplate(w,"account-own-edit-username.html", pi)
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
func route_logout(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if !user.Loggedin {
|
|
|
|
errmsg := "You can't logout without logging in first."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := logout_stmt.Exec(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
http.Redirect(w,r, "/", http.StatusSeeOther)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_login(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if user.Loggedin {
|
|
|
|
errmsg := "You're already logged in."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Login","login",user,noticeList,tList,0}
|
2016-12-02 07:38:54 +00:00
|
|
|
templates.ExecuteTemplate(w,"login.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_login_submit(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if user.Loggedin {
|
|
|
|
errmsg := "You're already logged in."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var uid int
|
|
|
|
var real_password string
|
|
|
|
var salt string
|
|
|
|
var session string
|
|
|
|
username := html.EscapeString(r.PostFormValue("username"))
|
|
|
|
password := r.PostFormValue("password")
|
|
|
|
|
|
|
|
err = login_stmt.QueryRow(username).Scan(&uid, &username, &real_password, &salt)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
errmsg := "That username doesn't exist."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emergency password reset mechanism..
|
|
|
|
if salt == "" {
|
|
|
|
if password != real_password {
|
|
|
|
errmsg := "That's not the correct password."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-encrypt the password
|
|
|
|
SetPassword(uid, password)
|
|
|
|
} else { // Normal login..
|
|
|
|
password = password + salt
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := bcrypt.CompareHashAndPassword([]byte(real_password), []byte(password))
|
|
|
|
if err == bcrypt.ErrMismatchedHashAndPassword {
|
|
|
|
errmsg := "That's not the correct password."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
session, err = GenerateSafeString(sessionLength)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 09:29:45 +00:00
|
|
|
_, err = update_session_stmt.Exec(session, uid)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 09:29:45 +00:00
|
|
|
cookie := http.Cookie{Name: "uid",Value: strconv.Itoa(uid),Path: "/",MaxAge: year}
|
2016-12-02 07:38:54 +00:00
|
|
|
http.SetCookie(w,&cookie)
|
2016-12-02 09:29:45 +00:00
|
|
|
cookie = http.Cookie{Name: "session",Value: session,Path: "/",MaxAge: year}
|
2016-12-02 07:38:54 +00:00
|
|
|
http.SetCookie(w,&cookie)
|
|
|
|
http.Redirect(w,r, "/", http.StatusSeeOther)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_register(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, noticeList, ok := SessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
if user.Loggedin {
|
|
|
|
errmsg := "You're already logged in."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Error","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Registration","register",user,noticeList,tList,0}
|
2016-12-02 07:38:54 +00:00
|
|
|
templates.ExecuteTemplate(w,"register.html", pi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func route_register_submit(w http.ResponseWriter, r *http.Request) {
|
2016-12-16 10:37:42 +00:00
|
|
|
user, ok := SimpleSessionCheck(w,r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
err := r.ParseForm()
|
2016-12-02 11:00:07 +00:00
|
|
|
if err != nil {
|
|
|
|
LocalError("Bad Form", w, r, user)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
2016-12-02 11:00:07 +00:00
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
username := html.EscapeString(r.PostFormValue("username"))
|
2016-12-16 10:37:42 +00:00
|
|
|
if username == "" {
|
|
|
|
LocalError("You didn't put in a username.", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
email := html.EscapeString(r.PostFormValue("email"))
|
|
|
|
if email == "" {
|
|
|
|
LocalError("You didn't put in an email.", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
2016-12-02 07:38:54 +00:00
|
|
|
password := r.PostFormValue("password")
|
2016-12-16 10:37:42 +00:00
|
|
|
if password == "" {
|
|
|
|
LocalError("You didn't put in a password.", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if password == "test" || password == "123456" || password == "123" || password == "password" {
|
|
|
|
LocalError("Your password is too weak.", w, r, user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 07:38:54 +00:00
|
|
|
confirm_password := r.PostFormValue("confirm_password")
|
|
|
|
log.Print("Registration Attempt! Username: " + username)
|
|
|
|
|
|
|
|
// Do the two inputted passwords match..?
|
|
|
|
if password != confirm_password {
|
|
|
|
errmsg := "The two passwords don't match."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Password Mismatch","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is this username already taken..?
|
|
|
|
err = username_exists_stmt.QueryRow(username).Scan(&username)
|
|
|
|
if err != nil && err != sql.ErrNoRows {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
} else if err != sql.ErrNoRows {
|
|
|
|
errmsg := "This username isn't available. Try another."
|
2016-12-16 10:37:42 +00:00
|
|
|
pi := Page{"Username Taken","error",user,nList,tList,errmsg}
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
templates.ExecuteTemplate(&b,"error.html", pi)
|
|
|
|
errpage := b.String()
|
2016-12-03 11:06:47 +00:00
|
|
|
w.WriteHeader(500)
|
|
|
|
fmt.Fprintln(w,errpage)
|
2016-12-02 07:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
salt, err := GenerateSafeString(saltLength)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
session, err := GenerateSafeString(sessionLength)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
password = password + salt
|
|
|
|
hashed_password, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
var active int
|
|
|
|
var group int
|
|
|
|
if settings["activation_type"] == 1 {
|
|
|
|
active = 1
|
|
|
|
group = default_group
|
|
|
|
} else {
|
|
|
|
active = 0
|
|
|
|
group = activation_group
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := register_stmt.Exec(username,email,string(hashed_password),salt,group,session,active)
|
2016-12-02 07:38:54 +00:00
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
lastId, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
InternalError(err,w,r,user)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-02 09:29:45 +00:00
|
|
|
cookie := http.Cookie{Name: "uid",Value: strconv.FormatInt(lastId, 10),Path: "/",MaxAge: year}
|
2016-12-02 07:38:54 +00:00
|
|
|
http.SetCookie(w,&cookie)
|
2016-12-02 09:29:45 +00:00
|
|
|
cookie = http.Cookie{Name: "session",Value: session,Path: "/",MaxAge: year}
|
2016-12-02 07:38:54 +00:00
|
|
|
http.SetCookie(w,&cookie)
|
|
|
|
http.Redirect(w,r, "/", http.StatusSeeOther)
|
|
|
|
}
|