/*
* 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.service;
import org.b3log.latke.ioc.inject.Inject;
import org.b3log.latke.logging.Level;
import org.b3log.latke.logging.Logger;
import org.b3log.latke.repository.*;
import org.b3log.latke.service.annotation.Service;
import org.b3log.symphony.model.Reward;
import org.b3log.symphony.repository.RewardRepository;
import java.util.ArrayList;
import java.util.List;
/**
* Reward query service.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.0.1, Oct 17, 2015
* @since 1.3.0
*/
@Service
public class RewardQueryService {
/**
* Logger.
*/
private static final Logger LOGGER = Logger.getLogger(RewardQueryService.class);
/**
* Reward repository.
*/
@Inject
private RewardRepository rewardRepository;
/**
* Gets rewarded count.
*
* @param dataId the specified data id
* @param type the specified type
* @return rewarded count
*/
public long rewardedCount(final String dataId, final int type) {
final Query query = new Query();
final List<Filter> filters = new ArrayList<>();
filters.add(new PropertyFilter(Reward.DATA_ID, FilterOperator.EQUAL, dataId));
filters.add(new PropertyFilter(Reward.TYPE, FilterOperator.EQUAL, type));
query.setFilter(new CompositeFilter(CompositeFilterOperator.AND, filters));
try {
return rewardRepository.count(query);
} catch (final RepositoryException e) {
LOGGER.log(Level.ERROR, "Rewarded count error", e);
return 0;
}
}
/**
* Determines the user specified by the given user id has rewarded the data (article/comment/user) or not.
*
* @param userId the specified user id
* @param dataId the specified data id
* @param type the specified type
* @return {@code true} if has rewared
*/
public boolean isRewarded(final String userId, final String dataId, final int type) {
final Query query = new Query();
final List<Filter> filters = new ArrayList<>();
filters.add(new PropertyFilter(Reward.SENDER_ID, FilterOperator.EQUAL, userId));
filters.add(new PropertyFilter(Reward.DATA_ID, FilterOperator.EQUAL, dataId));
filters.add(new PropertyFilter(Reward.TYPE, FilterOperator.EQUAL, type));
query.setFilter(new CompositeFilter(CompositeFilterOperator.AND, filters));
try {
return 0 != rewardRepository.count(query);
} catch (final RepositoryException e) {
LOGGER.log(Level.ERROR, "Determines reward error", e);
return false;
}
}
}