134 lines
3.7 KiB
Go
134 lines
3.7 KiB
Go
package devianter
|
||
|
||
import (
|
||
"errors"
|
||
"log"
|
||
"math"
|
||
"net/url"
|
||
"strconv"
|
||
"strings"
|
||
)
|
||
|
||
/* AVATARS AND EMOJIS */
|
||
func AEmedia(name string, t rune) (string, error) {
|
||
if len(name) < 2 {
|
||
return "", errors.New("name must be specified")
|
||
}
|
||
// список всех возможных расширений
|
||
var extensions = [3]string{
|
||
".jpg",
|
||
".png",
|
||
".gif",
|
||
}
|
||
// надо
|
||
name = strings.ToLower(name)
|
||
|
||
// построение ссылок. билдер потому что он быстрее обычного сложения строк.
|
||
var b strings.Builder
|
||
switch t {
|
||
case 'a':
|
||
b.WriteString("https://a.deviantart.net/avatars-big/")
|
||
name_without_dashes := strings.ReplaceAll(name, "-", "_")
|
||
b.WriteString(name_without_dashes[:1])
|
||
b.WriteString("/")
|
||
b.WriteString(name_without_dashes[1:2])
|
||
b.WriteString("/")
|
||
case 'e':
|
||
b.WriteString("https://e.deviantart.net/emoticons/")
|
||
b.WriteString(name[:1])
|
||
b.WriteString("/")
|
||
default:
|
||
log.Fatalln("Invalid type.\n- 'a' -- avatar;\n- 'e' -- emoji.")
|
||
}
|
||
b.WriteString(name)
|
||
|
||
// проверка ссылки на доступность
|
||
for x := 0; x < len(extensions); x++ {
|
||
req := request(b.String() + extensions[x])
|
||
if req.Status == 200 {
|
||
return req.Body, nil
|
||
}
|
||
}
|
||
|
||
return "", errors.New("user not exists")
|
||
}
|
||
|
||
/* DAILY DEVIATIONS */
|
||
type DailyDeviations struct {
|
||
HasMore bool
|
||
Strips []struct {
|
||
Codename, Title string
|
||
TitleType string
|
||
Deviations []Deviation
|
||
}
|
||
Deviations []Deviation
|
||
}
|
||
|
||
func GetDailyDeviations(page int) (dd DailyDeviations, err Error) {
|
||
err = ujson("dabrowse/networkbar/rfy/deviations?page="+strconv.Itoa(page), &dd)
|
||
return
|
||
}
|
||
|
||
/* SEARCH */
|
||
type Search struct {
|
||
Total int `json:"estTotal"`
|
||
Pages int // only for 'a' and 'g' scope.
|
||
HasMore bool
|
||
Results []Deviation `json:"deviations"`
|
||
ResultsGalleryTemp []Deviation `json:"results"`
|
||
}
|
||
|
||
func PerformSearch(query string, page int, scope rune, user ...string) (ss Search, err error, daError Error) {
|
||
var buildurl strings.Builder
|
||
|
||
// о5 построение ссылок.
|
||
switch scope {
|
||
case 'a': // поиск артов по названию
|
||
buildurl.WriteString("dabrowse/search/all?q=")
|
||
case 't': // поиск артов по тегам
|
||
buildurl.WriteString("dabrowse/networkbar/tag/deviations?tag=")
|
||
case 'g', 'f': // поиск артов пользователя или группы
|
||
if user == nil {
|
||
err = errors.New("missing username (last argument)")
|
||
return
|
||
}
|
||
|
||
buildurl.WriteString("dashared/gallection/search?username=")
|
||
buildurl.WriteString(user[0])
|
||
buildurl.WriteString("&type=")
|
||
if scope == 'g' {
|
||
buildurl.WriteString("gallery")
|
||
} else {
|
||
buildurl.WriteString("collection")
|
||
}
|
||
buildurl.WriteString("&order=most-recent&init=true&limit=50&q=")
|
||
default:
|
||
log.Fatalln("Invalid type.\n- 'a' -- all;\n- 't' -- tag;\n- 'g' - gallery\n- 'f' - folders.")
|
||
}
|
||
|
||
buildurl.WriteString(url.QueryEscape(query))
|
||
if scope != 'g' { // если область поиска не равна поиску по группам, то активируется этот код
|
||
buildurl.WriteString("&page=")
|
||
} else { // иначе вместо страницы будет оффсет и страница умножится на 50
|
||
buildurl.WriteString("&offset=")
|
||
page = 50 * page
|
||
}
|
||
buildurl.WriteString(strconv.Itoa(page))
|
||
|
||
daError = ujson(buildurl.String(), &ss)
|
||
|
||
if ss.Results == nil {
|
||
ss.Results = ss.ResultsGalleryTemp
|
||
}
|
||
|
||
// расчёт, сколько всего страниц по запросу. без токена, 417 страниц - максимум
|
||
totalfloat := int(math.Round(float64(ss.Total / 25)))
|
||
for x := 0; x < totalfloat; x++ {
|
||
if x <= 417 {
|
||
ss.Pages = x
|
||
}
|
||
}
|
||
|
||
return
|
||
}
|