OSDN Git Service

Merge pull request #309 from opentween/graphql-likesrequest
[opentween/open-tween.git] / OpenTween / Api / GraphQL / TweetDetailRequest.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.Threading.Tasks;
27 using OpenTween.Connection;
28 using OpenTween.Models;
29
30 namespace OpenTween.Api.GraphQL
31 {
32     public class TweetDetailRequest
33     {
34         public static readonly string EndpointName = "TweetDetail";
35
36         private static readonly Uri EndpointUri = new("https://twitter.com/i/api/graphql/-Ls3CrSQNo2fRKH6i6Na1A/TweetDetail");
37
38         public required TwitterStatusId FocalTweetId { get; set; }
39
40         public Dictionary<string, string> CreateParameters()
41         {
42             return new()
43             {
44                 ["variables"] = $$"""
45                     {"focalTweetId":"{{this.FocalTweetId.Id}}","with_rux_injections":false,"includePromotedContent":true,"withCommunity":true,"withQuickPromoteEligibilityTweetFields":true,"withBirdwatchNotes":true,"withVoice":true,"withV2Timeline":true}
46                     """,
47                 ["features"] = """
48                     {"rweb_lists_timeline_redesign_enabled":true,"responsive_web_graphql_exclude_directive_enabled":true,"verified_phone_label_enabled":false,"creator_subscriptions_tweet_preview_api_enabled":true,"responsive_web_graphql_timeline_navigation_enabled":true,"responsive_web_graphql_skip_user_profile_image_extensions_enabled":false,"tweetypie_unmention_optimization_enabled":true,"responsive_web_edit_tweet_api_enabled":true,"graphql_is_translatable_rweb_tweet_is_translatable_enabled":true,"view_counts_everywhere_api_enabled":true,"longform_notetweets_consumption_enabled":true,"responsive_web_twitter_article_tweet_consumption_enabled":false,"tweet_awards_web_tipping_enabled":false,"freedom_of_speech_not_reach_fetch_enabled":true,"standardized_nudges_misinfo":true,"tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":true,"longform_notetweets_rich_text_read_enabled":true,"longform_notetweets_inline_media_enabled":true,"responsive_web_media_download_video_enabled":false,"responsive_web_enhance_cards_enabled":false}
49                     """,
50                 ["fieldToggles"] = """
51                     {"withAuxiliaryUserLabels":false,"withArticleRichContentState":false}
52                     """,
53             };
54         }
55
56         public async Task<TimelineTweet[]> Send(IApiConnection apiConnection)
57         {
58             var request = new GetRequest
59             {
60                 RequestUri = EndpointUri,
61                 Query = this.CreateParameters(),
62                 EndpointName = EndpointName,
63             };
64
65             using var response = await apiConnection.SendAsync(request)
66                 .ConfigureAwait(false);
67
68             var rootElm = await response.ReadAsJsonXml()
69                 .ConfigureAwait(false);
70
71             ErrorResponse.ThrowIfError(rootElm);
72
73             return TimelineTweet.ExtractTimelineTweets(rootElm);
74         }
75     }
76 }