...

Package models

import "jschan/app/models"
Overview
Index

Overview ▾

type AllowedFileTypes

type AllowedFileTypes struct {
    AnimatedImage bool `json:"animatedImage"`
    Image         bool `json:"image"`
    Video         bool `json:"video"`
    Audio         bool `json:"audio"`
    Other         bool `json:"other"`
}
type Backlinks struct {
    ID     string `json:"_id"`
    PostID int    `json:"postId"`
}

type Board

type Board struct {
    ID                string            `json:"_id"`
    URI               string            `json:"uri,omitempty"`
    Path              string            `json:"path,omitempty"`
    LastPostTimestamp LastPostTimestamp `json:"lastPostTimestamp"`
    Tags              []interface{}     `json:"tags,omitempty"`
    SiteName          string            `json:"siteName,omitempty"`
    SequenceValue     int               `json:"sequence_value"`
    Pph               int               `json:"pph"`
    Ips               int               `json:"ips"`
    Settings          Settings          `json:"settings,omitempty"`
    Webring           bool              `json:"webring"`
    Ppd               int               `json:"ppd,omitempty"`
}

type BoardSettings

type BoardSettings struct {
    CustomPages            []string              `json:"customPages"`
    Announcement           RawAndMarkdownMessage `json:"announcement"`
    AllowedFileTypes       AllowedFileTypes      `json:"allowedFileTypes"`
    MaxFiles               int                   `json:"maxFiles"`
    CaptchaMode            int                   `json:"captchaMode"`
    ForceAnon              bool                  `json:"forceAnon"`
    SageOnlyEmail          bool                  `json:"sageOnlyEmail"`
    CustomFlags            bool                  `json:"customFlags"`
    ForceThreadMessage     bool                  `json:"forceThreadMessage"`
    ForceThreadFile        bool                  `json:"forceThreadFile"`
    ForceThreadSubject     bool                  `json:"forceThreadSubject"`
    DisableReplySubject    bool                  `json:"disableReplySubject"`
    MinThreadMessageLength int                   `json:"minThreadMessageLength"`
    MinReplyMessageLength  int                   `json:"minReplyMessageLength"`
    MaxThreadMessageLength int                   `json:"maxThreadMessageLength"`
    MaxReplyMessageLength  int                   `json:"maxReplyMessageLength"`
    DefaultName            string                `json:"defaultName"`
}

type CaptchaOptions

type CaptchaOptions struct {
    Type string `json:"type"`
    Grid Grid   `json:"grid,omitempty"`
}

type Country

type Country struct {
    Name   string `json:"name"`
    Code   string `json:"code"`
    Src    string `json:"src,omitempty"`
    Custom bool   `json:"custom"`
}

type CustomPage

type CustomPage struct {
    Board   string                `json:"board"`
    Page    string                `json:"page"`
    Title   string                `json:"title"`
    Message RawAndMarkdownMessage `json:"message"`
    Date    ScuffedTime           `json:"date"`
    Edited  interface{}           `json:"edited"`
    ID      string                `json:"_id"`
}

type Edited

type Edited struct {
    Username string      `json:"username"`
    Date     ScuffedTime `json:"date"`
}

type Files

type Files struct {
    Spoiler          interface{} `json:"spoiler"`
    Hash             string      `json:"hash"`
    Filename         string      `json:"filename"`
    OriginalFilename string      `json:"originalFilename"`
    Mimetype         string      `json:"mimetype"`
    Size             int         `json:"size"`
    Extension        string      `json:"extension"`
    Thumbextension   string      `json:"thumbextension"`
    Geometry         Geometry    `json:"geometry"`
    GeometryString   string      `json:"geometryString"`
    HasThumb         bool        `json:"hasThumb"`
    SizeString       string      `json:"sizeString"`
}

type Geometry

type Geometry struct {
    Width       int `json:"width"`
    Height      int `json:"height"`
    Thumbwidth  int `json:"thumbwidth"`
    Thumbheight int `json:"thumbheight"`
}

type GlobalSettings

type GlobalSettings struct {
    CaptchaOptions CaptchaOptions `json:"captchaOptions"`
}

type Grid

type Grid struct {
    Size     int    `json:"size"`
    Question string `json:"question"`
}

type IP

type IP struct {
    Raw    string `json:"raw,omitempty"`
    Cloak  string `json:"cloak"`
    Pruned bool   `json:"pruned,omitempty"`
    Type   int    `json:"type,omitempty"`
}

type LastPostTimestamp

type LastPostTimestamp struct {
    Text  string `json:"text"`
    Color string `json:"color"`
}

type Log

