...

Source file src/jschan/app/models/post.go

Documentation: jschan/app/models

     1  package models
     2  
     3  import (
     4  	"encoding/json"
     5  	"time"
     6  )
     7  
     8  type ScuffedTime time.Time
     9  
    10  func (m *ScuffedTime) UnmarshalJSON(data []byte) error {
    11  	if string(data) == "null" || string(data) == `""` || string(data) == "0" {
    12  		return nil
    13  	}
    14  	return json.Unmarshal(data, (*time.Time)(m))
    15  }
    16  
    17  type Post struct {
    18  	ID               string        `json:"_id"`
    19  	Date             ScuffedTime   `json:"date"`
    20  	U                int64         `json:"u"`
    21  	Name             string        `json:"name"`
    22  	Country          Country       `json:"country"`
    23  	Board            string        `json:"board"`
    24  	Tripcode         string        `json:"tripcode"`
    25  	Capcode          string        `json:"capcode"`
    26  	Subject          string        `json:"subject"`
    27  	Message          string        `json:"message"`
    28  	Messagehash      string        `json:"messagehash"`
    29  	Nomarkup         string        `json:"nomarkup"`
    30  	Thread           int           `json:"thread"`
    31  	Email            string        `json:"email"`
    32  	Spoiler          bool          `json:"spoiler"`
    33  	Banmessage       string        `json:"banmessage"`
    34  	UserID           string        `json:"userId"`
    35  	Files            []Files       `json:"files"`
    36  	Quotes           []interface{} `json:"quotes"`
    37  	Crossquotes      []interface{} `json:"crossquotes"`
    38  	Backlinks        []Backlinks   `json:"backlinks"`
    39  	Replyposts       int           `json:"replyposts"`
    40  	Replyfiles       int           `json:"replyfiles"`
    41  	Sticky           int           `json:"sticky"`
    42  	Locked           int           `json:"locked"`
    43  	Bumplocked       int           `json:"bumplocked"`
    44  	Cyclic           int           `json:"cyclic"`
    45  	Bumped           ScuffedTime   `json:"bumped,omitempty"`
    46  	PostID           int           `json:"postId"`
    47  	Replies          []Post        `json:"replies,omitempty"`
    48  	Previewbacklinks []Backlinks   `json:"previewbacklinks,omitempty"`
    49  	Omittedfiles     int           `json:"omittedfiles,omitempty"`
    50  	Omittedposts     int           `json:"omittedposts,omitempty"`
    51  	Edited           Edited        `json:"edited,omitempty"`
    52  	Reports          []Report      `json:"reports"`
    53  	GlobalReports    []Report      `json:"globalreports"`
    54  	IP               IP            `json:"ip,omitempty"`
    55  }
    56  
    57  type Report struct {
    58  	ID     string      `json:"id"`
    59  	Reason string      `json:"reason"`
    60  	Date   ScuffedTime `json:"date"`
    61  	IP     IP          `json:"ip"`
    62  }
    63  
    64  type IP struct {
    65  	Raw    string `json:"raw,omitempty"`
    66  	Cloak  string `json:"cloak"`
    67  	Pruned bool   `json:"pruned,omitempty"`
    68  	Type   int    `json:"type,omitempty"`
    69  }
    70  
    71  type Files struct {
    72  	Spoiler          interface{} `json:"spoiler"`
    73  	Hash             string      `json:"hash"`
    74  	Filename         string      `json:"filename"`
    75  	OriginalFilename string      `json:"originalFilename"`
    76  	Mimetype         string      `json:"mimetype"`
    77  	Size             int         `json:"size"`
    78  	Extension        string      `json:"extension"`
    79  	Thumbextension   string      `json:"thumbextension"`
    80  	Geometry         Geometry    `json:"geometry"`
    81  	GeometryString   string      `json:"geometryString"`
    82  	HasThumb         bool        `json:"hasThumb"`
    83  	SizeString       string      `json:"sizeString"`
    84  }
    85  
    86  type Geometry struct {
    87  	Width       int `json:"width"`
    88  	Height      int `json:"height"`
    89  	Thumbwidth  int `json:"thumbwidth"`
    90  	Thumbheight int `json:"thumbheight"`
    91  }
    92  
    93  type Country struct {
    94  	Name   string `json:"name"`
    95  	Code   string `json:"code"`
    96  	Src    string `json:"src,omitempty"`
    97  	Custom bool   `json:"custom"`
    98  }
    99  
   100  type Quotes struct {
   101  	ID     string `json:"_id"`
   102  	Thread int    `json:"thread"`
   103  	PostID int    `json:"postId"`
   104  }
   105  
   106  type Backlinks struct {
   107  	ID     string `json:"_id"`
   108  	PostID int    `json:"postId"`
   109  }
   110  
   111  type Edited struct {
   112  	Username string      `json:"username"`
   113  	Date     ScuffedTime `json:"date"`
   114  }
   115  

View as plain text