Skip to main content

Create groups as if by super

Project description

Introduction
============

This is a PAS plugin that makes it possible to create groups "on the fly" for
users via subscription adapters and utilities.

The plugin can be installed using a GenericSetup extension profile.

For example, say you have an LDAP repository where a user property contains a
user's business unit. If this is mapped as a user property, you can write a
subscription adapter that adapts the user to ISuperGroups. It would look up
this property on a user and return a list of group ids that corresponds to the
value of the property. When Plone lists a user's groups or assigns roles based
on a user's groups, the user will appear to be a member of this group.

For example::

from zope.interface import implements
from zope.component import adapts

from borg.supergroup.interfaces import ISuperGroups
from Products.PluggableAuthService.interfaces.authservice import IBasicUser

class ImpliedGroups(object):
implements(ISuperGroups)
adapts(IBasicUser)

def __init__(self, context):
self.principal = context

def __call__(self):
implied = self.principal.getProperty('implied_group', '')
if implied:
yield implied

This can be registered in ZCML with::

<subscriber factory=".groups.ImpliedGroups" />

This is a simple example that looks for an implied group in the
'implied_groups' user property. Of course, you could source the group(s) from
wherever you want. The return value should be an iterable (here we use a
generator).

To make implied groups show up in general group listings (e.g. on the
'Sharing' tab in the Plone user interface), you could write a named utility
providing ISuperGroupsEnumeration. This will be passed some search parameters,
and should return any implied groups if they can be matched to the search
parameters.

For example::

from zope.interface import implements
from zope.component import adapts

from borg.supergroup.interfaces import ISuperGroupsEnumeration

class ImpliedGroupsEnumeration(object):
implements(ISuperGroupsEnumeration)

def enumerate_groups(self, id=None, exact_match=False, **kw):
if (exact_match and id == 'Alpha') or (not exact_match and id in 'Alpha'):
yield dict(id='Alpha', title='Alpha Group')

In ZCML, this would be registered with::

<utility
factory=".groups.ImpliedGroupsEnumeration"
name="my.implied.groups"
/>

For more examples, see the tests in integration.txt and the interface
declarations in interfaces.py.
Changelog
=========

1.0b1 - Unreleased
----------------

* Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

borg.supergroup-1.0rc1.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

borg.supergroup-1.0rc1-py2.4.egg (17.1 kB view details)

Uploaded Source

File details

Details for the file borg.supergroup-1.0rc1.tar.gz.

File metadata

File hashes

Hashes for borg.supergroup-1.0rc1.tar.gz
Algorithm Hash digest
SHA256 75dd7d9d1500ce4b3fe470c2420c9622c8eb2516d57f517e428c4b73ed063ebe
MD5 504abcc0d3870d694faa8ce1e9d45d86
BLAKE2b-256 3a6fcf35732b7d44fb4cbb26bfedc432ffcfce6d03a6e26cdda971869d6b6729

See more details on using hashes here.

File details

Details for the file borg.supergroup-1.0rc1-py2.4.egg.

File metadata

File hashes

Hashes for borg.supergroup-1.0rc1-py2.4.egg
Algorithm Hash digest
SHA256 a80cc6f809bf597ee2451bcbf73cb742af6c8be4f572877453d79cd78b64257d
MD5 49268883b732e45d3cd4a2276869acca
BLAKE2b-256 b85c755b3f018f14328119de88bda69edec05c625eeb5fd622e91f017986bf6d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page