OSDN Git Service

OpenTween.Thumbnail.Services.* のテストをいくつか追加
[opentween/open-tween.git] / OpenTween / Thumbnail / ThumbnailGenerator.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2012      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 using System;
23 using System.Collections.Generic;
24 using System.Linq;
25 using System.Text;
26 using System.Text.RegularExpressions;
27 using OpenTween.Thumbnail.Services;
28
29 namespace OpenTween.Thumbnail
30 {
31     class ThumbnailGenerator
32     {
33         private static List<IThumbnailService> generator = new List<IThumbnailService>();
34
35         public static void InitializeGenerator()
36         {
37             ThumbnailGenerator.generator = new List<IThumbnailService>()
38             {
39                 // DirectLink
40                 new SimpleThumbnailService(@"^https?://.*(\.jpg|\.jpeg|\.gif|\.png|\.bmp)$", "${0}"),
41
42                 // img.azyobuzi.net
43                 new ImgAzyobuziNet(autoupdate: true),
44
45                 // ImgUr
46                 new SimpleThumbnailService(@"^http://(?:i\.)?imgur\.com/(\w+)(?:\..{3})?$", "http://img.imgur.com/${1}l.jpg"),
47
48                 // Twitpic
49                 new SimpleThumbnailService(@"^http://(www\.)?twitpic\.com/(?<photoId>\w+)(/full/?)?$", "http://twitpic.com/show/thumb/${photoId}"),
50
51                 // yfrog
52                 new SimpleThumbnailService(@"^http://yfrog\.com/(\w+)$", "${0}:small"),
53
54                 // Lockerz
55                 new SimpleThumbnailService(@"^http://(tweetphoto\.com/[0-9]+|pic\.gd/[a-z0-9]+|(lockerz|plixi)\.com/[ps]/[0-9]+)$", "http://api.plixi.com/api/tpapi.svc/imagefromurl?size=thumbnail&url=${0}"),
56
57                 // MobyPicture
58                 new SimpleThumbnailService(@"^http://moby\.to/(\w+)$", "http://mobypicture.com/?${1}:small"),
59
60                 // 携帯百景
61                 new SimpleThumbnailService(@"^http://movapic\.com/pic/(\w+)$", "http://image.movapic.com/pic/s_${1}.jpeg"),
62
63                 // はてなフォトライフ
64                 new SimpleThumbnailService(@"^http://f\.hatena\.ne\.jp/(([a-z])[a-z0-9_-]{1,30}[a-z0-9])/((\d{8})\d+)$", "http://img.f.hatena.ne.jp/images/fotolife/${2}/${1}/${4}/${3}_120.jpg"),
65
66                 // PhotoShare
67                 new SimpleThumbnailService(@"^http://(?:www\.)?bcphotoshare\.com/photos/\d+/(\d+)$", "http://images.bcphotoshare.com/storages/${1}/thumb180.jpg"),
68
69                 // PhotoShare
70                 new PhotoShareShortlink(@"^http://bctiny\.com/p(\w+)$"),
71
72                 // img.ly
73                 new SimpleThumbnailService(@"^http://img\.ly/(\w+)$", "http://img.ly/show/thumb/${1}"),
74
75                 // Twitgoo
76                 new SimpleThumbnailService(@"^http://twitgoo\.com/(\w+)$", "http://twitgoo.com/${1}/mini"),
77
78                 // youtube
79                 new Youtube(@"^http://(?:(www\.youtube\.com)|(youtu\.be))/(watch\?v=)?(?<videoid>([\w\-]+))", "http://i.ytimg.com/vi/${videoid}/default.jpg"),
80
81                 // ニコニコ動画
82                 new Nicovideo(@"^http://(?:(www|ext)\.nicovideo\.jp/watch|nico\.ms)/(?:sm|nm)?([0-9]+)(\?.+)?$", "http://www.nicovideo.jp/api/getthumbinfo/${id}"),
83
84                 // ニコニコ静画
85                 new SimpleThumbnailService(@"^http://(?:seiga\.nicovideo\.jp/seiga/|nico\.ms/)im(?<id>\d+)", "http://lohas.nicoseiga.jp/thumb/${id}q?"),
86
87                 // pixiv
88                 new MetaThumbnailService(@"^http://www\.pixiv\.net/(member_illust|index)\.php\?(?=.*mode=(medium|big))(?=.*illust_id=(?<illustId>[0-9]+)).*$"),
89
90                 // flickr
91                 new MetaThumbnailService(@"^http://www\.flickr\.com/.+$"),
92
93                 // フォト蔵
94                 new SimpleThumbnailService(@"^http://photozou\.jp/photo/show/(?<userId>[0-9]+)/(?<photoId>[0-9]+)", "http://photozou.jp/p/thumb/${photoId}"),
95
96                 // TwitVideo
97                 new SimpleThumbnailService(@"^http://twitvideo\.jp/(\w+)$", "http://twitvideo.jp/img/thumb/${1}"),
98
99                 // Piapro
100                 new MetaThumbnailService(@"^http://piapro\.jp/(?:content/[0-9a-z]+|t/[0-9a-zA-Z_\-]+)$"),
101
102                 // Tumblr
103                 new Tumblr(@"(?<base>http://.+?\.tumblr\.com/)post/(?<postID>[0-9]+)(/(?<subject>.+?)/)?", "${base}api/read?id=${postID}"),
104
105                 // ついっぷるフォト
106                 new SimpleThumbnailService(@"^http://p\.twipple\.jp/(?<contentId>[0-9a-z]+)", "http://p.twipple.jp/show/large/${contentId}"),
107
108                 // mypix/shamoji
109                 new SimpleThumbnailService(@"^http://www\.(mypix\.jp|shamoji\.info)/app\.php/picture/(?<contentId>[0-9a-z]+)", "${0}/thumb.jpg"),
110
111                 // ow.ly
112                 new SimpleThumbnailService(@"^http://ow\.ly/i/(\w+)$", "http://static.ow.ly/photos/thumb/${1}.jpg"),
113
114                 // vimeo
115                 new Vimeo(@"http://vimeo\.com/(?<postID>[0-9]+)", "http://vimeo.com/api/oembed.xml?url=${0}"),
116
117                 // cloudfiles
118                 new SimpleThumbnailService(@"^http://c[0-9]+\.cdn[0-9]+\.cloudfiles\.rackspacecloud\.com/[a-z_0-9]+", "${0}"),
119
120                 // Instagram
121                 new SimpleThumbnailService(@"^http://instagr\.am/p/.+/", "${0}media/?size=m"),
122
123                 // pikubo
124                 new SimpleThumbnailService(@"^http://pikubo\.me/([a-z0-9-_]+)", "http://pikubo.me/q/${1}"),
125
126                 // Foursquare
127                 new Services.Foursquare(@"^https?://(4sq|foursquare)\.com/.+"),
128
129                 // TINAMI
130                 new Tinami(@"^http://www\.tinami\.com/view/(?<ContentId>\d+)$", "http://api.tinami.com/content/info?cont_id=${ContentId}&api_key=" + ApplicationSettings.TINAMIApiKey),
131
132                 // pic.twitter.com
133                 new SimpleThumbnailService(@"^https?://p\.twimg\.com/.*$", "${0}:thumb"),
134
135                 // TwitrPix
136                 new SimpleThumbnailService(@"^http://twitrpix\.com/(\w+)$", "http://img.twitrpix.com/thumb/${1}"),
137
138                 // Pckles
139                 new SimpleThumbnailService(@"^https?://pckles\.com/\w+/\w+$", "${0}.resize.jpg"),
140
141                 // via.me
142                 new ViaMe(@"^https?://via\.me/-(\w+)$", "http://via.me/api/v1/posts/$1"),
143
144                 // tuna.be
145                 new SimpleThumbnailService(@"^http://tuna\.be/t/(?<entryId>[a-zA-Z0-9\.\-_]+)$", "http://tuna.be/show/thumb/${entryId}"),
146
147                 // Path (path.com)
148                 new MetaThumbnailService(@"^https?://path.com/p/\w+$"),
149             };
150         }
151
152         public static List<ThumbnailInfo> GetThumbnails(PostClass post)
153         {
154             var thumbnails = new List<ThumbnailInfo>();
155
156             if (post.Media != null)
157             {
158                 foreach (var media in post.Media)
159                 {
160                     var thumbInfo = ThumbnailGenerator.GetThumbnailInfo(media.Value, post);
161                     if (thumbInfo != null)
162                     {
163                         thumbnails.Add(thumbInfo);
164                     }
165                 }
166             }
167
168             if (post.PostGeo != null && !(post.PostGeo.Lat == 0 && post.PostGeo.Lng == 0))
169             {
170                 var map = MapThumb.GetDefaultInstance();
171                 thumbnails.Add(new ThumbnailInfo()
172                 {
173                     ImageUrl = map.CreateMapLinkUrl(post.PostGeo.Lat, post.PostGeo.Lng),
174                     ThumbnailUrl = map.CreateStaticMapUrl(post.PostGeo.Lat, post.PostGeo.Lng),
175                     TooltipText = null,
176                 });
177             }
178
179             return thumbnails;
180         }
181
182         public static ThumbnailInfo GetThumbnailInfo(string url, PostClass post)
183         {
184             foreach (var generator in ThumbnailGenerator.generator)
185             {
186                 var result = generator.GetThumbnailInfo(url, post);
187                 if (result != null)
188                 {
189                     return result;
190                 }
191             }
192
193             return null;
194         }
195     }
196 }