type Log struct {
    ID        string         `json:"_id"`
    ShowLinks bool           `json:"showLinks"`
    PostLinks []LogPostLinks `json:"postLinks"`
    Actions   []string       `json:"actions"`
    Date      ScuffedTime    `json:"date"`
    ShowUser  bool           `json:"showUser"`
    Message   string         `json:"message"`
    User      string         `json:"user"`
    Board     string         `json:"board"`
}

type LogDate

type LogDate struct {
    Year  int `json:"year"`
    Month int `json:"month"`
    Day   int `json:"day"`
}

func (*LogDate) String

func (m *LogDate) String() string

type LogList

type LogList struct {
    Date  LogDate `json:"date"`
    Count int     `json:"count"`
}
type LogPostLinks struct {
    PostID int    `json:"postId"`
    Thread int    `json:"thread,omitempty"`
    Board  string `json:"board,omitempty"`
}

type Post

type Post struct {
    ID               string        `json:"_id"`
    Date             ScuffedTime   `json:"date"`
    U                int64         `json:"u"`
    Name             string        `json:"name"`
    Country          Country       `json:"country"`
    Board            string        `json:"board"`
    Tripcode         string        `json:"tripcode"`
    Capcode          string        `json:"capcode"`
    Subject          string        `json:"subject"`
    Message          string        `json:"message"`
    Messagehash      string        `json:"messagehash"`
    Nomarkup         string        `json:"nomarkup"`
    Thread           int           `json:"thread"`
    Email            string        `json:"email"`
    Spoiler          bool          `json:"spoiler"`
    Banmessage       string        `json:"banmessage"`
    UserID           string        `json:"userId"`
    Files            []Files       `json:"files"`
    Quotes           []interface{} `json:"quotes"`
    Crossquotes      []interface{} `json:"crossquotes"`
    Backlinks        []Backlinks   `json:"backlinks"`
    Replyposts       int           `json:"replyposts"`
    Replyfiles       int           `json:"replyfiles"`
    Sticky           int           `json:"sticky"`
    Locked           int           `json:"locked"`
    Bumplocked       int           `json:"bumplocked"`
    Cyclic           int           `json:"cyclic"`
    Bumped           ScuffedTime   `json:"bumped,omitempty"`
    PostID           int           `json:"postId"`
    Replies          []Post        `json:"replies,omitempty"`
    Previewbacklinks []Backlinks   `json:"previewbacklinks,omitempty"`
    Omittedfiles     int           `json:"omittedfiles,omitempty"`
    Omittedposts     int           `json:"omittedposts,omitempty"`
    Edited           Edited        `json:"edited,omitempty"`
    Reports          []Report      `json:"reports"`
    GlobalReports    []Report      `json:"globalreports"`
    IP               IP            `json:"ip,omitempty"`
}

type Quotes

type Quotes struct {
    ID     string `json:"_id"`
    Thread int    `json:"thread"`
    PostID int    `json:"postId"`
}

type RawAndMarkdownMessage

type RawAndMarkdownMessage struct {
    Raw      string `json:"raw"`
    Markdown string `json:"markdown"`
}

type Report

type Report struct {
    ID     string      `json:"id"`
    Reason string      `json:"reason"`
    Date   ScuffedTime `json:"date"`
    IP     IP          `json:"ip"`
}

type ScuffedTime

type ScuffedTime time.Time

func (*ScuffedTime) UnmarshalJSON

func (m *ScuffedTime) UnmarshalJSON(data []byte) error

type Settings

type Settings struct {
    Sfw           bool   `json:"sfw"`
    Name          string `json:"name"`
    Description   string `json:"description"`
    UnlistedLocal bool   `json:"unlistedLocal,omitempty"`
}

type Webring

type Webring struct {
    Name      string         `json:"name"`
    URL       string         `json:"url"`
    Endpoint  string         `json:"endpoint"`
    Logo      []string       `json:"logo"`
    Following []string       `json:"following"`
    Blacklist []string       `json:"blacklist"`
    Known     []string       `json:"known"`
    Boards    []WebringBoard `json:"boards"`
}

type WebringBoard

type WebringBoard struct {
    URI               string      `json:"uri"`
    Title             string      `json:"title"`
    Subtitle          string      `json:"subtitle"`
    Path              string      `json:"path"`
    PostsPerHour      int         `json:"postsPerHour"`
    PostsPerDay       int         `json:"postsPerDay"`
    TotalPosts        int         `json:"totalPosts"`
    UniqueUsers       int         `json:"uniqueUsers"`
    Nsfw              bool        `json:"nsfw"`
    Tags              []string    `json:"tags"`
    LastPostTimestamp ScuffedTime `json:"lastPostTimestamp"`
}