123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- package discordgo
- type MembershipState int
- const (
- MembershipStateInvited MembershipState = 1
- MembershipStateAccepted MembershipState = 2
- )
- type TeamMember struct {
- User *User `json:"user"`
- TeamID string `json:"team_id"`
- MembershipState MembershipState `json:"membership_state"`
- Permissions []string `json:"permissions"`
- }
- type Team struct {
- ID string `json:"id"`
- Name string `json:"name"`
- Description string `json:"description"`
- Icon string `json:"icon"`
- OwnerID string `json:"owner_user_id"`
- Members []*TeamMember `json:"members"`
- }
- func (s *Session) Application(appID string) (st *Application, err error) {
- body, err := s.RequestWithBucketID("GET", EndpointOAuth2Application(appID), nil, EndpointOAuth2Application(""))
- if err != nil {
- return
- }
- err = unmarshal(body, &st)
- return
- }
- func (s *Session) Applications() (st []*Application, err error) {
- body, err := s.RequestWithBucketID("GET", EndpointOAuth2Applications, nil, EndpointOAuth2Applications)
- if err != nil {
- return
- }
- err = unmarshal(body, &st)
- return
- }
- func (s *Session) ApplicationCreate(ap *Application) (st *Application, err error) {
- data := struct {
- Name string `json:"name"`
- Description string `json:"description"`
- }{ap.Name, ap.Description}
- body, err := s.RequestWithBucketID("POST", EndpointOAuth2Applications, data, EndpointOAuth2Applications)
- if err != nil {
- return
- }
- err = unmarshal(body, &st)
- return
- }
- func (s *Session) ApplicationUpdate(appID string, ap *Application) (st *Application, err error) {
- data := struct {
- Name string `json:"name"`
- Description string `json:"description"`
- }{ap.Name, ap.Description}
- body, err := s.RequestWithBucketID("PUT", EndpointOAuth2Application(appID), data, EndpointOAuth2Application(""))
- if err != nil {
- return
- }
- err = unmarshal(body, &st)
- return
- }
- func (s *Session) ApplicationDelete(appID string) (err error) {
- _, err = s.RequestWithBucketID("DELETE", EndpointOAuth2Application(appID), nil, EndpointOAuth2Application(""))
- if err != nil {
- return
- }
- return
- }
- type Asset struct {
- Type int `json:"type"`
- ID string `json:"id"`
- Name string `json:"name"`
- }
- func (s *Session) ApplicationAssets(appID string) (ass []*Asset, err error) {
- body, err := s.RequestWithBucketID("GET", EndpointOAuth2ApplicationAssets(appID), nil, EndpointOAuth2ApplicationAssets(""))
- if err != nil {
- return
- }
- err = unmarshal(body, &ass)
- return
- }
- func (s *Session) ApplicationBotCreate(appID string) (st *User, err error) {
- body, err := s.RequestWithBucketID("POST", EndpointOAuth2ApplicationsBot(appID), nil, EndpointOAuth2ApplicationsBot(""))
- if err != nil {
- return
- }
- err = unmarshal(body, &st)
- return
- }
|