summaryrefslogtreecommitdiffstats
path: root/EssentialsGroupManager/src/org/anjocaido/groupmanager/data/User.java
blob: 8a0e6cdbb958f725217dc498bc0a0955dc9a6517 (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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.anjocaido.groupmanager.data;

//import com.sun.org.apache.bcel.internal.generic.AALOAD;
import java.util.ArrayList;

import org.anjocaido.groupmanager.GroupManager;
import org.anjocaido.groupmanager.dataholder.WorldDataHolder;
import java.util.Map;

/**
 *
 * @author gabrielcouto
 */
public class User extends DataUnit implements Cloneable {

    /**
     *
     */
    private String group = null;
    private ArrayList<String> subGroups = new ArrayList<String>();
    /**
     *This one holds the fields in INFO node.
     * like prefix = 'c'
     * or build = false
     */
    private UserVariables variables = new UserVariables(this);

    /**
     *
     * @param name
     */
    public User(WorldDataHolder source, String name) {
        super(source, name);
        this.group = source.getDefaultGroup().getName();
    }

    /**
     *
     * @return
     */
    @Override
    public User clone() {
        User clone = new User(getDataSource(), this.getName());
        clone.group = this.group;
        for (String perm : this.getPermissionList()) {
            clone.addPermission(perm);
        }
        //clone.variables = this.variables.clone();
        //clone.flagAsChanged();
        return clone;
    }

    /**
     * Use this to deliver a user from one WorldDataHolder to another
     * @param dataSource
     * @return null if given dataSource already contains the same user
     */
    public User clone(WorldDataHolder dataSource) {
        if (dataSource.isUserDeclared(this.getName())) {
            return null;
        }
        User clone = dataSource.createUser(this.getName());
        if (dataSource.getGroup(group) == null) {
            clone.setGroup(dataSource.getDefaultGroup());
        } else {
            clone.setGroup(this.getGroupName());
        }
        for (String perm : this.getPermissionList()) {
            clone.addPermission(perm);
        }
        //clone.variables = this.variables.clone();
        clone.flagAsChanged();
        return clone;
    }

    public Group getGroup() {
        Group result = getDataSource().getGroup(group);
        if (result == null) {
            this.setGroup(getDataSource().getDefaultGroup());
            result = getDataSource().getDefaultGroup();
        }
        return result;
    }

    /**
     * @return the group
     */
    public String getGroupName() {
        Group result = getDataSource().getGroup(group);
        if (result == null) {
            group = getDataSource().getDefaultGroup().getName();
        }
        return group;
    }

    /**
     * @param group the group to set
     */
    @Deprecated
    public void setGroup(String group) {
        this.group = group;
        flagAsChanged();
        if (GroupManager.isLoaded())
        	if(GroupManager.BukkitPermissions.player_join = false)
        		GroupManager.BukkitPermissions.updateAllPlayers();
    }

    /**
     * @param group the group to set
     */
    public void setGroup(Group group) {
        if (!this.getDataSource().groupExists(group.getName())) {
            getDataSource().addGroup(group);
        }
        group = getDataSource().getGroup(group.getName());
        this.group = group.getName();
        flagAsChanged();
        if (GroupManager.isLoaded()) {
        	if (GroupManager.BukkitPermissions.player_join = false)
        		GroupManager.BukkitPermissions.updateAllPlayers();
        
        	GroupManager.notify(this.getName(), String.format(" moved to the group %s.", group.getName()));
        }
    }

    public void addSubGroup(Group subGroup) {
        if (this.group.equalsIgnoreCase(subGroup.getName())) {
            return;
        }
        if (!this.getDataSource().groupExists(subGroup.getName())) {
            getDataSource().addGroup(subGroup);
        }
        subGroup = getDataSource().getGroup(subGroup.getName());
        removeSubGroup(subGroup);
        subGroups.add(subGroup.getName());
        flagAsChanged();
        if (GroupManager.isLoaded())
        	if (GroupManager.BukkitPermissions.player_join = false)
        	GroupManager.BukkitPermissions.updateAllPlayers();
    }

    public int subGroupsSize() {
        return subGroups.size();
    }

    public boolean isSubGroupsEmpty() {
        return subGroups.isEmpty();
    }

    public boolean containsSubGroup(Group subGroup) {
        return subGroups.contains(subGroup.getName());
    }

    public boolean removeSubGroup(Group subGroup) {
        try {
            if (subGroups.remove(subGroup.getName())) {
                flagAsChanged();
                if (GroupManager.isLoaded())
                	if (GroupManager.BukkitPermissions.player_join = false)
                		GroupManager.BukkitPermissions.updateAllPlayers();
                return true;
            }
        } catch (Exception e) {
        }
        return false;
    }

    public ArrayList<Group> subGroupListCopy() {
        ArrayList<Group> val = new ArrayList<Group>();
        for (String gstr : subGroups) {
            Group g = getDataSource().getGroup(gstr);
            if (g == null) {
                removeSubGroup(g);
                continue;
            }
            val.add(g);
        }
        return val;
    }

    public ArrayList<String> subGroupListStringCopy() {
        return new ArrayList<String>(subGroups);
    }

    /**
     * @return the variables
     */
    public UserVariables getVariables() {
        return variables;
    }

    /**
     *
     * @param varList
     */
    public void setVariables(Map<String, Object> varList) {
        UserVariables temp = new UserVariables(this, varList);
        variables.clearVars();
        for (String key : temp.getVarKeyList()) {
            variables.addVar(key, temp.getVarObject(key));
        }
        flagAsChanged();
        if (GroupManager.isLoaded())
        	if (GroupManager.BukkitPermissions.player_join = false)
        		GroupManager.BukkitPermissions.updateAllPlayers();
    }
}