2022-04-17 12:43:07 +00:00
|
|
|
package emu.grasscutter.game;
|
|
|
|
|
|
|
|
import dev.morphia.annotations.Collation;
|
|
|
|
import dev.morphia.annotations.Entity;
|
|
|
|
import dev.morphia.annotations.Id;
|
|
|
|
import dev.morphia.annotations.Indexed;
|
2022-04-19 05:00:01 +00:00
|
|
|
import dev.morphia.annotations.PreLoad;
|
2022-04-17 12:43:07 +00:00
|
|
|
import emu.grasscutter.database.DatabaseHelper;
|
|
|
|
import emu.grasscutter.utils.Crypto;
|
|
|
|
import emu.grasscutter.utils.Utils;
|
|
|
|
import dev.morphia.annotations.IndexOptions;
|
|
|
|
|
2022-04-19 04:38:19 +00:00
|
|
|
import java.util.ArrayList;
|
2022-04-19 03:46:04 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
2022-04-19 05:00:01 +00:00
|
|
|
import com.mongodb.DBObject;
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
@Entity(value = "accounts", noClassnameStored = true)
|
|
|
|
public class Account {
|
|
|
|
@Id private String id;
|
|
|
|
|
|
|
|
@Indexed(options = @IndexOptions(unique = true))
|
|
|
|
@Collation(locale = "simple", caseLevel = true)
|
|
|
|
private String username;
|
|
|
|
private String password; // Unused for now
|
|
|
|
|
|
|
|
private int playerId;
|
|
|
|
private String email;
|
|
|
|
|
|
|
|
private String token;
|
|
|
|
private String sessionKey; // Session token for dispatch server
|
2022-04-19 03:46:04 +00:00
|
|
|
private List<String> permissions;
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
@Deprecated
|
2022-04-19 04:38:19 +00:00
|
|
|
public Account() {
|
|
|
|
this.permissions = new ArrayList<>();
|
|
|
|
}
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
public String getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setId(String id) {
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUsername() {
|
|
|
|
return username;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUsername(String username) {
|
|
|
|
this.username = username;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPassword() {
|
|
|
|
return password;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPassword(String password) {
|
|
|
|
this.password = password;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getToken() {
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setToken(String token) {
|
|
|
|
this.token = token;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPlayerId() {
|
|
|
|
return this.playerId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPlayerId(int playerId) {
|
|
|
|
this.playerId = playerId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEmail() {
|
|
|
|
return email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
|
this.email = email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSessionKey() {
|
|
|
|
return this.sessionKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String generateSessionKey() {
|
|
|
|
this.sessionKey = Utils.bytesToHex(Crypto.createSessionKey(32));
|
|
|
|
this.save();
|
|
|
|
return this.sessionKey;
|
|
|
|
}
|
2022-04-19 03:46:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The collection of a player's permissions.
|
|
|
|
*/
|
|
|
|
public List<String> getPermissions() {
|
|
|
|
return this.permissions;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean addPermission(String permission) {
|
|
|
|
if(this.permissions.contains(permission)) return false;
|
|
|
|
this.permissions.add(permission); return true;
|
|
|
|
}
|
2022-04-19 10:17:19 +00:00
|
|
|
|
|
|
|
public boolean hasPermission(String permission) {
|
|
|
|
return this.permissions.contains(permission) || this.permissions.contains("*") ? true : false;
|
|
|
|
}
|
2022-04-19 03:46:04 +00:00
|
|
|
|
|
|
|
public boolean removePermission(String permission) {
|
|
|
|
return this.permissions.remove(permission);
|
|
|
|
}
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
// TODO make unique
|
|
|
|
public String generateLoginToken() {
|
|
|
|
this.token = Utils.bytesToHex(Crypto.createSessionKey(32));
|
|
|
|
this.save();
|
|
|
|
return this.token;
|
|
|
|
}
|
|
|
|
|
2022-04-19 05:00:01 +00:00
|
|
|
@PreLoad
|
|
|
|
public void onLoad(DBObject dbObj) {
|
|
|
|
// Grant the superuser permissions to accounts created before the permissions update
|
|
|
|
if (!dbObj.containsField("permissions")) {
|
|
|
|
this.addPermission("*");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
public void save() {
|
|
|
|
DatabaseHelper.saveAccount(this);
|
|
|
|
}
|
|
|
|
}
|