aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/net/lacolaco/smileessence/command/Command.java
blob: 5f0015ffd74e216201b613af60f21b34467f1bde (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2012-2014 lacolaco.net
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package net.lacolaco.smileessence.command;

import android.app.Activity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;

import net.lacolaco.smileessence.R;
import net.lacolaco.smileessence.command.message.*;
import net.lacolaco.smileessence.command.status.*;
import net.lacolaco.smileessence.command.user.*;
import net.lacolaco.smileessence.data.CommandSettingCache;
import net.lacolaco.smileessence.entity.Account;
import net.lacolaco.smileessence.viewmodel.IViewModel;

import twitter4j.DirectMessage;
import twitter4j.Status;
import twitter4j.User;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public abstract class Command implements IViewModel {

    // ------------------------------ FIELDS ------------------------------

    private final int key;
    private final Activity activity;

    // -------------------------- STATIC METHODS --------------------------

    public Command(int key, Activity activity) {
        this.key = key;
        this.activity = activity;
    }

    public static List<Command> getAllCommands(Activity activity) {
        List<Command> commands = new ArrayList<>();
        commands.addAll(getStatusCommands(activity, null, null));
        commands.addAll(getUserCommands(activity, null, null));
        return commands;
    }

    public static List<Command> getUserCommands(Activity activity, User user, Account account) {
        List<Command> commands = new ArrayList<>();
        commands.add(new UserCommandReply(activity, user));
        commands.add(new UserCommandAddToReply(activity, user));
        commands.add(new UserCommandSendMessage(activity, user, account));
        commands.add(new UserCommandBlock(activity, user, account));
        commands.add(new UserCommandUnblock(activity, user, account));
        commands.add(new UserCommandReportForSpam(activity, user, account));
        commands.add(new UserCommandOpenFavstar(activity, user));
        commands.add(new UserCommandOpenAclog(activity, user));
        commands.add(new UserCommandOpenTwilog(activity, user));
        commands.add(new UserCommandIntroduce(activity, user));
        return commands;
    }

    public static List<Command> getStatusCommands(Activity activity, Status status, Account account) {
        List<Command> commands = new ArrayList<>();
        commands.add(new StatusCommandAddToReply(activity, status));
        commands.add(new StatusCommandOpenTalkView(activity, status, account));
        commands.add(new StatusCommandFavAndRT(activity, status, account));
        commands.add(new StatusCommandOpenQuoteDialog(activity, status));
        commands.add(new StatusCommandShare(activity, status));
        commands.add(new StatusCommandOpenInBrowser(activity, status));
        commands.add(new StatusCommandCopyTextToClipboard(activity, status));
        commands.add(new StatusCommandCopyURLToClipboard(activity, status));
        commands.add(new StatusCommandCopy(activity, status));
        commands.add(new StatusCommandSearchOnGoogle(activity, status));
        commands.add(new StatusCommandTofuBuster(activity, status));
        commands.add(new StatusCommandNanigaja(activity, status, account));
        commands.add(new StatusCommandMakeAnonymous(activity, status, account));
        commands.add(new StatusCommandCongratulate(activity, status, account));
        commands.add(new StatusCommandReview(activity, status));
        return commands;
    }

    public static List<Command> getMessageCommands(Activity activity, DirectMessage message, Account account) {
        List<Command> commands = new ArrayList<>();
        commands.add(new MessageCommandShare(activity, message));
        commands.add(new MessageCommandCopyTextToClipboard(activity, message));
        commands.add(new MessageCommandSearchOnGoogle(activity, message));
        commands.add(new MessageCommandTofuBuster(activity, message));
        return commands;
    }

    // --------------------------- CONSTRUCTORS ---------------------------

    public static void filter(List<Command> commands) {
        Iterator<Command> iterator = commands.iterator();
        while (iterator.hasNext()) {
            Command command = iterator.next();
            if (!command.isEnabled()) {
                iterator.remove();
            } else if (command.getKey() >= 0) {
                boolean visibility = CommandSettingCache.getInstance().get(command.getKey());
                if (!visibility) {
                    iterator.remove();
                }
            }
        }
    }

    // --------------------- GETTER / SETTER METHODS ---------------------

    public Activity getActivity() {
        return activity;
    }

    public int getKey() {
        return key;
    }

    // ------------------------ INTERFACE METHODS ------------------------


    // --------------------- Interface IViewModel ---------------------

    @Override
    public View getView(Activity activity, LayoutInflater inflater, View convertedView) {
        if (convertedView == null) {
            convertedView = inflater.inflate(R.layout.menu_item_simple_text, null);
        }
        TextView textView = (TextView) convertedView.findViewById(R.id.textView_menuItem_simple);
        textView.setText(getText());
        return convertedView;
    }

    // -------------------------- OTHER METHODS --------------------------

    public abstract boolean execute();

    public abstract String getText();

    public abstract boolean isEnabled();
}