OSDN Git Service

シンプルな型名を使用する (IDE0049)
[opentween/open-tween.git] / OpenTween / UserInfo.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2007-2011 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
3 //           (c) 2008-2011 Moz (@syo68k)
4 //           (c) 2008-2011 takeshik (@takeshik) <http://www.takeshik.org/>
5 //           (c) 2010-2011 anis774 (@anis774) <http://d.hatena.ne.jp/anis774/>
6 //           (c) 2010-2011 fantasticswallow (@f_swallow) <http://twitter.com/f_swallow>
7 //           (c) 2011      Egtra (@egtra) <http://dev.activebasic.com/egtra/>
8 // All rights reserved.
9 // 
10 // This file is part of OpenTween.
11 // 
12 // This program is free software; you can redistribute it and/or modify it
13 // under the terms of the GNU General Public License as published by the Free
14 // Software Foundation; either version 3 of the License, or (at your option)
15 // any later version.
16 // 
17 // This program is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 // for more details. 
21 // 
22 // You should have received a copy of the GNU General Public License along
23 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
24 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
25 // Boston, MA 02110-1301, USA.
26
27 using System;
28 using System.Net;
29 using OpenTween.Api.DataModel;
30
31 namespace OpenTween
32 {
33     public class UserInfo
34     {
35         public UserInfo()
36         {
37         }
38
39         public UserInfo(TwitterUser user)
40         {
41             this.Id = user.Id;
42             this.Name = WebUtility.HtmlDecode(user.Name).Trim();
43             this.ScreenName = user.ScreenName;
44             this.Location = WebUtility.HtmlDecode(user.Location);
45             this.Description = WebUtility.HtmlDecode(user.Description);
46             try
47             {
48                 this.ImageUrl = new Uri(user.ProfileImageUrlHttps);
49             }
50             catch (Exception)
51             {
52                 this.ImageUrl = null;
53             }
54             this.Url = user.Url;
55             this.Protect = user.Protected;
56             this.FriendsCount = user.FriendsCount;
57             this.FollowersCount = user.FollowersCount;
58             this.CreatedAt = MyCommon.DateTimeParse(user.CreatedAt);
59             this.StatusesCount = user.StatusesCount;
60             this.Verified = user.Verified;
61             if (user.Status != null)
62             {
63                 this.RecentPost = user.Status.FullText;
64                 this.PostCreatedAt = MyCommon.DateTimeParse(user.Status.CreatedAt);
65                 this.PostSource = user.Status.Source;
66             }
67         }
68         public long Id = 0;
69         public string Name = "";
70         public string ScreenName = "";
71         public string Location = "";
72         public string Description = "";
73         public Uri ImageUrl = null;
74         public string Url = "";
75         public bool Protect = false;
76         public int FriendsCount = 0;
77         public int FollowersCount = 0;
78         public int FavoriteCount = 0;
79         public DateTimeUtc CreatedAt;
80         public int StatusesCount = 0;
81         public bool Verified = false;
82         public string RecentPost = "";
83         public DateTimeUtc PostCreatedAt;
84         public string PostSource = "";        // html形式 "<a href="http://sourceforge.jp/projects/tween/wiki/FrontPage" rel="nofollow">Tween</a>"
85         public bool isFollowing = false;
86         public bool isFollowed = false;
87
88         public override string ToString()
89             => this.ScreenName + " / " + this.Name;
90     }
91 }