/*
* Symphony - A modern community (forum/SNS/blog) platform written in Java.
* Copyright (C) 2012-2017, b3log.org & hacpai.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.b3log.symphony.repository;
import org.b3log.latke.Keys;
import org.b3log.latke.ioc.inject.Inject;
import org.b3log.latke.model.User;
import org.b3log.latke.repository.*;
import org.b3log.latke.repository.annotation.Repository;
import org.b3log.latke.util.CollectionUtils;
import org.b3log.symphony.cache.UserCache;
import org.b3log.symphony.model.Role;
import org.json.JSONArray;
import org.json.JSONObject;
import java.util.List;
/**
* User repository.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 2.1.1.4, Apr 20, 2016
* @since 0.2.0
*/
@Repository
public class UserRepository extends AbstractRepository {
/**
* User cache.
*/
@Inject
private UserCache userCache;
/**
* Public constructor.
*/
public UserRepository() {
super(User.USER);
}
@Override
public JSONObject get(final String id) throws RepositoryException {
JSONObject ret = userCache.getUser(id);
if (null != ret) {
return ret;
}
ret = super.get(id);
if (null == ret) {
return null;
}
userCache.putUser(ret);
return ret;
}
@Override
public void update(final String id, final JSONObject user) throws RepositoryException {
super.update(id, user);
user.put(Keys.OBJECT_ID, id);
userCache.putUser(user);
}
/**
* Gets a user by the specified name.
*
* @param name the specified name
* @return user, returns {@code null} if not found
* @throws RepositoryException repository exception
*/
public JSONObject getByName(final String name) throws RepositoryException {
JSONObject ret = userCache.getUserByName(name);
if (null != ret) {
return ret;
}
final Query query = new Query().setPageCount(1);
query.setFilter(new PropertyFilter(User.USER_NAME, FilterOperator.EQUAL, name));
final JSONObject result = get(query);
final JSONArray array = result.optJSONArray(Keys.RESULTS);
if (0 == array.length()) {
return null;
}
ret = array.optJSONObject(0);
userCache.putUser(ret);
return ret;
}
/**
* Gets a user by the specified email.
*
* @param email the specified email
* @return user, returns {@code null} if not found
* @throws RepositoryException repository exception
*/
public JSONObject getByEmail(final String email) throws RepositoryException {
final Query query = new Query().setPageCount(1);
query.setFilter(new PropertyFilter(User.USER_EMAIL, FilterOperator.EQUAL, email.toLowerCase().trim()));
final JSONObject result = get(query);
final JSONArray array = result.optJSONArray(Keys.RESULTS);
if (0 == array.length()) {
return null;
}
return array.optJSONObject(0);
}
/**
* Gets the administrators.
*
* @return administrators, returns an empty list if not found or error
* @throws RepositoryException repository exception
*/
public List<JSONObject> getAdmins() throws RepositoryException {
final Query query = new Query().setFilter(
new PropertyFilter(User.USER_ROLE, FilterOperator.EQUAL, Role.ROLE_ID_C_ADMIN)).setPageCount(1)
.addSort(Keys.OBJECT_ID, SortDirection.ASCENDING);
final JSONObject result = get(query);
final JSONArray array = result.optJSONArray(Keys.RESULTS);
return CollectionUtils.<JSONObject>jsonArrayToList(array);
}
/**
* Determine whether the specified email is administrator's.
*
* @param email the specified email
* @return {@code true} if it is administrator's email, {@code false} otherwise
* @throws RepositoryException repository exception
*/
public boolean isAdminEmail(final String email) throws RepositoryException {
final JSONObject user = getByEmail(email);
if (null == user) {
return false;
}
return Role.ROLE_ID_C_ADMIN.equals(user.optString(User.USER_ROLE));
}
}