All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.web.data.service.impl.WebThemeServiceImpl Maven / Gradle / Ivy

package com.haoxuer.discover.web.data.service.impl;

import com.haoxuer.discover.web.data.entity.WebTheme;
import com.haoxuer.discover.data.core.Updater;
import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import com.haoxuer.discover.data.utils.FilterUtils;
import com.haoxuer.discover.web.data.dao.WebThemeDao;
import com.haoxuer.discover.web.data.service.WebThemeService;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;


/**
 * Created by imake on 2017年08月30日10:16:29.
 */


@Scope("prototype")
@Service
@Transactional
public class WebThemeServiceImpl implements WebThemeService {

  private WebThemeDao dao;


  @Override
  @Transactional(readOnly = true)
  public WebTheme findById(String id) {
    return dao.findById(id);
  }

  @Override
  public WebTheme key(String name) {
    WebTheme theme = dao.findById(name);
    if (theme == null) {
      theme = new WebTheme();
      theme.setId(name);
      theme.setName(name);
      theme.setPath(name);
      theme.setScreenShot(name+"/screenshot.png");
      dao.save(theme);
    }
    return theme;
  }


  @Override
  @Transactional
  public WebTheme save(WebTheme bean) {
    dao.save(bean);
    return bean;
  }

  @Override
  @Transactional
  public WebTheme update(WebTheme bean) {
    Updater updater = new Updater(bean);
    return dao.updateByUpdater(updater);
  }

  @Override
  @Transactional
  public WebTheme deleteById(String id) {
    WebTheme bean = dao.findById(id);
    dao.deleteById(id);
    return bean;
  }

  @Override
  @Transactional
  public WebTheme[] deleteByIds(String[] ids) {
    WebTheme[] beans = new WebTheme[ids.length];
    for (int i = 0, len = ids.length; i < len; i++) {
      beans[i] = deleteById(ids[i]);
    }
    return beans;
  }


  @Autowired
  public void setDao(WebThemeDao dao) {
    this.dao = dao;
  }

  @Override
  public Page page(Pageable pageable) {
    return dao.page(pageable);
  }


  @Override
  public Page page(Pageable pageable, Object search) {
    List filters = FilterUtils.getFilters(search);
    if (filters != null) {
      pageable.getFilters().addAll(filters);
    }
    return dao.page(pageable);
  }

  @Override
  public List list(int first, Integer size, List filters, List orders) {
    return dao.list(first, size, filters, orders);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy