OBP-API/src/main/scala/code/model/dataAccess/Admin.scala
2019-01-16 15:29:18 +01:00

97 lines
2.9 KiB
Scala

/**
Open Bank Project - API
Copyright (C) 2011-2018, TESOBE Ltd.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Email: contact@tesobe.com
TESOBE Ltd.
Osloer Strasse 16/17
Berlin 13359, Germany
This product includes software developed at
TESOBE (http://www.tesobe.com/)
*/
package code.model.dataAccess
import net.liftweb.mapper._
import net.liftweb.common._
import net.liftweb.http.SessionVar
import net.liftweb.http.S
/**
* This class to handel the administration of the API, like the API OAuth keys.
*/
class Admin extends MegaProtoUser[Admin] {
def getSingleton = Admin // what's the "meta" server
}
object Admin extends Admin with MetaMegaProtoUser[Admin]{
override def dbTableName = "admins" // define the DB table name
//override some MetaMegaProtoUser fields to avoid conflicting urls/menus with AuthUser
override def basePath = "admin_mgt" :: Nil
override def menuNameSuffix = "Admin"
override def screenWrap = Full(<lift:surround with="default" at="content">
<lift:bind /></lift:surround>)
// define the order fields will appear in forms and output
override def fieldOrder = List(id, firstName, lastName, email,
locale, timezone, password)
// comment this line out to require email validations
// TODO Get this from Props
override def skipEmailValidation = true
//Keep track of the referer on login
object loginReferer extends SessionVar("/")
//This is where the user gets redirected to after login
override def homePage = {
val ret = loginReferer.is
loginReferer.remove()
ret
}
override def loginXhtml = {
(<form method="post" action={S.uri}><table><tr><td
colspan="2">Admin Log In</td></tr>
<tr><td>{userNameFieldString}</td><td><user:email /></td></tr>
<tr><td>{S.?("password")}</td><td><user:password /></td></tr>
<tr><td><a href={lostPasswordPath.mkString("/", "/", "")}
>{S.?("recover.password")}</a></td><td><user:submit /></td></tr></table>
</form>)
}
//disable the sign up page
override def createUserMenuLoc = Empty
// the admin edit page
override def editUserMenuLoc = Empty
//can only be done with manual intervention
override def resetPasswordMenuLoc = Empty
//Set the login referer
override def login = {
for(
r <- S.referer
if loginReferer.is.equals("/")
) loginReferer.set(r)
super.login
}
}