OSDN Git Service

677d167aeaf46e19269538123ee29cf128504527
[opentween/open-tween.git] / OpenTween / Api / TwitterV2 / GetTimelineRequest.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2022 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.Text;
28 using System.Threading.Tasks;
29 using OpenTween.Api.DataModel;
30 using OpenTween.Connection;
31 using OpenTween.Models;
32
33 namespace OpenTween.Api.TwitterV2
34 {
35     public class GetTimelineRequest
36     {
37         public static readonly string EndpointName = "/2/users/:id/timelines/reverse_chronological";
38
39         public long UserId { get; set; }
40
41         public int? MaxResults { get; set; }
42
43         public TwitterStatusId? UntilId { get; set; }
44
45         public TwitterStatusId? SinceId { get; set; }
46
47         public GetTimelineRequest(long userId)
48             => this.UserId = userId;
49
50         private Uri CreateEndpointUri()
51             => new($"/2/users/{this.UserId}/timelines/reverse_chronological", UriKind.Relative);
52
53         private Dictionary<string, string> CreateParameters()
54         {
55             var param = new Dictionary<string, string>
56             {
57                 ["tweet.fields"] = "id",
58             };
59
60             if (this.MaxResults != null)
61                 param["max_results"] = this.MaxResults.ToString();
62
63             if (this.UntilId != null)
64                 param["until_id"] = this.UntilId.Id;
65
66             if (this.SinceId != null)
67                 param["since_id"] = this.SinceId.Id;
68
69             return param;
70         }
71
72         public Task<TwitterV2TweetIds> Send(IApiConnectionLegacy apiConnection)
73         {
74             var uri = this.CreateEndpointUri();
75             var param = this.CreateParameters();
76
77             return apiConnection.GetAsync<TwitterV2TweetIds>(uri, param, EndpointName);
78         }
79     }
80 }