|
Lift Framework example source code file (Role.scala)
The Lift Framework Role.scala source code/* * Copyright 2007-2011 WorldWide Conferencing, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.liftweb package http package auth import net.liftweb.common.{Box, Full, Empty} object AuthRole { def apply(roleName: String): Role = new Role { def name = roleName } def apply(roleNames: String*): List[Role] = roleNames.toList.map(n => new Role { def name = n }) def apply(roleName: String, roles: Role*): Role = new Role { def name = roleName }.addRoles(roles: _*) } /** * A Role may be assingned to a resource denominated by a path. A subject * that is assigned to the same role or to a role higher into the roles hierarchy * will have access to requested resource. */ trait Role { private var parent: Box[Role] = Empty private var childs: List[Role] = Nil /** * The name ofthe role */ def name: String /** * Add child Role(s) to this role. Node name is ensured to be unique (by name) * in the tree. */ def addRoles(roles: Role*) = { for (role <- roles) { getRoleByName(role.name) match { case Empty => childs = role :: childs role.parent = Full(this) case _ => } } this } /** * Returns the child nodes */ def getChildRoles = childs /** * Retuns the parent node */ def getParent = parent /** * Search for a child Role with this name */ def getRoleByName(roleName: String): Box[Role] = (this.name == roleName) match { case false => childs.find(role => role.getRoleByName(roleName) match { case Empty => false case theRole@_ => return theRole }) Empty case _ => Full(this) } /** * Removes the child Role */ def removeRoleByName(roleName: String): Box[Role] = { getRoleByName(roleName).map(_.detach) openOr Empty } /** * Removes this Role from its parent */ def detach: Box[Role] = { this.parent.map { case p => p.childs = p.childs.filter(role => role.name != this.name) this.parent = Empty this } } /** * Verifies if this Role is a child of a role having the name <i>roleName */ def isChildOf(roleName: String): Boolean = (this.name == roleName) match { case true => return true case _ => this.parent.map(_ isChildOf (roleName)) openOr false } /** * Verifies if this Role is the parent of the given Role */ def isParentOf(roleName: String): Boolean = !this.getRoleByName(roleName).isEmpty override def toString = { var str = "Role(" + name; for (role <- childs) { str = str + ", " + role.toString } str + ")" } } Other Lift Framework examples (source code examples)Here is a short list of links related to this Lift Framework Role.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.