Module: Discordrb::API::User

Defined in:
lib/discordrb/api/user.rb

Overview

API calls for User object

Class Method Summary collapse

Class Method Details

.avatar_url(user_id, avatar_id, format = nil) ⇒ Object

Make an avatar URL from the user and avatar IDs



141
142
143
144
145
146
147
148
# File 'lib/discordrb/api/user.rb', line 141

def avatar_url(user_id, avatar_id, format = nil)
  format ||= if avatar_id.start_with?('a_')
               'gif'
             else
               'webp'
             end
  "#{Discordrb::API.cdn_url}/avatars/#{user_id}/#{avatar_id}.#{format}"
end

.change_own_nickname(token, server_id, nick, reason = nil) ⇒ Object

Change the current bot's nickname on a server



32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/discordrb/api/user.rb', line 32

def change_own_nickname(token, server_id, nick, reason = nil)
  Discordrb::API.request(
    :guilds_sid_members_me_nick,
    server_id, # This is technically a guild endpoint
    :patch,
    "#{Discordrb::API.api_base}/guilds/#{server_id}/members/@me/nick",
    { nick: nick }.to_json,
    Authorization: token,
    content_type: :json,
    'X-Audit-Log-Reason': reason
  )
end

.change_status_setting(token, status) ⇒ Object

Change user status setting



122
123
124
125
126
127
128
129
130
131
132
# File 'lib/discordrb/api/user.rb', line 122

def change_status_setting(token, status)
  Discordrb::API.request(
    :users_me_settings,
    nil,
    :patch,
    "#{Discordrb::API.api_base}/users/@me/settings",
    { status: status }.to_json,
    Authorization: token,
    content_type: :json
  )
end

.connections(token) ⇒ Object



111
112
113
114
115
116
117
118
119
# File 'lib/discordrb/api/user.rb', line 111

def connections(token)
  Discordrb::API.request(
    :users_me_connections,
    nil,
    :get,
    "#{Discordrb::API.api_base}/users/@me/connections",
    Authorization: token
  )
end

.create_pm(token, recipient_id) ⇒ Object



97
98
99
100
101
102
103
104
105
106
107
# File 'lib/discordrb/api/user.rb', line 97

def create_pm(token, recipient_id)
  Discordrb::API.request(
    :users_me_channels,
    nil,
    :post,
    "#{Discordrb::API.api_base}/users/@me/channels",
    { recipient_id: recipient_id }.to_json,
    Authorization: token,
    content_type: :json
  )
end

.default_avatar(discrim = 0) ⇒ Object

Returns one of the "default" discord avatars from the CDN given a discriminator



135
136
137
138
# File 'lib/discordrb/api/user.rb', line 135

def default_avatar(discrim = 0)
  index = discrim.to_i % 5
  "#{Discordrb::API.cdn_url}/embed/avatars/#{index}.png"
end

.leave_server(token, server_id) ⇒ Object



73
74
75
76
77
78
79
80
81
# File 'lib/discordrb/api/user.rb', line 73

def leave_server(token, server_id)
  Discordrb::API.request(
    :users_me_guilds_sid,
    nil,
    :delete,
    "#{Discordrb::API.api_base}/users/@me/guilds/#{server_id}",
    Authorization: token
  )
end

.profile(token) ⇒ Object



21
22
23
24
25
26
27
28
29
# File 'lib/discordrb/api/user.rb', line 21

def profile(token)
  Discordrb::API.request(
    :users_me,
    nil,
    :get,
    "#{Discordrb::API.api_base}/users/@me",
    Authorization: token
  )
end

.resolve(token, user_id) ⇒ Object



9
10
11
12
13
14
15
16
17
# File 'lib/discordrb/api/user.rb', line 9

def resolve(token, user_id)
  Discordrb::API.request(
    :users_uid,
    nil,
    :get,
    "#{Discordrb::API.api_base}/users/#{user_id}",
    Authorization: token
  )
end

.servers(token) ⇒ Object



61
62
63
64
65
66
67
68
69
# File 'lib/discordrb/api/user.rb', line 61

def servers(token)
  Discordrb::API.request(
    :users_me_guilds,
    nil,
    :get,
    "#{Discordrb::API.api_base}/users/@me/guilds",
    Authorization: token
  )
end

.update_profile(token, email, password, new_username, avatar, new_password = nil) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
# File 'lib/discordrb/api/user.rb', line 47

def update_profile(token, email, password, new_username, avatar, new_password = nil)
  Discordrb::API.request(
    :users_me,
    nil,
    :patch,
    "#{Discordrb::API.api_base}/users/@me",
    { avatar: avatar, email: email, new_password: new_password, password: password, username: new_username }.to_json,
    Authorization: token,
    content_type: :json
  )
end

.user_dms(token) ⇒ Object



85
86
87
88
89
90
91
92
93
# File 'lib/discordrb/api/user.rb', line 85

def user_dms(token)
  Discordrb::API.request(
    :users_me_channels,
    nil,
    :get,
    "#{Discordrb::API.api_base}/users/@me/channels",
    Authorization: token
  )
end