forked from bennylope/django-organizations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
102 lines (82 loc) · 3.91 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2015, Ben Lopatin and contributors
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer. Redistributions in binary
# form must reproduce the above copyright notice, this list of conditions and the
# following disclaimer in the documentation and/or other materials provided with
# the distribution
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from itertools import chain
def default_org_model():
"""Encapsulates importing the concrete model"""
from organizations.models import Organization
return Organization
def model_field_names(model):
"""
Returns a list of field names in the model
Direct from Django upgrade migration guide.
"""
return list(set(chain.from_iterable(
(field.name, field.attname) if hasattr(field, 'attname') else (field.name,)
for field in model._meta.get_fields()
if not (field.many_to_one and field.related_model is None)
)))
def create_organization(user, name, slug=None, is_active=None, org_defaults=None, org_user_defaults=None, **kwargs):
"""
Returns a new organization, also creating an initial organization user who
is the owner.
The specific models can be specified if a custom organization app is used.
The simplest way would be to use a partial.
>>> from organizations.utils import create_organization
>>> from myapp.models import Account
>>> from functools import partial
>>> create_account = partial(create_organization, model=Account)
"""
org_model = kwargs.pop('model', None) or kwargs.pop('org_model', None) or default_org_model()
kwargs.pop('org_user_model', None) # Discard deprecated argument
org_owner_model = org_model.owner.related.related_model
try:
# Django 1.9
org_user_model = org_model.organization_users.rel.related_model
except AttributeError:
# Django 1.8
org_user_model = org_model.organization_users.related.related_model
if org_defaults is None:
org_defaults = {}
if org_user_defaults is None:
if 'is_admin' in model_field_names(org_user_model):
org_user_defaults = {'is_admin': True}
else:
org_user_defaults = {}
if slug is not None:
org_defaults.update({'slug': slug})
if is_active is not None:
org_defaults.update({'is_active': is_active})
org_defaults.update({'name': name})
organization = org_model.objects.create(**org_defaults)
org_user_defaults.update({'organization': organization, 'user': user})
new_user = org_user_model.objects.create(**org_user_defaults)
org_owner_model.objects.create(organization=organization,
organization_user=new_user)
return organization
def model_field_attr(model, model_field, attr):
"""
Returns the specified attribute for the specified field on the model class.
"""
fields = dict([(field.name, field) for field in model._meta.fields])
return getattr(fields[model_field], attr)