⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hasprivilege.py

📁 Network Administration Visualized 网络管理可视化源码
💻 PY
字号:
#!/usr/bin/env python# -*- coding: ISO8859-1 -*-## Copyright 2003, 2004 Norwegian University of Science and Technology## This file is part of Network Administration Visualized (NAV)## NAV 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 2 of the License, or# (at your option) any later version.## NAV 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 NAV; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA### $Id: hasPrivilege.py 3388 2006-03-14 12:32:56Z mortenv $# Authors: Morten Vold <morten.vold@itea.ntnu.no>#"""This script determines whether a NAV user has been granted a specificprivilege."""import sys, getoptimport nav, nav.authfrom nav import dbfrom nav.db import navprofilesfrom nav.db.navprofiles import Accountdef main(args):    (opts, args) = getopt.getopt(args, 'h', ['help'])    for (switch, arg) in opts:        if switch in ('-h', '--help'):            usage()            sys.exit(10)    if len(args) < 3:        print >> sys.stderr, "Not enough parameters, see help screen."        sys.exit(10)    (user, privilege, target) = args[:3]    # Make sure we have a proper database connection    try:        conn = db.getConnection('navprofile', 'navprofile')        cursor = conn.cursor()    except Exception, error:        print >> sys.stderr, "There was an error connecting to the database"        sys.exit(10)    # Make sure the specified login name has an existing account    try:        account = Account.loadByLogin(user)    except Exception, error:        print >> sys.stderr, "Could not find user '%s'" % user        sys.exit(10)            # Make use of the privilege system to discover whether the user    # has been granted the privilege that is being asked for    try:        answer = nav.auth.hasPrivilege(account, privilege, target)    except Exception, error:        print >> sys.stderr, "There was an error when asking for the privilege"        sys.exit(10)    if answer:        sys.exit(0)    else:        sys.exit(1)    def usage():    print >> sys.stderr, """Determine whether a NAV user has been granted a specific privilege.Mostly for internal NAV usage.Usage:  hasPrivilege.py subject action target  subject  - The login name of the user that requests the privilege  action   - The name of the privilege requested  target   - Specification of that the privilege is requested forExit codes:  If the privilege was granted, the return code is 0.  If not, the  return code is 1.  If the script encountered errors during privilege checking, the  return code will be > 1.Example: hasPrivilege.py admin web_access /useradmin/index"""############################### main execution begins here ###############################main(sys.argv[1:])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -