OSDN Git Service

C# 8.0 のnull許容参照型を有効化
[opentween/open-tween.git] / OpenTween / Thumbnail / Services / TwitterComVideo.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2015 spx (@5px)
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.Net.Http;
28 using System.Text;
29 using System.Text.RegularExpressions;
30 using System.Threading;
31 using System.Threading.Tasks;
32 using OpenTween.Models;
33
34 namespace OpenTween.Thumbnail.Services
35 {
36     /// <summary>
37     /// サムネイル用URLと動画用URLを用意する
38     /// </summary>
39     class TwitterComVideo : MetaThumbnailService
40     {
41         public static readonly string UrlPattern = @"^https?://amp\.twimg\.com/v/.*$";
42
43         public TwitterComVideo()
44             : base(null, TwitterComVideo.UrlPattern)
45         {
46         }
47
48         public TwitterComVideo(HttpClient? http)
49             : base(http, TwitterComVideo.UrlPattern)
50         {
51         }
52
53         public override async Task<ThumbnailInfo?> GetThumbnailInfoAsync(string url, PostClass post, CancellationToken token)
54         {
55             // 前処理で動画用URLが準備されていればそれを使う
56             var mediaInfo = post.Media.FirstOrDefault(x => x.Url == url);
57             if (mediaInfo?.VideoUrl != null)
58             {
59                 return new ThumbnailInfo
60                 {
61                     MediaPageUrl = mediaInfo.VideoUrl,
62                     ThumbnailImageUrl = url,
63                     TooltipText = mediaInfo.AltText,
64                     IsPlayable = true,
65                 };
66             }
67
68             // amp.twimg.com のメタデータからサムネイル用URLを取得する
69             var thumbInfo = await base.GetThumbnailInfoAsync(url, post, token)
70                 .ConfigureAwait(false);
71
72             if (thumbInfo != null)
73             {
74                 thumbInfo.IsPlayable = true;
75                 return thumbInfo;
76             }
77
78             return null;
79         }
80     }
81 }