2016-06-16 16:29:33 +02:00
|
|
|
package net.frozenorb.apiv3.model;
|
2016-02-08 02:51:02 +01:00
|
|
|
|
2016-04-08 13:12:31 +02:00
|
|
|
import com.google.common.collect.Collections2;
|
2016-06-12 22:36:11 +02:00
|
|
|
import com.mongodb.async.SingleResultCallback;
|
2016-06-10 04:39:23 +02:00
|
|
|
import com.mongodb.async.client.MongoCollection;
|
2016-06-16 06:08:44 +02:00
|
|
|
import com.mongodb.client.result.UpdateResult;
|
|
|
|
import fr.javatic.mongo.jacksonCodec.Entity;
|
2016-06-12 22:36:11 +02:00
|
|
|
import fr.javatic.mongo.jacksonCodec.objectId.Id;
|
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-06-10 04:39:23 +02:00
|
|
|
import net.frozenorb.apiv3.unsorted.BlockingCallback;
|
2016-06-16 16:29:33 +02:00
|
|
|
import net.frozenorb.apiv3.util.SyncUtils;
|
2016-06-10 04:39:23 +02:00
|
|
|
import org.bson.Document;
|
2016-03-21 23:28:17 +01:00
|
|
|
import org.bson.types.ObjectId;
|
2016-02-08 03:06:41 +01:00
|
|
|
|
2016-06-16 18:25:22 +02:00
|
|
|
import java.time.Instant;
|
2016-05-29 08:44:10 +02:00
|
|
|
import java.util.*;
|
2016-06-16 06:08:44 +02:00
|
|
|
import java.util.stream.Collectors;
|
2016-02-08 02:52:03 +01:00
|
|
|
|
2016-06-16 06:08:44 +02:00
|
|
|
@Entity
|
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-06-10 04:39:23 +02:00
|
|
|
private static final MongoCollection<Grant> grantsCollection = APIv3.getDatabase().getCollection("grants", Grant.class);
|
|
|
|
|
2016-05-02 23:35:05 +02:00
|
|
|
@Getter @Id private String id;
|
2016-06-10 04:39:23 +02:00
|
|
|
@Getter 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-06-10 04:39:23 +02:00
|
|
|
@Getter private String rank;
|
2016-06-16 18:25:22 +02:00
|
|
|
@Getter private Instant expiresAt;
|
2016-02-12 21:12:05 +01:00
|
|
|
|
2016-02-12 01:10:46 +01:00
|
|
|
@Getter private UUID addedBy;
|
2016-06-16 18:25:22 +02:00
|
|
|
@Getter private Instant addedAt;
|
2016-02-12 01:10:46 +01:00
|
|
|
|
|
|
|
@Getter private UUID removedBy;
|
2016-06-16 18:25:22 +02:00
|
|
|
@Getter private Instant removedAt;
|
2016-02-12 01:10:46 +01:00
|
|
|
@Getter private String removalReason;
|
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static List<Grant> findAllSync() {
|
2016-06-16 06:08:44 +02:00
|
|
|
return SyncUtils.blockMulti(grantsCollection.find().sort(new Document("addedAt", -1)));
|
2016-04-08 13:12:31 +02:00
|
|
|
}
|
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static List<Grant> findAllPaginatedSync(int skip, int pageSize) {
|
2016-06-16 06:08:44 +02:00
|
|
|
return SyncUtils.blockMulti(grantsCollection.find().sort(new Document("addedAt", -1)).skip(skip).limit(pageSize));
|
2016-06-12 22:36:11 +02:00
|
|
|
}
|
|
|
|
|
2016-06-16 06:08:44 +02:00
|
|
|
public static List<Grant> findByRankSync(Collection<Rank> ranks) {
|
|
|
|
Collection<String> convertedRanks = ranks.stream().map(Rank::getId).collect(Collectors.toList());
|
|
|
|
return SyncUtils.blockMulti(grantsCollection.find(new Document("rank", new Document("$in", convertedRanks))));
|
2016-06-10 04:39:23 +02:00
|
|
|
}
|
2016-05-29 08:44:10 +02:00
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static Grant findByIdSync(String id) {
|
2016-06-10 04:39:23 +02:00
|
|
|
return SyncUtils.blockOne(grantsCollection.find(new Document("_id", id)));
|
|
|
|
}
|
2016-05-29 08:44:10 +02:00
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static List<Grant> findByUserSync(User user) {
|
|
|
|
return findByUserSync(user.getId());
|
2016-06-10 04:39:23 +02:00
|
|
|
}
|
2016-05-29 08:44:10 +02:00
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static List<Grant> findByUserSync(UUID user) {
|
2016-06-10 04:39:23 +02:00
|
|
|
return SyncUtils.blockMulti(grantsCollection.find(new Document("user", user)));
|
2016-05-29 08:44:10 +02:00
|
|
|
}
|
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
public static void findAll(SingleResultCallback<List<Grant>> callback) {
|
2016-06-16 06:08:44 +02:00
|
|
|
grantsCollection.find().sort(new Document("addedAt", -1)).into(new ArrayList<>(), callback);
|
2016-06-12 22:36:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void findAllPaginated(int skip, int pageSize, SingleResultCallback<List<Grant>> callback) {
|
2016-06-16 06:08:44 +02:00
|
|
|
grantsCollection.find().sort(new Document("addedAt", -1)).skip(skip).limit(pageSize).into(new ArrayList<>(), callback);
|
2016-06-12 22:36:11 +02:00
|
|
|
}
|
|
|
|
|
2016-06-16 06:08:44 +02:00
|
|
|
public static void findByRank(Collection<Rank> ranks, SingleResultCallback<List<Grant>> callback) {
|
|
|
|
Collection<String> convertedRanks = ranks.stream().map(Rank::getId).collect(Collectors.toList());
|
|
|
|
grantsCollection.find(new Document("rank", new Document("$in", convertedRanks))).into(new ArrayList<>(), callback);
|
2016-06-12 22:36:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void findById(String id, SingleResultCallback<Grant> callback) {
|
|
|
|
grantsCollection.find(new Document("_id", id)).first(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void findByUser(User user, SingleResultCallback<List<Grant>> callback) {
|
|
|
|
findByUser(user.getId(), callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void findByUser(UUID user, SingleResultCallback<List<Grant>> callback) {
|
|
|
|
grantsCollection.find(new Document("user", user)).into(new ArrayList<>(), callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void findByUserGrouped(Iterable<UUID> users, SingleResultCallback<Map<UUID, List<Grant>>> callback) {
|
|
|
|
grantsCollection.find(new Document("user", new Document("$in", users))).into(new ArrayList<>(), (grants, error) -> {
|
|
|
|
if (error != null) {
|
|
|
|
callback.onResult(null, error);
|
|
|
|
} else {
|
|
|
|
Map<UUID, List<Grant>> result = new HashMap<>();
|
|
|
|
|
|
|
|
for (UUID user : users) {
|
|
|
|
result.put(user, new ArrayList<>());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Grant grant : grants) {
|
|
|
|
result.get(grant.getUser()).add(grant);
|
|
|
|
}
|
|
|
|
|
|
|
|
callback.onResult(result, null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-21 23:28:17 +01:00
|
|
|
public Grant() {} // For Morphia
|
2016-02-12 06:31:57 +01:00
|
|
|
|
2016-06-16 18:25:22 +02:00
|
|
|
public Grant(User user, String reason, Set<ServerGroup> scopes, Rank rank, Instant 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-06-16 18:25:22 +02:00
|
|
|
this.addedAt = Instant.now();
|
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-06-16 18:25:22 +02:00
|
|
|
return expiresAt.isBefore(Instant.now());
|
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-06-10 04:39:23 +02:00
|
|
|
public void insert() {
|
|
|
|
BlockingCallback<Void> callback = new BlockingCallback<>();
|
|
|
|
grantsCollection.insertOne(this, callback);
|
|
|
|
callback.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void delete(User removedBy, String reason) {
|
|
|
|
this.removedBy = removedBy.getId();
|
2016-06-16 18:25:22 +02:00
|
|
|
this.removedAt = Instant.now();
|
2016-06-10 04:39:23 +02:00
|
|
|
this.removalReason = reason;
|
|
|
|
|
2016-06-16 06:08:44 +02:00
|
|
|
BlockingCallback<UpdateResult> callback = new BlockingCallback<>();
|
|
|
|
grantsCollection.replaceOne(new Document("_id", id), this, callback);
|
2016-06-10 04:39:23 +02:00
|
|
|
callback.get();
|
|
|
|
}
|
|
|
|
|
2016-02-08 02:51:02 +01:00
|
|
|
}
|