com.cosmicpush.common.accounts.AccountStore Maven / Gradle / Ivy
/*
* Copyright (c) 2014 Jacob D. Parr
*
* This software may not be used without permission.
*/
package com.cosmicpush.common.accounts;
import com.cosmicpush.common.accounts.queries.*;
import com.cosmicpush.common.system.CpCouchServer;
import com.cosmicpush.pub.internal.RequestErrors;
import org.crazyyak.lib.couchace.DefaultCouchStore;
import java.util.List;
public class AccountStore extends DefaultCouchStore {
public static final String ACCOUNT_DESIGN_NAME = "account";
public AccountStore(CpCouchServer couchServer) {
super(couchServer, Account.class);
}
@Override
public String getDesignName() {
return ACCOUNT_DESIGN_NAME;
}
@Override
public String getDatabaseName() {
return CpCouchServer.DATABASE_NAME;
}
public Account get(AccountQuery accountQuery) {
RequestErrors errors = new RequestErrors();
accountQuery.validate(errors);
if (errors.isNotEmpty()) {
throw errors.toBadRequestException();
}
if (accountQuery instanceof AccountIdQuery) {
AccountIdQuery query = (AccountIdQuery)accountQuery;
return getByAccountId(query.getAccountId());
} else if (accountQuery instanceof AccountEntityQuery) {
AccountEntityQuery query = (AccountEntityQuery)accountQuery;
return query.getAccount();
} else if (accountQuery instanceof AccountEmailQuery) {
AccountEmailQuery query = (AccountEmailQuery)accountQuery;
return getByEmail(query.getEmailAddress());
}
String msg = String.format("The query %s is not supported.", accountQuery.getClass().getName());
throw new UnsupportedOperationException(msg);
}
public Account getByAccountId(String accountId) {
return super.getByDocumentId(accountId);
}
public List getAll() {
return super.getEntities("byEmailAddress");
}
public Account getByEmail(String emailAddress) {
if (emailAddress == null) return null;
List response = super.getEntities("byEmailAddress", emailAddress);
return response.isEmpty() ? null : response.get(0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy