[ TEXT ]
`) - } - list.WriteString(``) - list.WriteString(data.Author.Username) - list.WriteString(" - ") - list.WriteString(data.Title) + list.WriteString(`
[ TEXT ]
`) + } + list.WriteString(``) + list.WriteString(data.Author.Username) + list.WriteString(" - ") + list.WriteString(data.Title) - // шильдики нсфв, аи и ежедневного поста - if data.NSFW { - list.WriteString(` [NSFW]`) - } - if data.AI { - list.WriteString(" [🤖]") - } - if data.DD { - list.WriteString(` [DD]`) - } + // шильдики нсфв, аи и ежедневного поста + if data.NSFW { + list.WriteString(` [NSFW]`) + } + if data.AI { + list.WriteString(" [🤖]") + } + if data.DD { + list.WriteString(` [DD]`) + } - list.WriteString("
test")
return cmmts.String()
}
+
+func (s skunkyart) ParseMedia(media devianter.Media) string {
+ url := devianter.UrlFromMedia(media)
+ if len(url) != 0 {
+ url = url[21:]
+ dot := strings.Index(url, ".")
+
+ return UrlBuilder("media", "file", url[:dot], "/", url[dot+10:])
+ }
+ return ""
+}
+
+func (s skunkyart) DownloadAndSendMedia(subdomain, path string) {
+ var url strings.Builder
+ url.WriteString("https://images-wixmp-")
+ url.WriteString(subdomain)
+ url.WriteString(".wixmp.com/")
+ url.WriteString(path)
+ url.WriteString("?token=")
+ url.WriteString(s.Args.Get("token"))
+
+ download := func() (body []byte, status int, headers http.Header) {
+ cli := &http.Client{}
+ if CFG.WixmpProxy != "" {
+ u, e := u.Parse(CFG.WixmpProxy)
+ err(e)
+ cli.Transport = &http.Transport{Proxy: http.ProxyURL(u)}
+ }
+
+ req, e := http.NewRequest("GET", url.String(), nil)
+ err(e)
+ req.Header.Set("User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:123.0) Gecko/20100101 Firefox/123.0.0")
+
+ resp, e := cli.Do(req)
+ err(e)
+ defer resp.Body.Close()
+
+ b, e := io.ReadAll(resp.Body)
+ err(e)
+ return b, resp.StatusCode, resp.Header
+ }
+
+ if CFG.Cache.Enabled {
+ os.Mkdir(CFG.Cache.Path, 0700)
+ fname := CFG.Cache.Path + "/" + base64.StdEncoding.EncodeToString([]byte(subdomain+path))
+ file, e := os.Open(fname)
+
+ if e != nil {
+ b, status, headers := download()
+ if status == 200 && headers["Content-Type"][0][:5] == "image" {
+ err(os.WriteFile(fname, b, 0700))
+ s.Writer.Write(b)
+ }
+ } else {
+ file, e := io.ReadAll(file)
+ err(e)
+ s.Writer.Write(file)
+ }
+ } else if CFG.Proxy {
+ b, _, _ := download()
+ s.Writer.Write(b)
+ } else {
+ s.Writer.Write([]byte("Sorry, butt proxy on this instance disabled."))
+ }
+}
+
+func InitCacheSystem() {
+ c := &CFG.Cache
+ for {
+ dir, e := os.Open(c.Path)
+ err(e)
+ stat, e := dir.Stat()
+ err(e)
+
+ dirnames, e := dir.Readdirnames(-1)
+ err(e)
+ for _, a := range dirnames {
+ a = c.Path + "/" + a
+ if c.Lifetime != 0 {
+ now := time.Now().UnixMilli()
+
+ f, _ := os.Stat(a)
+ stat := f.Sys().(*syscall.Stat_t)
+ time := time.Unix(stat.Ctim.Unix()).UnixMilli()
+
+ if time+c.Lifetime <= now {
+ os.RemoveAll(a)
+ }
+ }
+ if c.MaxSize != 0 && stat.Size() > c.MaxSize {
+ os.RemoveAll(a)
+ }
+ }
+
+ dir.Close()
+ time.Sleep(time.Second)
+ }
+}
diff --git a/app/wraper.go b/app/wraper.go
index 757602c..f42a9af 100644
--- a/app/wraper.go
+++ b/app/wraper.go
@@ -15,13 +15,27 @@ import (
var wr = io.WriteString
type skunkyart struct {
- Writer http.ResponseWriter
- Args url.Values
- Type rune
- Query string
- Page int
- atom bool
- Templates struct {
+ Writer http.ResponseWriter
+ Args url.Values
+ BasePath string
+ Type rune
+ Query, QueryRaw string
+ Page int
+ Atom bool
+ Templates struct {
+ About struct {
+ Proxy bool
+ Nsfw bool
+ }
+
+ SomeList string
+ Deviation struct {
+ Post devianter.Post
+ StringTime string
+ Tags string
+ Comments string
+ }
+
GroupUser struct {
GR devianter.GRuser
Admins string
@@ -51,6 +65,19 @@ type skunkyart struct {
}
}
+// var Templates struct {
+// Index string
+// About string
+//
+// GRuser string
+// Deviation string
+// List string
+// Search string
+// }
+
+// //go:embed ../html/*
+// var Templates embed.FS
+
func (s skunkyart) GRUser() {
if len(s.Query) < 1 {
s.ReturnHTTPError(400)
@@ -65,7 +92,7 @@ func (s skunkyart) GRUser() {
switch s.Type {
case 'a':
g := group.GR
- s.atom = false
+ s.Atom = false
for _, x := range g.Gruser.Page.Modules {
switch x.Name {
case "about", "group_about":
@@ -110,17 +137,15 @@ func (s skunkyart) GRUser() {
case "cover_deviation":
group.About.BGMeta = x.ModuleData.CoverDeviation.Deviation
- group.About.BG = devianter.UrlFromMedia(group.About.BGMeta.Media)
+ group.About.BGMeta.Url = s.ConvertDeviantArtUrlToSkunkyArt(group.About.BGMeta.Url)
+ group.About.BG = s.ParseMedia(group.About.BGMeta.Media)
case "group_admins":
var htm strings.Builder
for _, z := range x.ModuleData.GroupAdmins.Results {
htm.WriteString(``)
@@ -175,24 +200,18 @@ func (s skunkyart) GRUser() {
s.ReturnHTTPError(400)
}
- if !s.atom {
+ if !s.Atom {
s.ExecuteTemplate("html/gruser.htm", &s)
}
}
// посты
func (s skunkyart) Deviation(author, postname string) {
- // поиск ID
- re := regexp.MustCompile("[0-9]+").FindAllString(postname, -1)
- if len(re) >= 1 {
- var post struct {
- Post devianter.Post
- StringTime string
- Tags string
- Comments string
- }
+ id_search := regexp.MustCompile("[0-9]+").FindAllString(postname, -1)
+ if len(id_search) >= 1 {
+ post := &s.Templates.Deviation
- id := re[len(re)-1]
+ id := id_search[len(id_search)-1]
post.Post = devianter.DeviationFunc(id, author)
post.Post.Description = ParseDescription(post.Post.Deviation.TextContent)
@@ -202,9 +221,9 @@ func (s skunkyart) Deviation(author, postname string) {
// хештэги
for _, x := range post.Post.Deviation.Extended.Tags {
var tag strings.Builder
- tag.WriteString(` #`)
+ tag.WriteString(` #`)
tag.WriteString(x.Name)
tag.WriteString("")
@@ -213,7 +232,7 @@ func (s skunkyart) Deviation(author, postname string) {
post.Comments = s.ParseComments(devianter.CommentsFunc(id, post.Post.Comments.Cursor, s.Page, 1))
- s.ExecuteTemplate("html/deviantion.htm", &post)
+ s.ExecuteTemplate("html/deviantion.htm", &s)
} else {
s.ReturnHTTPError(400)
}
@@ -221,17 +240,17 @@ func (s skunkyart) Deviation(author, postname string) {
func (s skunkyart) DD() {
dd := devianter.DailyDeviationsFunc(s.Page)
- ddparsed := s.DeviationList(dd.Deviations, dlist{
+ s.Templates.SomeList = s.DeviationList(dd.Deviations, dlist{
Pages: 0,
More: dd.HasMore,
})
- if !s.atom {
- s.ExecuteTemplate("html/list.htm", &ddparsed)
+ if !s.Atom {
+ s.ExecuteTemplate("html/list.htm", &s)
}
}
func (s skunkyart) Search() {
- s.atom = false
+ s.Atom = false
var e error
ss := &s.Templates.Search
switch s.Type {
@@ -263,3 +282,9 @@ func (s skunkyart) Emojitar(name string) {
s.ReturnHTTPError(400)
}
}
+
+func (s skunkyart) About() {
+ s.Templates.About.Nsfw = CFG.Nsfw
+ s.Templates.About.Proxy = CFG.Proxy
+ s.ExecuteTemplate("html/about.htm", &s)
+}
diff --git a/atom.xml b/atom.xml
deleted file mode 100644
index 784f37d..0000000
--- a/atom.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
HOME | DD
-HOME | DD
-- {{if (ne .Post.IMG "")}} -
{{end}} - {{if (ne .Tags "")}} - {{.Tags}}
+ {{if (ne .Templates.Deviation.Tags "")}} + {{.Templates.Deviation.Tags}}
{{end}} - Published: {{.StringTime}}; Views: {{.Post.Deviation.Stats.Views}}; Favourites: {{.Post.Deviation.Stats.Favourites}}; Downloads: {{.Post.Deviation.Stats.Downloads}} - {{if (ne .Post.Description "")}} + Published: {{.Templates.Deviation.StringTime}}; Views: {{.Templates.Deviation.Post.Deviation.Stats.Views}}; Favourites: {{.Templates.Deviation.Post.Deviation.Stats.Favourites}}; Downloads: {{.Templates.Deviation.Post.Deviation.Stats.Downloads}} + {{if (ne .Templates.Deviation.Post.Description "")}}