aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/command/user/UserCommandFollow.java
blob: dc27f65775de5020df57c5485a13d3f5922ac8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package net.miz_hi.smileessence.command.user;

import net.miz_hi.smileessence.Client;
import net.miz_hi.smileessence.command.IConfirmable;
import net.miz_hi.smileessence.notification.Notificator;
import net.miz_hi.smileessence.task.Task;
import net.miz_hi.smileessence.twitter.API;
import twitter4j.TwitterException;

public class UserCommandFollow extends UserCommand implements IConfirmable
{

	public UserCommandFollow(String userName)
	{
		super(userName);
	}

	@Override
	public String getName()
	{
		return "フォローする";
	}

	@Override
	public void workOnUiThread()
	{
		new Task<Boolean>()
		{

			@Override
			public Boolean call()
			{
				try
				{
					API.follow(Client.getMainAccount(), userName);
				}
				catch(TwitterException e)
				{
					return false;
				}
				return true;
			}

			@Override
			public void onPreExecute()
			{
			}

			@Override
			public void onPostExecute(Boolean result)
			{
				if(result)
				{
					Notificator.info("フォローしました");
				}
				else
				{
					Notificator.alert("フォロー失敗しました");
				}
			}

		}.callAsync();
	}

	@Override
	public boolean getDefaultVisibility()
	{
		return !Client.getMainAccount().getScreenName().equals(userName);
	}

}