OSDN Git Service

FavoriteTweet/UnfavoriteTweetを使用したFav追加・削除に対応
[opentween/open-tween.git] / OpenTween / Api / GraphQL / HomeLatestTimelineRequest.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
29 namespace OpenTween.Api.GraphQL
30 {
31     public class HomeLatestTimelineRequest
32     {
33         public static readonly string EndpointName = "HomeLatestTimeline";
34
35         private static readonly Uri EndpointUri = new("https://twitter.com/i/api/graphql/lAKISuk_McyDUlhS2Zmv4A/HomeLatestTimeline");
36
37         public int Count { get; set; } = 20;
38
39         public string? Cursor { get; set; }
40
41         public Dictionary<string, string> CreateParameters()
42         {
43             return new()
44             {
45                 ["variables"] = "{" +
46                     $@"""includePromotedContent"":true,""latestControlAvailable"":true,""requestContext"":""launch""," +
47                     $@"""count"":{this.Count}" +
48                     (this.Cursor != null ? $@",""cursor"":""{JsonUtils.EscapeJsonString(this.Cursor)}""" : "") +
49                     "}",
50                 ["features"] = """
51                     {"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,"c9s_tweet_anatomy_moderator_badge_enabled":true,"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":true,"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,"rweb_video_timestamps_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}
52                     """,
53             };
54         }
55
56         public async Task<TimelineResponse> 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             return TimelineResponseParser.Parse(rootElm);
72         }
73     }
74 }