summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-05 21:28:29 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-05 21:28:29 +0000
commit1fce1487f9ba85aeee36178c4efadbc983b612cc (patch)
tree85d9d992042ce4896233eb037ef5014886cdc54b /ipalib/plugins.py
parent175dfc121a99ad60523a752e5c600ed809712789 (diff)
downloadfreeipa.git-1fce1487f9ba85aeee36178c4efadbc983b612cc.tar.gz
freeipa.git-1fce1487f9ba85aeee36178c4efadbc983b612cc.tar.xz
freeipa.git-1fce1487f9ba85aeee36178c4efadbc983b612cc.zip
51: Moved old_plugins.py back to plugins.py
Diffstat (limited to 'ipalib/plugins.py')
-rw-r--r--ipalib/plugins.py136
1 files changed, 136 insertions, 0 deletions
diff --git a/ipalib/plugins.py b/ipalib/plugins.py
new file mode 100644
index 00000000..85f3a9f4
--- /dev/null
+++ b/ipalib/plugins.py
@@ -0,0 +1,136 @@
+# Authors:
+# Jason Gerard DeRose <jderose@redhat.com>
+#
+# Copyright (C) 2008 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program 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; version 2 only
+#
+# 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""
+Some example plugins.
+"""
+
+import crud
+import base
+from run import api
+
+
+# Hypothetical functional commands (not associated with any object):
+class krbtest(base.Command):
+ def get_doc(self, _):
+ return _('test your Kerberos ticket')
+api.register(krbtest)
+
+class discover(base.Command):
+ def get_doc(self, _):
+ return _('discover IPA servers on network')
+api.register(discover)
+
+
+# Register some methods for the 'user' object:
+class user__add(crud.Add):
+ def get_doc(self, _):
+ return _('add new user')
+api.register(user__add)
+
+class user__del(crud.Del):
+ def get_doc(self, _):
+ return _('delete existing user')
+api.register(user__del)
+
+class user__mod(crud.Mod):
+ def get_doc(self, _):
+ return _('edit existing user')
+api.register(user__mod)
+
+class user__find(crud.Find):
+ def get_doc(self, _):
+ return _('search for users')
+api.register(user__find)
+
+
+# Register some properties for the 'user' object:
+class user__firstname(base.Property):
+ pass
+api.register(user__firstname)
+
+class user__lastname(base.Property):
+ pass
+api.register(user__lastname)
+
+class user__login(base.Property):
+ pass
+api.register(user__login)
+
+
+# Register some methods for the 'group' object:
+class group__add(crud.Add):
+ def get_doc(self, _):
+ return _('add new group')
+api.register(group__add)
+
+class group__del(crud.Del):
+ def get_doc(self, _):
+ return _('delete existing group')
+api.register(group__del)
+
+class group__mod(crud.Mod):
+ def get_doc(self, _):
+ return _('exit existing group')
+api.register(group__mod)
+
+class group__find(crud.Find):
+ def get_doc(self, _):
+ return _('search for groups')
+api.register(group__find)
+
+
+# Register some methods for the 'service' object
+class service__add(crud.Add):
+ def get_doc(self, _):
+ return _('add new service')
+api.register(service__add)
+
+class service__del(crud.Del):
+ def get_doc(self, _):
+ return _('delete existing service')
+api.register(service__del)
+
+class service__mod(crud.Mod):
+ def get_doc(self, _):
+ return _('edit existing service')
+api.register(service__mod)
+
+class service__find(crud.Find):
+ def get_doc(self, _):
+ return _('search for services')
+api.register(service__find)
+
+
+# And to emphasis that the registration order doesn't matter,
+# we'll register the objects last:
+class group(base.Object):
+ def get_doc(self, _):
+ return _('')
+api.register(group)
+
+class service(base.Object):
+ def get_doc(self, _):
+ return _('')
+api.register(service)
+
+class user(base.Object):
+ def get_doc(self, _):
+ return _('')
+api.register(user)