aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/command/user/UserCommandUnblock.java
blob: eacd0522d14f5e89d253f507c8e6bc5f6767ace9 (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 UserCommandUnblock extends UserCommand implements IConfirmable
{

    public UserCommandUnblock(String username)
    {
        super(username);
    }

    @Override
    public String getName()
    {
        return "ブロック解除";
    }

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

            @Override
            public Boolean call()
            {
                try
                {
                    API.block(Client.getMainAccount(), userName);
                }
                catch (TwitterException e)
                {
                    e.printStackTrace();
                    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);
    }

}