users_group.py
92 lines
| 2.8 KiB
| text/x-python
|
PythonLexer
Nicolas VINOT
|
r1586 | # -*- coding: utf-8 -*- | ||
""" | ||||
rhodecode.model.users_group | ||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||
users group model for RhodeCode | ||||
:created_on: Oct 1, 2011 | ||||
:author: nvinot | ||||
:copyright: (C) 2011-2011 Nicolas Vinot <aeris@imirhil.fr> | ||||
:license: GPLv3, see COPYING for more details. | ||||
""" | ||||
# 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, either version 3 of the License, or | ||||
# (at your option) any later version. | ||||
# | ||||
# 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, see <http://www.gnu.org/licenses/>. | ||||
import logging | ||||
import traceback | ||||
r1692 | from rhodecode.model import BaseModel | |||
Nicolas VINOT
|
r1586 | from rhodecode.model.db import UsersGroupMember, UsersGroup | ||
Nicolas VINOT
|
r1593 | log = logging.getLogger(__name__) | ||
Nicolas VINOT
|
r1586 | |||
r1716 | ||||
Nicolas VINOT
|
r1593 | class UsersGroupModel(BaseModel): | ||
Nicolas VINOT
|
r1586 | |||
r1713 | def __get_users_group(self, users_group): | |||
r1716 | return self._get_instance(UsersGroup, users_group) | |||
r1713 | ||||
r1716 | def get(self, users_group_id, cache=False): | |||
r1713 | return UsersGroup.get(users_group_id) | |||
Nicolas VINOT
|
r1586 | |||
r1716 | def get_by_name(self, name, cache=False, case_insensitive=False): | |||
r1713 | return UsersGroup.get_by_group_name(name, cache, case_insensitive) | |||
Nicolas VINOT
|
r1586 | |||
Nicolas VINOT
|
r1593 | def create(self, form_data): | ||
Nicolas VINOT
|
r1586 | try: | ||
new_users_group = UsersGroup() | ||||
for k, v in form_data.items(): | ||||
Nicolas VINOT
|
r1593 | setattr(new_users_group, k, v) | ||
Nicolas VINOT
|
r1586 | |||
Nicolas VINOT
|
r1593 | self.sa.add(new_users_group) | ||
Nicolas VINOT
|
r1586 | self.sa.commit() | ||
return new_users_group | ||||
except: | ||||
Nicolas VINOT
|
r1593 | log.error(traceback.format_exc()) | ||
Nicolas VINOT
|
r1586 | self.sa.rollback() | ||
raise | ||||
r1713 | ||||
def create_(self, name, active=True): | ||||
new = UsersGroup() | ||||
new.users_group_name = name | ||||
new.users_group_active = active | ||||
self.sa.add(new) | ||||
return new | ||||
def delete(self, users_group): | ||||
obj = self.__get_users_group(users_group) | ||||
self.sa.delete(obj) | ||||
Nicolas VINOT
|
r1593 | def add_user_to_group(self, users_group, user): | ||
Nicolas VINOT
|
r1589 | for m in users_group.members: | ||
u = m.user | ||||
if u.user_id == user.user_id: | ||||
return m | ||||
Nicolas VINOT
|
r1586 | try: | ||
users_group_member = UsersGroupMember() | ||||
users_group_member.user = user | ||||
users_group_member.users_group = users_group | ||||
Nicolas VINOT
|
r1593 | users_group.members.append(users_group_member) | ||
user.group_member.append(users_group_member) | ||||
Nicolas VINOT
|
r1587 | |||
Nicolas VINOT
|
r1593 | self.sa.add(users_group_member) | ||
Nicolas VINOT
|
r1586 | self.sa.commit() | ||
return users_group_member | ||||
except: | ||||
Nicolas VINOT
|
r1593 | log.error(traceback.format_exc()) | ||
Nicolas VINOT
|
r1586 | self.sa.rollback() | ||
Nicolas VINOT
|
r1587 | raise | ||