OSDN Git Service

タイムラインの取得結果にレートリミットに関するメッセージが含まれていた場合はエラーとして扱う
[opentween/open-tween.git] / OpenTween / Api / GraphQL / ErrorResponse.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2023 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 #nullable enable
23
24 using System;
25 using System.Collections.Generic;
26 using System.Linq;
27 using System.Runtime.Serialization.Json;
28 using System.Text;
29 using System.Threading.Tasks;
30 using System.Xml;
31 using System.Xml.Linq;
32 using System.Xml.XPath;
33 using OpenTween.Api.DataModel;
34
35 namespace OpenTween.Api.GraphQL
36 {
37     public static class ErrorResponse
38     {
39         public static void ThrowIfError(string? jsonString)
40         {
41             if (MyCommon.IsNullOrEmpty(jsonString))
42                 return;
43
44             var jsonBytes = Encoding.UTF8.GetBytes(jsonString);
45             using var jsonReader = JsonReaderWriterFactory.CreateJsonReader(jsonBytes, XmlDictionaryReaderQuotas.Max);
46
47             var rootElm = XElement.Load(jsonReader);
48             ThrowIfError(rootElm);
49         }
50
51         public static void ThrowIfError(XElement rootElm)
52         {
53             // errors と data プロパティが両方ともある場合はエラーを無視して正常なレスポンスとして扱う
54             if (rootElm.Element("data")?.HasElements == true)
55                 return;
56
57             var errorsElm = rootElm.Element("errors") ?? null;
58             if (errorsElm == null)
59                 return;
60
61             var messageElm = rootElm.XPathSelectElement("/errors/item/message") ?? null;
62             var messageText = messageElm?.Value ?? "Error";
63             var responseJson = JsonUtils.JsonXmlToString(rootElm);
64
65             throw new WebApiException(messageText, responseJson);
66         }
67
68         public static void ThrowIfContainsRateLimitMessage(XElement rootElm)
69         {
70             var messageElm = rootElm.XPathSelectElement("//itemContent[itemType[text()='TimelineMessagePrompt']]");
71             if (messageElm == null)
72                 return;
73
74             var bodyText = messageElm.XPathSelectElement("content/bodyText")?.Value ?? "";
75             if (bodyText.StartsWith("You have reached the limit"))
76             {
77                 var error = new TwitterError
78                 {
79                     Errors = new[]
80                     {
81                         new TwitterErrorItem { Code = TwitterErrorCode.RateLimit, Message = "" },
82                     },
83                 };
84                 throw new TwitterApiException(0, error, "");
85             }
86         }
87     }
88 }