2016-04-08 13:12:31 +02:00
|
|
|
package net.frozenorb.apiv3.models;
|
2016-02-08 02:51:02 +01:00
|
|
|
|
2016-04-08 13:12:31 +02:00
|
|
|
import com.google.common.collect.Collections2;
|
2016-05-14 05:23:46 +02:00
|
|
|
import lombok.AllArgsConstructor;
|
2016-02-08 03:06:41 +01:00
|
|
|
import lombok.Getter;
|
2016-03-21 23:28:17 +01:00
|
|
|
import net.frozenorb.apiv3.APIv3;
|
2016-05-29 08:44:10 +02:00
|
|
|
import net.frozenorb.apiv3.utils.UUIDUtils;
|
2016-03-21 23:28:17 +01:00
|
|
|
import org.bson.types.ObjectId;
|
|
|
|
import org.mongodb.morphia.annotations.Entity;
|
|
|
|
import org.mongodb.morphia.annotations.Id;
|
2016-05-03 01:34:30 +02:00
|
|
|
import org.mongodb.morphia.annotations.Indexed;
|
2016-02-08 03:06:41 +01:00
|
|
|
|
2016-05-29 08:44:10 +02:00
|
|
|
import java.util.*;
|
2016-02-08 02:52:03 +01:00
|
|
|
|
2016-03-21 23:28:17 +01:00
|
|
|
@Entity(value = "grants", noClassnameStored = true)
|
2016-05-14 05:23:46 +02:00
|
|
|
@AllArgsConstructor
|
2016-03-21 23:28:17 +01:00
|
|
|
public final class Grant {
|
2016-02-08 02:51:02 +01:00
|
|
|
|
2016-05-02 23:35:05 +02:00
|
|
|
@Getter @Id private String id;
|
2016-05-11 00:37:07 +02:00
|
|
|
@Getter @Indexed private UUID user;
|
2016-02-12 01:10:46 +01:00
|
|
|
@Getter private String reason;
|
2016-05-06 01:35:45 +02:00
|
|
|
@Getter private Set<String> scopes = new HashSet<>(); // So on things w/o scopes we still load properly (Morphia drops empty sets)
|
2016-05-03 01:34:30 +02:00
|
|
|
@Getter @Indexed private String rank;
|
2016-03-21 23:28:17 +01:00
|
|
|
@Getter private Date expiresAt;
|
2016-02-12 21:12:05 +01:00
|
|
|
|
2016-02-12 01:10:46 +01:00
|
|
|
@Getter private UUID addedBy;
|
2016-05-03 01:34:30 +02:00
|
|
|
@Getter @Indexed private Date addedAt;
|
2016-02-12 01:10:46 +01:00
|
|
|
|
|
|
|
@Getter private UUID removedBy;
|
2016-03-21 23:28:17 +01:00
|
|
|
@Getter private Date removedAt;
|
2016-02-12 01:10:46 +01:00
|
|
|
@Getter private String removalReason;
|
|
|
|
|
2016-04-08 13:12:31 +02:00
|
|
|
public static Grant byId(String id) {
|
2016-05-02 23:35:05 +02:00
|
|
|
return APIv3.getDatastore().createQuery(Grant.class).field("id").equal(id).get();
|
2016-04-08 13:12:31 +02:00
|
|
|
}
|
|
|
|
|
2016-05-29 08:44:10 +02:00
|
|
|
public static Map<UUID, List<Grant>> byUserGrouped(Iterable<UUID> ids) {
|
|
|
|
Map<UUID, List<Grant>> result = new HashMap<>();
|
|
|
|
Set<UUID> uuidsToSearch = new HashSet<>();
|
|
|
|
|
|
|
|
for (UUID id : ids) {
|
|
|
|
result.put(id, new ArrayList<>());
|
|
|
|
|
|
|
|
if (UUIDUtils.isAcceptableUUID(id)) {
|
|
|
|
uuidsToSearch.add(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
APIv3.getDatastore().createQuery(Grant.class).field("user").in(uuidsToSearch).forEach((grant) -> {
|
|
|
|
result.get(grant.getUser()).add(grant);
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-03-21 23:28:17 +01:00
|
|
|
public Grant() {} // For Morphia
|
2016-02-12 06:31:57 +01:00
|
|
|
|
2016-05-10 18:30:21 +02:00
|
|
|
public Grant(User user, String reason, Set<ServerGroup> scopes, Rank rank, Date expiresAt, User addedBy) {
|
2016-05-02 23:35:05 +02:00
|
|
|
this.id = new ObjectId().toString();
|
2016-05-10 18:30:21 +02:00
|
|
|
this.user = user.getId();
|
2016-03-21 23:28:17 +01:00
|
|
|
this.reason = reason;
|
2016-04-08 13:12:31 +02:00
|
|
|
this.scopes = new HashSet<>(Collections2.transform(scopes, ServerGroup::getId));
|
|
|
|
this.rank = rank.getId();
|
2016-05-06 01:35:45 +02:00
|
|
|
this.expiresAt = expiresAt;
|
|
|
|
this.addedBy = addedBy == null ? null : addedBy.getId();
|
2016-03-21 23:28:17 +01:00
|
|
|
this.addedAt = new Date();
|
2016-02-12 06:31:57 +01:00
|
|
|
}
|
|
|
|
|
2016-04-08 13:12:31 +02:00
|
|
|
public void delete(User removedBy, String reason) {
|
|
|
|
this.removedBy = removedBy.getId();
|
2016-03-21 23:28:17 +01:00
|
|
|
this.removedAt = new Date();
|
2016-02-12 06:31:57 +01:00
|
|
|
this.removalReason = reason;
|
|
|
|
|
2016-03-21 23:28:17 +01:00
|
|
|
APIv3.getDatastore().save(this);
|
2016-02-12 06:31:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isActive() {
|
|
|
|
return !(isExpired() || isRemoved());
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isExpired() {
|
|
|
|
if (expiresAt == null) {
|
|
|
|
return false; // Never expires
|
|
|
|
} else {
|
2016-05-06 01:35:45 +02:00
|
|
|
return expiresAt.before(new Date());
|
2016-02-12 06:31:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isRemoved() {
|
|
|
|
return removedBy != null;
|
2016-02-12 01:10:46 +01:00
|
|
|
}
|
2016-02-08 03:06:41 +01:00
|
|
|
|
2016-04-28 22:57:44 +02:00
|
|
|
public boolean appliesOn(ServerGroup serverGroup) {
|
2016-04-30 20:03:34 +02:00
|
|
|
return isGlobal() || scopes.contains(serverGroup.getId());
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isGlobal() {
|
|
|
|
return scopes.isEmpty();
|
2016-04-28 22:57:44 +02:00
|
|
|
}
|
|
|
|
|
2016-02-08 02:51:02 +01:00
|
|
|
}
|