OSDN Git Service

8e65b07c4399147f1945b90ff3baca8b4c4a88c7
[opentween/open-tween.git] / OpenTween / Thumbnail / Services / PbsTwimgCom.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2016 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.Text.RegularExpressions;
29 using System.Threading;
30 using System.Threading.Tasks;
31 using OpenTween.Models;
32
33 namespace OpenTween.Thumbnail.Services
34 {
35     class PbsTwimgCom : SimpleThumbnailService
36     {
37         public static readonly string UrlPattern = @"^(https?://pbs\.twimg\.com/[^:]+)(?:\:.+)?$";
38
39         public PbsTwimgCom()
40             : base(UrlPattern, "${1}", "${1}:orig")
41         {
42         }
43
44         public override async Task<ThumbnailInfo?> GetThumbnailInfoAsync(string url, PostClass post, CancellationToken token)
45         {
46             var thumb = await base.GetThumbnailInfoAsync(url, post, token)
47                 .ConfigureAwait(false);
48
49             if (thumb == null)
50                 return null;
51
52             var media = post.Media.FirstOrDefault(x => x.Url == url);
53             if (media != null)
54             {
55                 thumb.TooltipText = media.AltText;
56             }
57
58             return thumb;
59         }
60     }
61 }