OSDN Git Service

Merge pull request #309 from opentween/graphql-likesrequest
[opentween/open-tween.git] / OpenTween / Api / GraphQL / SearchTimelineRequest.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 SearchTimelineRequest
32     {
33         public static readonly string EndpointName = "SearchTimeline";
34
35         private static readonly Uri EndpointUri = new("https://twitter.com/i/api/graphql/lZ0GCEojmtQfiUQa5oJSEw/SearchTimeline");
36
37         public string RawQuery { get; set; }
38
39         public int Count { get; set; } = 20;
40
41         public string? Cursor { get; set; }
42
43         public SearchTimelineRequest(string rawQuery)
44             => this.RawQuery = rawQuery;
45
46         public Dictionary<string, string> CreateParameters()
47         {
48             return new()
49             {
50                 ["variables"] = "{" +
51                     $@"""rawQuery"":""{JsonUtils.EscapeJsonString(this.RawQuery)}""," +
52                     $@"""count"":{this.Count}," +
53                     $@"""product"":""Latest""" +
54                     (this.Cursor != null ? $@",""cursor"":""{JsonUtils.EscapeJsonString(this.Cursor)}""" : "") +
55                     "}",
56                 ["features"] = "{" +
57                     @"""responsive_web_graphql_exclude_directive_enabled"":true," +
58                     @"""verified_phone_label_enabled"":false," +
59                     @"""responsive_web_home_pinned_timelines_enabled"":true," +
60                     @"""creator_subscriptions_tweet_preview_api_enabled"":true," +
61                     @"""responsive_web_graphql_timeline_navigation_enabled"":true," +
62                     @"""responsive_web_graphql_skip_user_profile_image_extensions_enabled"":false," +
63                     @"""c9s_tweet_anatomy_moderator_badge_enabled"":true," +
64                     @"""tweetypie_unmention_optimization_enabled"":true," +
65                     @"""responsive_web_edit_tweet_api_enabled"":true," +
66                     @"""graphql_is_translatable_rweb_tweet_is_translatable_enabled"":true," +
67                     @"""view_counts_everywhere_api_enabled"":true," +
68                     @"""longform_notetweets_consumption_enabled"":true," +
69                     @"""responsive_web_twitter_article_tweet_consumption_enabled"":false," +
70                     @"""tweet_awards_web_tipping_enabled"":false," +
71                     @"""freedom_of_speech_not_reach_fetch_enabled"":true," +
72                     @"""standardized_nudges_misinfo"":true," +
73                     @"""tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled"":true," +
74                     @"""longform_notetweets_rich_text_read_enabled"":true," +
75                     @"""longform_notetweets_inline_media_enabled"":true," +
76                     @"""responsive_web_media_download_video_enabled"":false," +
77                     @"""responsive_web_enhance_cards_enabled"":false" +
78                     "}",
79             };
80         }
81
82         public async Task<TimelineResponse> Send(IApiConnection apiConnection)
83         {
84             var request = new GetRequest
85             {
86                 RequestUri = EndpointUri,
87                 Query = this.CreateParameters(),
88                 EndpointName = EndpointName,
89             };
90
91             using var response = await apiConnection.SendAsync(request)
92                 .ConfigureAwait(false);
93
94             var rootElm = await response.ReadAsJsonXml()
95                 .ConfigureAwait(false);
96
97             return TimelineResponseParser.Parse(rootElm);
98         }
99     }
100 }