Remove support for TokenType.User (#958)
* Set usage of TokenType.User as an error rather than a warning. * Remove commented sections and #pragma's Additionally, changes use of ReadMessages to ViewChannel since that Obsolete was also suppressed by the pragma
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
#pragma warning disable CS1591
|
||||
#pragma warning disable CS0618
|
||||
using Discord.API.Rest;
|
||||
using Discord.Net;
|
||||
using Discord.Net.Converters;
|
||||
@@ -74,8 +73,6 @@ namespace Discord.API
|
||||
return $"Bot {token}";
|
||||
case TokenType.Bearer:
|
||||
return $"Bearer {token}";
|
||||
case TokenType.User:
|
||||
return token;
|
||||
default:
|
||||
throw new ArgumentException("Unknown OAuth token type", nameof(tokenType));
|
||||
}
|
||||
@@ -113,7 +110,6 @@ namespace Discord.API
|
||||
{
|
||||
_loginCancelToken = new CancellationTokenSource();
|
||||
|
||||
AuthTokenType = TokenType.User;
|
||||
AuthToken = null;
|
||||
await RequestQueue.SetCancelTokenAsync(_loginCancelToken.Token).ConfigureAwait(false);
|
||||
RestClient.SetCancelToken(_loginCancelToken.Token);
|
||||
@@ -172,8 +168,7 @@ namespace Discord.API
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.HeaderOnly = true;
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
var request = new RestRequest(RestClient, method, endpoint, options);
|
||||
await SendInternalAsync(method, endpoint, request).ConfigureAwait(false);
|
||||
@@ -187,8 +182,7 @@ namespace Discord.API
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.HeaderOnly = true;
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
string json = payload != null ? SerializeJson(payload) : null;
|
||||
var request = new JsonRestRequest(RestClient, method, endpoint, json, options);
|
||||
@@ -203,8 +197,7 @@ namespace Discord.API
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.HeaderOnly = true;
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
var request = new MultipartRestRequest(RestClient, method, endpoint, multipartArgs, options);
|
||||
await SendInternalAsync(method, endpoint, request).ConfigureAwait(false);
|
||||
@@ -217,8 +210,7 @@ namespace Discord.API
|
||||
string bucketId = null, ClientBucketType clientBucket = ClientBucketType.Unbucketed, RequestOptions options = null) where TResponse : class
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
var request = new RestRequest(RestClient, method, endpoint, options);
|
||||
return DeserializeJson<TResponse>(await SendInternalAsync(method, endpoint, request).ConfigureAwait(false));
|
||||
@@ -231,8 +223,7 @@ namespace Discord.API
|
||||
string bucketId = null, ClientBucketType clientBucket = ClientBucketType.Unbucketed, RequestOptions options = null) where TResponse : class
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
string json = payload != null ? SerializeJson(payload) : null;
|
||||
var request = new JsonRestRequest(RestClient, method, endpoint, json, options);
|
||||
@@ -246,8 +237,7 @@ namespace Discord.API
|
||||
string bucketId = null, ClientBucketType clientBucket = ClientBucketType.Unbucketed, RequestOptions options = null)
|
||||
{
|
||||
options = options ?? new RequestOptions();
|
||||
options.BucketId = AuthTokenType == TokenType.User ? ClientBucket.Get(clientBucket).Id : bucketId;
|
||||
options.IsClientBucket = AuthTokenType == TokenType.User;
|
||||
options.BucketId = bucketId;
|
||||
|
||||
var request = new MultipartRestRequest(RestClient, method, endpoint, multipartArgs, options);
|
||||
return DeserializeJson<TResponse>(await SendInternalAsync(method, endpoint, request).ConfigureAwait(false));
|
||||
|
||||
Reference in New Issue
Block a user