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

org.openurp.base.ws.UserWS.scala Maven / Gradle / Ivy

There is a newer version: 0.4.39
Show newest version
/*
 * Copyright (C) 2014, The OpenURP Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */

package org.openurp.base.ws

import org.beangle.commons.collection.page.PageLimit
import org.beangle.commons.collection.{Order, Properties}
import org.beangle.data.dao.{EntityDao, OqlBuilder}
import org.beangle.web.action.annotation.response
import org.beangle.web.action.support.ActionSupport
import org.beangle.webmvc.support.action.EntityAction
import org.beangle.webmvc.support.helper.QueryHelper
import org.openurp.base.hr.model.{Mentor, Staff, Teacher}
import org.openurp.base.model.User
import org.openurp.base.std.model.Student

class UserWS extends ActionSupport with EntityAction[User] {
  var entityDao: EntityDao = _

  @response
  def index(): Seq[Properties] = {
    val query = OqlBuilder.from(classOf[User], "user")
    if (!getBoolean("all", false)) query.where("user.endOn is null")
    QueryHelper.populate(query)
    query.limit(PageLimit(getInt(QueryHelper.PageParam, 1), getInt(QueryHelper.PageSizeParam, 100)))
    get("q") foreach { q =>
      val c = s"%${q}%"
      query.where("user.name like :c or user.code like :c", c)
    }
    getBoolean("isStaff") foreach { isTeacher =>
      query.where((if (isTeacher) "" else "not ") + " exists(from " + classOf[Staff].getName + "  t  where t.code=user.code)")
    }
    getBoolean("isMentor") foreach { isMentor =>
      query.where((if (isMentor) "" else "not ") + " exists(from " + classOf[Mentor].getName + "  t  where t.staff.code=user.code)")
    }
    getBoolean("isTeacher") foreach { isTeacher =>
      query.where((if (isTeacher) "" else "not ") + " exists(from " + classOf[Teacher].getName + "  t  where t.staff.code=user.code)")
    }
    getBoolean("isStd") foreach { isStd =>
      query.where((if (isStd) "" else "not ") + " exists(from " + classOf[Student].getName + "  t  where t.code=user.code)")
    }
    getBoolean("isTutor") foreach { isTutor =>
      query.where((if (isTutor) "" else "not ") + " exists(from " + classOf[Teacher].getName + "  t  where t.staff.code=user.code and t.tutorType is not null)")
    }
    val orderStr = get(Order.OrderStr).getOrElse("user.name")
    query.orderBy(orderStr)
    entityDao.search(query).map { t =>
      val user = new Properties(t, "id", "code", "name", "description")
      user.add("department", t.department, "id", "code", "name")
      user
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy