2016-12-02 07:38:54 +00:00
|
|
|
package main
|
2017-03-07 07:22:29 +00:00
|
|
|
//import "fmt"
|
|
|
|
import "bytes"
|
2016-12-02 07:38:54 +00:00
|
|
|
import "strings"
|
2017-01-05 14:41:14 +00:00
|
|
|
import "regexp"
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
type Page struct
|
2016-12-18 12:56:06 +00:00
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2016-12-18 12:56:06 +00:00
|
|
|
ItemList []interface{}
|
|
|
|
Something interface{}
|
|
|
|
}
|
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
type TopicPage struct
|
2016-12-02 07:38:54 +00:00
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2016-12-21 02:30:32 +00:00
|
|
|
ItemList []Reply
|
|
|
|
Topic TopicUser
|
2017-01-21 18:16:27 +00:00
|
|
|
Page int
|
|
|
|
LastPage int
|
2016-12-21 02:30:32 +00:00
|
|
|
ExtData interface{}
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
type TopicsPage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2017-02-06 04:52:19 +00:00
|
|
|
ItemList []TopicsRow
|
2017-01-01 15:45:43 +00:00
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ForumPage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2017-01-01 15:45:43 +00:00
|
|
|
ItemList []TopicUser
|
2017-01-26 13:37:50 +00:00
|
|
|
Forum Forum
|
|
|
|
Page int
|
|
|
|
LastPage int
|
2017-01-01 15:45:43 +00:00
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ForumsPage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2017-01-01 15:45:43 +00:00
|
|
|
ItemList []Forum
|
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
2016-12-26 04:44:07 +00:00
|
|
|
type ProfilePage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
2017-01-17 07:55:46 +00:00
|
|
|
NoticeList []string
|
2016-12-26 04:44:07 +00:00
|
|
|
ItemList []Reply
|
|
|
|
ProfileOwner User
|
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
2017-02-05 14:41:53 +00:00
|
|
|
type CreateTopicPage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
|
|
|
NoticeList []string
|
|
|
|
ItemList []Forum
|
|
|
|
FID int
|
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
2017-03-07 07:22:29 +00:00
|
|
|
type ThemesPage struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
CurrentUser User
|
|
|
|
NoticeList []string
|
|
|
|
PrimaryThemes []Theme
|
|
|
|
VariantThemes []Theme
|
|
|
|
ExtData interface{}
|
|
|
|
}
|
|
|
|
|
2016-12-05 07:21:17 +00:00
|
|
|
type PageSimple struct
|
|
|
|
{
|
|
|
|
Title string
|
|
|
|
Something interface{}
|
|
|
|
}
|
|
|
|
|
2016-12-06 10:26:48 +00:00
|
|
|
type AreYouSure struct
|
|
|
|
{
|
|
|
|
URL string
|
|
|
|
Message string
|
|
|
|
}
|
|
|
|
|
2017-03-07 07:22:29 +00:00
|
|
|
var space_gap []byte = []byte(" ")
|
|
|
|
var http_prot_b []byte = []byte("http://")
|
|
|
|
var invalid_url []byte = []byte("<span style='color: red;'>[Invalid URL]</span>")
|
|
|
|
var url_open []byte = []byte("<a href='")
|
|
|
|
var url_open2 []byte = []byte("'>")
|
|
|
|
var url_close []byte = []byte("</a>")
|
2017-01-05 14:41:14 +00:00
|
|
|
var urlpattern string = `(?s)([ {1}])((http|https|ftp|mailto)*)(:{??)\/\/([\.a-zA-Z\/]+)([ {1}])`
|
|
|
|
var url_reg *regexp.Regexp
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
url_reg = regexp.MustCompile(urlpattern)
|
|
|
|
}
|
|
|
|
|
2016-12-08 14:11:18 +00:00
|
|
|
func shortcode_to_unicode(msg string) string {
|
|
|
|
//re := regexp.MustCompile(":(.):")
|
|
|
|
msg = strings.Replace(msg,":grinning:","😀",-1)
|
|
|
|
msg = strings.Replace(msg,":grin:","😁",-1)
|
|
|
|
msg = strings.Replace(msg,":joy:","😂",-1)
|
|
|
|
msg = strings.Replace(msg,":rofl:","🤣",-1)
|
|
|
|
msg = strings.Replace(msg,":smiley:","😃",-1)
|
|
|
|
msg = strings.Replace(msg,":smile:","😄",-1)
|
|
|
|
msg = strings.Replace(msg,":sweat_smile:","😅",-1)
|
|
|
|
msg = strings.Replace(msg,":laughing:","😆",-1)
|
|
|
|
msg = strings.Replace(msg,":satisfied:","😆",-1)
|
|
|
|
msg = strings.Replace(msg,":wink:","😉",-1)
|
|
|
|
msg = strings.Replace(msg,":blush:","😊",-1)
|
|
|
|
msg = strings.Replace(msg,":yum:","😋",-1)
|
|
|
|
msg = strings.Replace(msg,":sunglasses:","😎",-1)
|
|
|
|
msg = strings.Replace(msg,":heart_eyes:","😍",-1)
|
|
|
|
msg = strings.Replace(msg,":kissing_heart:","😘",-1)
|
|
|
|
msg = strings.Replace(msg,":kissing:","😗",-1)
|
|
|
|
msg = strings.Replace(msg,":kissing_smiling_eyes:","😙",-1)
|
|
|
|
msg = strings.Replace(msg,":kissing_closed_eyes:","😚",-1)
|
|
|
|
msg = strings.Replace(msg,":relaxed:","☺️",-1)
|
|
|
|
msg = strings.Replace(msg,":slight_smile:","🙂",-1)
|
|
|
|
msg = strings.Replace(msg,":hugging:","🤗",-1)
|
|
|
|
msg = strings.Replace(msg,":thinking:","🤔",-1)
|
|
|
|
msg = strings.Replace(msg,":neutral_face:","😐",-1)
|
|
|
|
msg = strings.Replace(msg,":expressionless:","😑",-1)
|
|
|
|
msg = strings.Replace(msg,":no_mouth:","😶",-1)
|
|
|
|
msg = strings.Replace(msg,":rolling_eyes:","🙄",-1)
|
|
|
|
msg = strings.Replace(msg,":smirk:","😏",-1)
|
|
|
|
msg = strings.Replace(msg,":persevere:","😣",-1)
|
|
|
|
msg = strings.Replace(msg,":disappointed_relieved:","😥",-1)
|
|
|
|
msg = strings.Replace(msg,":open_mouth:","😮",-1)
|
|
|
|
msg = strings.Replace(msg,":zipper_mouth:","🤐",-1)
|
|
|
|
msg = strings.Replace(msg,":hushed:","😯",-1)
|
|
|
|
msg = strings.Replace(msg,":sleepy:","😪",-1)
|
|
|
|
msg = strings.Replace(msg,":tired_face:","😫",-1)
|
|
|
|
msg = strings.Replace(msg,":sleeping:","😴",-1)
|
|
|
|
msg = strings.Replace(msg,":relieved:","😌",-1)
|
|
|
|
msg = strings.Replace(msg,":nerd:","🤓",-1)
|
2016-12-13 02:14:14 +00:00
|
|
|
msg = strings.Replace(msg,":stuck_out_tongue:","😛",-1)
|
|
|
|
return msg
|
2016-12-08 14:11:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func preparse_message(msg string) string {
|
2016-12-13 02:14:14 +00:00
|
|
|
if hooks["preparse_preassign"] != nil {
|
|
|
|
out := run_hook("preparse_preassign", msg)
|
|
|
|
msg = out.(string)
|
|
|
|
}
|
2016-12-08 14:11:18 +00:00
|
|
|
return shortcode_to_unicode(msg)
|
2016-12-03 08:09:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func parse_message(msg string) string {
|
2017-03-07 07:22:29 +00:00
|
|
|
msg = strings.Replace(msg,":)","😀",-1)
|
|
|
|
msg = strings.Replace(msg,":D","😃",-1)
|
|
|
|
msg = strings.Replace(msg,":P","😛",-1)
|
|
|
|
//msg = url_reg.ReplaceAllString(msg,"<a href=\"$2$3//$4\" rel=\"nofollow\">$2$3//$4</a>")
|
|
|
|
|
|
|
|
// Search for URLs in the messages...
|
|
|
|
var msgbytes = []byte(msg)
|
|
|
|
outbytes := make([]byte, len(msgbytes))
|
|
|
|
msgbytes = append(msgbytes,space_gap...)
|
|
|
|
//fmt.Println(`"`+string(msgbytes)+`"`)
|
|
|
|
lastItem := 0
|
|
|
|
i := 0
|
|
|
|
for ; len(msgbytes) > (i + 1); i++ {
|
|
|
|
if i==0 || msgbytes[i] == 10 || (msgbytes[i] == ' ' && msgbytes[i + 1] != ' ') {
|
|
|
|
i++
|
|
|
|
if msgbytes[i] != 'h' && msgbytes[i] != 'f' && msgbytes[i] != 'g' && msgbytes[i + 1] != 't' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if msgbytes[i + 2] == 't' && msgbytes[i + 3] == 'p' {
|
|
|
|
if msgbytes[i + 4] == 's' && msgbytes[i + 5] == ':' && msgbytes[i + 6] == '/' && msgbytes[i + 7] == '/' {
|
|
|
|
// Do nothing
|
|
|
|
} else if msgbytes[i + 4] == ':' && msgbytes[i + 5] == '/' && msgbytes[i + 6] == '/' {
|
|
|
|
// Do nothing
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else if msgbytes[i + 2] == 'p' && msgbytes[i + 3] == ':' && msgbytes[i + 4] == '/' && msgbytes[i + 5] == '/' {
|
|
|
|
// Do nothing
|
|
|
|
} else if msgbytes[i + 1] == 'i' && msgbytes[i + 2] == 't' && msgbytes[i + 3] == ':' && msgbytes[i + 4] == '/' && msgbytes[i + 5] == '/' {
|
|
|
|
// Do nothing
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
outbytes = append(outbytes,msgbytes[lastItem:i]...)
|
|
|
|
url_len := partial_url_bytes_len(msgbytes[i:])
|
|
|
|
if msgbytes[i + url_len] != ' ' && msgbytes[i + url_len] != 10 {
|
|
|
|
outbytes = append(outbytes,invalid_url...)
|
|
|
|
i += url_len
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
//fmt.Println("Parsed URL:")
|
|
|
|
//fmt.Println("`"+string(msgbytes[i:i + url_len])+"`")
|
|
|
|
//fmt.Println("-----")
|
|
|
|
outbytes = append(outbytes, url_open...)
|
|
|
|
outbytes = append(outbytes, msgbytes[i:i + url_len]...)
|
|
|
|
outbytes = append(outbytes, url_open2...)
|
|
|
|
outbytes = append(outbytes, msgbytes[i:i + url_len]...)
|
|
|
|
outbytes = append(outbytes, url_close...)
|
|
|
|
i += url_len
|
|
|
|
lastItem = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if lastItem != i && len(outbytes) != 0 {
|
|
|
|
//fmt.Println("lastItem:")
|
|
|
|
//fmt.Println(msgbytes[lastItem])
|
|
|
|
//fmt.Println("lastItem index:")
|
|
|
|
//fmt.Println(lastItem)
|
|
|
|
//fmt.Println("i:")
|
|
|
|
//fmt.Println(i)
|
|
|
|
//fmt.Println("lastItem to end:")
|
|
|
|
//fmt.Println(msgbytes[lastItem:])
|
|
|
|
//fmt.Println("-----")
|
|
|
|
calclen := len(msgbytes) - 10
|
|
|
|
if calclen <= lastItem {
|
|
|
|
calclen = lastItem
|
|
|
|
}
|
|
|
|
outbytes = append(outbytes, msgbytes[lastItem:calclen]...)
|
|
|
|
msg = string(outbytes)
|
|
|
|
}
|
|
|
|
//fmt.Println(`"`+string(outbytes)+`"`)
|
|
|
|
//fmt.Println(`"`+msg+`"`)
|
|
|
|
|
|
|
|
msg = strings.Replace(msg,"\n","<br>",-1)
|
|
|
|
if hooks["parse_assign"] != nil {
|
|
|
|
out := run_hook("parse_assign", msg)
|
|
|
|
msg = out.(string)
|
|
|
|
}
|
|
|
|
return msg
|
|
|
|
}
|
|
|
|
|
|
|
|
func regex_parse_message(msg string) string {
|
2016-12-08 14:11:18 +00:00
|
|
|
msg = strings.Replace(msg,":)","😀",-1)
|
|
|
|
msg = strings.Replace(msg,":D","😃",-1)
|
2016-12-08 14:24:19 +00:00
|
|
|
msg = strings.Replace(msg,":P","😛",-1)
|
2017-01-05 14:41:14 +00:00
|
|
|
msg = url_reg.ReplaceAllString(msg,"<a href=\"$2$3//$4\" rel=\"nofollow\">$2$3//$4</a>")
|
2016-12-13 02:14:14 +00:00
|
|
|
msg = strings.Replace(msg,"\n","<br>",-1)
|
|
|
|
if hooks["parse_assign"] != nil {
|
|
|
|
out := run_hook("parse_assign", msg)
|
|
|
|
msg = out.(string)
|
|
|
|
}
|
|
|
|
return msg
|
2017-03-07 07:22:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 6, 7, 8, 6, 7
|
|
|
|
// ftp://, http://, https:// git://, mailto: (not a URL, just here for length comparison purposes)
|
|
|
|
func validate_url_bytes(data []byte) bool {
|
|
|
|
datalen := len(data)
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
if datalen >= 6 {
|
|
|
|
if bytes.Equal(data[0:6],[]byte("ftp://")) || bytes.Equal(data[0:6],[]byte("git://")) {
|
|
|
|
i = 6
|
|
|
|
} else if datalen >= 7 && bytes.Equal(data[0:7],http_prot_b) {
|
|
|
|
i = 7
|
|
|
|
} else if datalen >= 8 && bytes.Equal(data[0:8],[]byte("https://")) {
|
|
|
|
i = 8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ;datalen > i; i++ {
|
|
|
|
if data[i] != '\\' && data[i] != '_' && !(data[i] > 44 && data[i] < 58) && !(data[i] > 64 && data[i] < 91) && !(data[i] > 96 && data[i] < 123) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func validated_url_bytes(data []byte) (url []byte) {
|
|
|
|
datalen := len(data)
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
if datalen >= 6 {
|
|
|
|
if bytes.Equal(data[0:6],[]byte("ftp://")) || bytes.Equal(data[0:6],[]byte("git://")) {
|
|
|
|
i = 6
|
|
|
|
} else if datalen >= 7 && bytes.Equal(data[0:7],http_prot_b) {
|
|
|
|
i = 7
|
|
|
|
} else if datalen >= 8 && bytes.Equal(data[0:8],[]byte("https://")) {
|
|
|
|
i = 8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ;datalen > i; i++ {
|
|
|
|
if data[i] != '\\' && data[i] != '_' && !(data[i] > 44 && data[i] < 58) && !(data[i] > 64 && data[i] < 91) && !(data[i] > 96 && data[i] < 123) {
|
|
|
|
return invalid_url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
url = append(url, data...)
|
|
|
|
return url
|
|
|
|
}
|
|
|
|
|
|
|
|
func partial_url_bytes(data []byte) (url []byte) {
|
|
|
|
datalen := len(data)
|
|
|
|
i := 0
|
|
|
|
end := datalen - 1
|
|
|
|
|
|
|
|
if datalen >= 6 {
|
|
|
|
if bytes.Equal(data[0:6],[]byte("ftp://")) || bytes.Equal(data[0:6],[]byte("git://")) {
|
|
|
|
i = 6
|
|
|
|
} else if datalen >= 7 && bytes.Equal(data[0:7],http_prot_b) {
|
|
|
|
i = 7
|
|
|
|
} else if datalen >= 8 && bytes.Equal(data[0:8],[]byte("https://")) {
|
|
|
|
i = 8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ;end >= i; i++ {
|
|
|
|
if data[i] != '\\' && data[i] != '_' && !(data[i] > 44 && data[i] < 58) && !(data[i] > 64 && data[i] < 91) && !(data[i] > 96 && data[i] < 123) {
|
|
|
|
end = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
url = append(url, data[0:end]...)
|
|
|
|
return url
|
|
|
|
}
|
|
|
|
|
|
|
|
func partial_url_bytes_len(data []byte) int {
|
|
|
|
datalen := len(data)
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
if datalen >= 6 {
|
|
|
|
//fmt.Println(data[0:5])
|
|
|
|
//fmt.Println(string(data[0:5]))
|
|
|
|
if bytes.Equal(data[0:6],[]byte("ftp://")) || bytes.Equal(data[0:6],[]byte("git://")) {
|
|
|
|
i = 6
|
|
|
|
} else if datalen >= 7 && bytes.Equal(data[0:7],http_prot_b) {
|
|
|
|
i = 7
|
|
|
|
//fmt.Println("http")
|
|
|
|
} else if datalen >= 8 && bytes.Equal(data[0:8],[]byte("https://")) {
|
|
|
|
i = 8
|
|
|
|
} else {
|
|
|
|
//fmt.Println("no protocol")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ;datalen > i; i++ {
|
|
|
|
if data[i] != '\\' && data[i] != '_' && !(data[i] > 44 && data[i] < 58) && !(data[i] > 64 && data[i] < 91) && !(data[i] > 96 && data[i] < 123) {
|
|
|
|
//fmt.Println("Trimmed Length")
|
|
|
|
//fmt.Println(i)
|
|
|
|
//fmt.Println("Full Length")
|
|
|
|
//fmt.Println(i)
|
|
|
|
//fmt.Println("Data Length:")
|
|
|
|
//fmt.Println(datalen)
|
|
|
|
//fmt.Println("Bad Character:")
|
|
|
|
//fmt.Println(data[i])
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//fmt.Println("Data Length:")
|
|
|
|
//fmt.Println(datalen)
|
|
|
|
return datalen
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_media_bytes(data []byte) (protocol []byte, url []byte) {
|
|
|
|
datalen := len(data)
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
if datalen >= 6 {
|
|
|
|
if bytes.Equal(data[0:6],[]byte("ftp://")) || bytes.Equal(data[0:6],[]byte("git://")) {
|
|
|
|
i = 6
|
|
|
|
protocol = data[0:2]
|
|
|
|
} else if datalen >= 7 && bytes.Equal(data[0:7],http_prot_b) {
|
|
|
|
i = 7
|
|
|
|
protocol = []byte("http")
|
|
|
|
} else if datalen >= 8 && bytes.Equal(data[0:8],[]byte("https://")) {
|
|
|
|
i = 8
|
|
|
|
protocol = []byte("https")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ;datalen > i; i++ {
|
|
|
|
if data[i] != '\\' && data[i] != '_' && !(data[i] > 44 && data[i] < 58) && !(data[i] > 64 && data[i] < 91) && !(data[i] > 96 && data[i] < 123) {
|
|
|
|
return []byte(""), invalid_url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(protocol) == 0 {
|
|
|
|
protocol = []byte("http")
|
|
|
|
}
|
|
|
|
return protocol, data[i:]
|
|
|
|
}
|