devianter/user-group.go

148 lines
3.1 KiB
Go
Raw Normal View History

package devianter
import (
"errors"
"strconv"
"strings"
)
// структура группы или пользователя
2024-06-13 21:05:21 +00:00
type GRuser struct {
ErrorDescription string
Owner struct {
Group bool `json:"isGroup"`
Username string
}
Gruser struct {
ID int `json:"gruserId"`
Page struct {
Modules []struct {
Name string
ModuleData struct {
GroupAbout GroupAbout
GroupAdmins GroupAdmins
2024-06-27 11:52:33 +00:00
users
}
}
}
}
Extra struct {
Tag string `json:"gruserTagline"`
Stats struct {
Deviations, Watchers, Watching, Pageviews, CommentsMade, Favourites, Friends int
FeedComments int `json:"commentsReceivedProfile"`
}
} `json:"pageExtraData"`
}
type Gallery struct {
Gruser struct {
ID int `json:"gruserId"`
Page struct {
Modules []struct {
Name string
ModuleData struct {
// группы
Folders struct {
HasMore bool
Results []struct {
FolderId int
2024-07-13 18:40:17 +00:00
Size int
Name string
2024-07-13 18:40:17 +00:00
Thumb Deviation
}
}
// галерея
2024-06-27 11:52:33 +00:00
Folder struct {
HasMore bool
2024-06-27 11:52:33 +00:00
Username string
Pages int `json:"totalPageCount"`
Deviations []Deviation
} `json:"folderDeviations"`
}
}
}
}
HasMore bool
Results []Deviation
}
2024-06-13 21:05:21 +00:00
type Group struct {
Name string // обязательно заполнить
Content Gallery
2024-06-13 21:05:21 +00:00
}
// подходит как группа, так и пользователь
func (s Group) GetGroup() (g GRuser, err error) {
if s.Name == "" {
return g, errors.New("missing Name field")
}
2024-06-13 21:05:21 +00:00
ujson("dauserprofile/init/about?username="+s.Name, &g)
return
}
// гарелея пользователя или группы
func (s Group) GetGallery(page int, folderid ...int) (g Group, err error) {
if s.Name == "" {
return g, errors.New("missing Name field")
}
var url strings.Builder
if folderid[0] > 0 {
page--
url.WriteString("dashared/gallection/contents?username=")
url.WriteString(s.Name)
url.WriteString("&folderid=")
url.WriteString(strconv.Itoa(folderid[0]))
url.WriteString("&offset=")
url.WriteString(strconv.Itoa(page * 50))
url.WriteString("&type=gallery&")
} else {
url.WriteString("dauserprofile/init/gallery?username=")
url.WriteString(s.Name)
url.WriteString("&page=")
url.WriteString(strconv.Itoa(page))
url.WriteString("&deviations_")
}
url.WriteString("limit=50")
url.WriteString("&with_subfolders=false")
ujson(url.String(), &g.Content)
return
}
type GroupAbout struct {
FoundatedAt timeStamp `json:"foundationTs"`
Description Text
}
type GroupAdmins struct {
Results []struct {
TypeId int
User struct {
Username string
}
}
}
type About struct {
Country, Website, WebsiteLabel, Gender string
RegDate int64 `json:"deviantFor"`
Description Text `json:"textContent"`
SocialLinks []struct {
Value string
}
Interests []struct {
Label, Value string
}
}
type users struct {
About About
CoverDeviation struct {
Deviation Deviation `json:"coverDeviation"`
}
}