package geddit import ( "context" "net/http" ) // ListingsService handles communication with the link (post) // related methods of the Reddit API type ListingsService interface { Get(ctx context.Context, ids ...string) (*Listing, *Response, error) } // ListingsServiceOp implements the Vote interface type ListingsServiceOp struct { client *Client } var _ ListingsService = &ListingsServiceOp{} type listingRoot struct { Kind string `json:"kind,omitempty"` Data *struct { Dist int `json:"dist"` Children []map[string]interface{} `json:"children,omitempty"` After string `json:"after,omitempty"` Before string `json:"before,omitempty"` } `json:"data,omitempty"` } // Listing holds various types of things that all come from the Reddit API // type Listing struct { // Links []*Submission `json:"links,omitempty"` // Comments []*Comment `json:"comments,omitempty"` // Subreddits []*Subreddit `json:"subreddits,omitempty"` // } // Get gets a list of things based on their IDs // Only links, comments, and subreddits are allowed // todo: only links, comments, subreddits func (s *ListingsServiceOp) Get(ctx context.Context, ids ...string) (*Listing, *Response, error) { type query struct { IDs []string `url:"id,comma"` } path := "api/info" path, err := addOptions(path, query{ids}) if err != nil { return nil, nil, err } req, err := s.client.NewRequest(http.MethodGet, path, nil) if err != nil { return nil, nil, err } root := new(rootListing) resp, err := s.client.Do(ctx, req, root) if err != nil { return nil, resp, err } return root.Data, resp, nil } // todo: do by_id next