[nanny/win32: 35/75] Add check_win32_admin to nanny.client.common.Utils
- From: Roberto Majadas <telemaco src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nanny/win32: 35/75] Add check_win32_admin to nanny.client.common.Utils
- Date: Tue, 2 Nov 2010 18:53:54 +0000 (UTC)
commit 74ee77907edd764595b8b6569c4ed148e97193ac
Author: Roberto Majadas <roberto majadas openshine com>
Date: Sat Sep 25 18:55:03 2010 +0200
Add check_win32_admin to nanny.client.common.Utils
client/common/src/Utils.py | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
---
diff --git a/client/common/src/Utils.py b/client/common/src/Utils.py
index 4873fec..bb7aa65 100644
--- a/client/common/src/Utils.py
+++ b/client/common/src/Utils.py
@@ -24,6 +24,7 @@
# USA
import os
+import sys
import gtk
def ui_magic(object, ui_file, prefix):
@@ -58,3 +59,20 @@ def ui_magic(object, ui_file, prefix):
exec ('object.%s = widget' % widget_name)
except:
print "Something fails at ui_magic"
+
+def check_win32_admin():
+ import win32security
+ import ntsecuritycon
+ subAuths = ntsecuritycon.SECURITY_BUILTIN_DOMAIN_RID, \
+ ntsecuritycon.DOMAIN_ALIAS_RID_ADMINS
+ sidAdmins = win32security.SID(ntsecuritycon.SECURITY_NT_AUTHORITY, subAuths)
+ if win32security.CheckTokenMembership(None, sidAdmins) == False:
+ msg = gtk.MessageDialog(parent=None, flags=0,
+ type=gtk.MESSAGE_INFO,
+ buttons=gtk.BUTTONS_CLOSE, message_format=None)
+ msg.set_markup(u"<b>%s</b>" % _(u"Nanny Admin Tools requires Admin user"))
+ msg.format_secondary_markup(_(u"To run any Nanny Admin Tool you must to be admin of the system."))
+ ret = msg.run()
+ msg.destroy()
+
+ sys.exit(0)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]