com.esofthead.mycollab.module.project.service.ibatis.StandupReportServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.esofthead.mycollab.module.project.service.ibatis.StandupReportServiceImpl.java

Source

/**
 * This file is part of mycollab-services.
 *
 * mycollab-services 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.
 *
 * mycollab-services 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 mycollab-services.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.esofthead.mycollab.module.project.service.ibatis;

import java.util.Date;
import java.util.List;

import org.apache.commons.collections.CollectionUtils;
import org.apache.ibatis.session.RowBounds;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.esofthead.mycollab.cache.CacheUtils;
import com.esofthead.mycollab.common.ModuleNameConstants;
import com.esofthead.mycollab.common.domain.GroupItem;
import com.esofthead.mycollab.common.interceptor.aspect.Traceable;
import com.esofthead.mycollab.core.arguments.DateSearchField;
import com.esofthead.mycollab.core.arguments.NumberSearchField;
import com.esofthead.mycollab.core.arguments.SearchField;
import com.esofthead.mycollab.core.arguments.StringSearchField;
import com.esofthead.mycollab.core.cache.CacheKey;
import com.esofthead.mycollab.core.persistence.ICrudGenericDAO;
import com.esofthead.mycollab.core.persistence.ISearchableDAO;
import com.esofthead.mycollab.core.persistence.service.DefaultService;
import com.esofthead.mycollab.module.project.ProjectTypeConstants;
import com.esofthead.mycollab.module.project.dao.StandupReportMapper;
import com.esofthead.mycollab.module.project.dao.StandupReportMapperExt;
import com.esofthead.mycollab.module.project.domain.SimpleStandupReport;
import com.esofthead.mycollab.module.project.domain.StandupReportWithBLOBs;
import com.esofthead.mycollab.module.project.domain.criteria.StandupReportSearchCriteria;
import com.esofthead.mycollab.module.project.service.ProjectActivityStreamService;
import com.esofthead.mycollab.module.project.service.StandupReportService;
import com.esofthead.mycollab.module.user.domain.SimpleUser;

/**
 * 
 * @author MyCollab Ltd.
 * @since 1.0
 * 
 */
@Service
@Transactional
@Traceable(module = ModuleNameConstants.PRJ, nameField = "forday", type = ProjectTypeConstants.STANDUP, extraFieldName = "projectid")
public class StandupReportServiceImpl
        extends DefaultService<Integer, StandupReportWithBLOBs, StandupReportSearchCriteria>
        implements StandupReportService {
    @Autowired
    private StandupReportMapper standupReportMapper;
    @Autowired
    private StandupReportMapperExt standupReportMapperExt;

    @Override
    public SimpleStandupReport findById(int standupId, int sAccountId) {
        return standupReportMapperExt.findReportById(standupId);
    }

    @Override
    public ICrudGenericDAO getCrudMapper() {
        return standupReportMapper;
    }

    @Override
    public ISearchableDAO<StandupReportSearchCriteria> getSearchMapper() {
        return standupReportMapperExt;
    }

    @Override
    public SimpleStandupReport findStandupReportByDateUser(int projectId, String username, Date onDate,
            Integer sAccountId) {
        StandupReportSearchCriteria criteria = new StandupReportSearchCriteria();
        criteria.setProjectId(new NumberSearchField(projectId));
        criteria.setLogBy(new StringSearchField(SearchField.AND, username));
        criteria.setOnDate(new DateSearchField(SearchField.AND, onDate));
        List reports = standupReportMapperExt.findPagableListByCriteria(criteria,
                new RowBounds(0, Integer.MAX_VALUE));

        if (CollectionUtils.isNotEmpty(reports)) {
            return (SimpleStandupReport) reports.get(0);
        }

        return null;
    }

    @Override
    public int saveWithSession(StandupReportWithBLOBs record, String username) {
        CacheUtils.cleanCaches(record.getSaccountid(), ProjectActivityStreamService.class);
        return super.saveWithSession(record, username);
    }

    @Override
    public int updateWithSession(StandupReportWithBLOBs record, String username) {
        CacheUtils.cleanCaches(record.getSaccountid(), ProjectActivityStreamService.class);
        return super.updateWithSession(record, username);
    }

    @Override
    public int removeWithSession(Integer primaryKey, String username, int accountId) {
        CacheUtils.cleanCaches(accountId, ProjectActivityStreamService.class);
        return super.removeWithSession(primaryKey, username, accountId);
    }

    @Override
    public List<GroupItem> getReportsCount(StandupReportSearchCriteria criteria) {
        return standupReportMapperExt.getReportsCount(criteria);
    }

    @Override
    public List<SimpleUser> findUsersNotDoReportYet(int projectId, Date onDate, @CacheKey Integer sAccountId) {

        return standupReportMapperExt.findUsersNotDoReportYet(projectId, onDate);
    }

}