2018-07-03 06:22:58 +00:00
|
|
|
|
# Calendar.social
|
|
|
|
|
# Copyright (C) 2018 Gergely Polonkai
|
|
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
"""Database models for Calendar.social
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-28 12:41:14 +00:00
|
|
|
|
from datetime import datetime
|
2018-07-09 06:32:27 +00:00
|
|
|
|
from enum import Enum
|
2018-07-03 10:06:22 +00:00
|
|
|
|
from warnings import warn
|
2018-06-28 12:41:14 +00:00
|
|
|
|
|
2018-07-04 04:30:59 +00:00
|
|
|
|
from flask_babelex import lazy_gettext
|
2018-06-28 12:41:14 +00:00
|
|
|
|
from flask_security import UserMixin, RoleMixin
|
|
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2018-07-03 08:51:43 +00:00
|
|
|
|
from sqlalchemy.orm.exc import NoResultFound
|
2018-07-04 04:30:59 +00:00
|
|
|
|
from sqlalchemy_utils.types.choice import ChoiceType
|
|
|
|
|
|
|
|
|
|
from .utils import force_locale
|
2018-06-28 12:41:14 +00:00
|
|
|
|
|
|
|
|
|
db = SQLAlchemy()
|
|
|
|
|
users_roles = db.Table(
|
|
|
|
|
'users_roles',
|
|
|
|
|
db.Column('user_id', db.Integer(), db.ForeignKey('users.id')),
|
|
|
|
|
db.Column('role_id', db.Integer(), db.ForeignKey('roles.id')))
|
|
|
|
|
|
|
|
|
|
|
2018-07-09 10:11:15 +00:00
|
|
|
|
def generate_uuid():
|
2018-07-09 16:04:12 +00:00
|
|
|
|
"""Generate a UUID (version 4)
|
|
|
|
|
|
|
|
|
|
:returns: the hexadecimal representation of the generated UUID
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-09 10:11:15 +00:00
|
|
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
|
|
return uuid4().hex
|
|
|
|
|
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
def _(translate): # pylint: disable=invalid-name
|
|
|
|
|
"""Function to mark strings as translatable
|
|
|
|
|
|
|
|
|
|
The actual translation will be fetched later in `:meth:AuditLog.get_message`.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
return translate
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NotificationAction(Enum):
|
2018-07-09 16:04:12 +00:00
|
|
|
|
"""The possible values for notification actions
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
#: A user followed another
|
2018-07-09 06:32:27 +00:00
|
|
|
|
follow = 1
|
|
|
|
|
|
2018-07-09 15:16:47 +00:00
|
|
|
|
#: A user has been invited to an event
|
|
|
|
|
invite = 2
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
|
2018-07-09 16:04:12 +00:00
|
|
|
|
NOTIFICATION_ACTION_MESSAGES = {
|
2018-07-09 15:16:47 +00:00
|
|
|
|
NotificationAction.follow: (_('%(actor)s followed you'), _('%(actor)s followed %(item)s')),
|
|
|
|
|
NotificationAction.invite: (None, _('%(actor)s invited you to %(item)s')),
|
2018-07-09 06:32:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-07-08 16:52:35 +00:00
|
|
|
|
class ResponseType(Enum):
|
|
|
|
|
"""Enumeration of event availabilities
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
#: The user is about to attend the event
|
|
|
|
|
going = 0
|
|
|
|
|
|
|
|
|
|
#: The user will probably attend the event
|
|
|
|
|
probably_going = 1
|
|
|
|
|
|
|
|
|
|
#: The user is interested in the event, but might not go
|
|
|
|
|
probably_not_going = 2
|
|
|
|
|
|
|
|
|
|
#: The user won’t attend the event
|
|
|
|
|
not_going = 3
|
|
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
|
return Enum.__hash__(self)
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
if isinstance(other, str):
|
|
|
|
|
return self.name.lower() == other.lower() # pylint: disable=no-member
|
|
|
|
|
|
|
|
|
|
if isinstance(other, (int, float)):
|
|
|
|
|
return self.value == other
|
|
|
|
|
|
|
|
|
|
return Enum.__eq__(self, other)
|
|
|
|
|
|
|
|
|
|
|
2018-07-03 08:51:43 +00:00
|
|
|
|
class SettingsProxy:
|
|
|
|
|
"""Proxy object to get settings for a user
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, user):
|
|
|
|
|
self.user = user
|
|
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
|
setting = UserSetting.query \
|
|
|
|
|
.filter(UserSetting.user == self.user) \
|
|
|
|
|
.filter(UserSetting.key == key) \
|
|
|
|
|
.first()
|
|
|
|
|
|
|
|
|
|
if setting is None:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
return setting.value
|
|
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
|
try:
|
|
|
|
|
setting = UserSetting.query \
|
|
|
|
|
.filter(UserSetting.user == self.user) \
|
|
|
|
|
.filter(UserSetting.key == key) \
|
|
|
|
|
.one()
|
|
|
|
|
except NoResultFound:
|
|
|
|
|
setting = UserSetting(user=self.user, key=key)
|
|
|
|
|
|
|
|
|
|
setting.value = str(value)
|
|
|
|
|
db.session.add(setting)
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
return f'<SettingsProxy for {self.user}>'
|
|
|
|
|
|
|
|
|
|
|
2018-06-28 12:41:14 +00:00
|
|
|
|
class User(db.Model, UserMixin):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Database model for users
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-28 12:41:14 +00:00
|
|
|
|
__tablename__ = 'users'
|
2018-07-03 06:33:49 +00:00
|
|
|
|
# pylint: disable=invalid-name
|
2018-06-28 12:41:14 +00:00
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
|
|
|
|
#: The username of the user. This is also the display name and thus is immutable
|
|
|
|
|
username = db.Column(db.String(length=50), unique=True, nullable=False)
|
|
|
|
|
|
|
|
|
|
#: The email address of the user
|
|
|
|
|
email = db.Column(db.String(length=255), unique=True, nullable=True)
|
|
|
|
|
|
|
|
|
|
#: The (hashed) password of the user
|
|
|
|
|
password = db.Column(db.String(length=255))
|
|
|
|
|
|
|
|
|
|
#: A flag to show whether the user is enabled (active) or not
|
|
|
|
|
active = db.Column(db.Boolean(), default=False)
|
|
|
|
|
|
|
|
|
|
#: The timestamp when this user was created
|
|
|
|
|
created_at = db.Column(db.DateTime(), default=datetime.utcnow)
|
|
|
|
|
|
|
|
|
|
#: The timestamp when the user was activated
|
|
|
|
|
confirmed_at = db.Column(db.DateTime())
|
|
|
|
|
|
|
|
|
|
#: The roles of the user
|
|
|
|
|
roles = db.relationship('Role',
|
|
|
|
|
secondary=users_roles,
|
|
|
|
|
backref=db.backref('users', lazy='dynamic'))
|
|
|
|
|
|
2018-07-03 08:51:43 +00:00
|
|
|
|
@property
|
|
|
|
|
def settings(self):
|
|
|
|
|
"""Get a settings proxy for the user
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
proxy = getattr(self, '_settings', None)
|
|
|
|
|
|
|
|
|
|
if proxy is None:
|
|
|
|
|
proxy = SettingsProxy(self)
|
|
|
|
|
setattr(self, '_settings', proxy)
|
|
|
|
|
|
|
|
|
|
return proxy
|
|
|
|
|
|
2018-07-03 10:06:22 +00:00
|
|
|
|
@property
|
|
|
|
|
def timezone(self):
|
2018-07-08 17:47:05 +00:00
|
|
|
|
"""The user’s time zone
|
|
|
|
|
|
|
|
|
|
If the user didn’t set a time zone yet, the application default is used.
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-03 10:06:22 +00:00
|
|
|
|
from flask import current_app
|
2018-07-08 20:28:29 +00:00
|
|
|
|
from pytz import timezone
|
2018-07-03 10:06:22 +00:00
|
|
|
|
from pytz.exceptions import UnknownTimeZoneError
|
|
|
|
|
|
|
|
|
|
timezone_str = self.settings['timezone']
|
|
|
|
|
|
2018-07-08 20:28:29 +00:00
|
|
|
|
if timezone_str:
|
|
|
|
|
try:
|
|
|
|
|
return timezone(timezone_str)
|
|
|
|
|
except UnknownTimeZoneError:
|
|
|
|
|
warn(f'Timezone of {self} (or the default timezone) "{timezone_str}" is invalid')
|
2018-07-03 10:06:22 +00:00
|
|
|
|
|
2018-07-08 20:28:29 +00:00
|
|
|
|
return current_app.timezone
|
2018-07-03 10:06:22 +00:00
|
|
|
|
|
2018-06-29 11:24:54 +00:00
|
|
|
|
def __repr__(self):
|
2018-06-28 12:41:14 +00:00
|
|
|
|
return f'<User {self.id}({self.username})>'
|
|
|
|
|
|
|
|
|
|
|
2018-07-03 06:33:49 +00:00
|
|
|
|
class Role(db.Model, RoleMixin): # pylint: disable=too-few-public-methods
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Database model for roles
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-28 12:41:14 +00:00
|
|
|
|
__tablename__ = 'roles'
|
2018-07-03 06:33:49 +00:00
|
|
|
|
# pylint: disable=invalid-name
|
2018-06-28 12:41:14 +00:00
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
|
|
|
|
#: The name of the role
|
|
|
|
|
name = db.Column(db.Unicode(length=80), unique=True)
|
|
|
|
|
|
|
|
|
|
#: A description of the role
|
|
|
|
|
description = db.Column(db.UnicodeText)
|
2018-06-29 11:24:54 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
return f'<Role {self.id}({self.name})>'
|
2018-06-29 11:25:09 +00:00
|
|
|
|
|
|
|
|
|
|
2018-07-08 16:34:37 +00:00
|
|
|
|
class Profile(db.Model): # pylint: disable=too-few-public-methods
|
|
|
|
|
"""Database model for user profiles
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'profiles'
|
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
|
|
|
|
#: The ID of the local user this profile belongs to
|
2018-07-09 07:55:55 +00:00
|
|
|
|
user_id = db.Column(db.Integer(), db.ForeignKey('users.id'), nullable=True, unique=True)
|
|
|
|
|
|
2018-07-09 11:03:24 +00:00
|
|
|
|
user = db.relationship(User, backref=db.backref('profile', uselist=False))
|
2018-07-08 16:34:37 +00:00
|
|
|
|
|
|
|
|
|
#: The username this profile belongs to. If ``None``, `user_id` must be set
|
|
|
|
|
username = db.Column(db.String(length=50), nullable=True)
|
|
|
|
|
|
|
|
|
|
#: The domain this profile originates from. If ``None``, `user_id` must be set
|
|
|
|
|
domain = db.Column(db.Unicode(length=100), nullable=True)
|
|
|
|
|
|
|
|
|
|
#: The display name
|
|
|
|
|
display_name = db.Column(db.Unicode(length=80), nullable=False)
|
|
|
|
|
|
2018-07-12 07:25:22 +00:00
|
|
|
|
#: If locked, a profile cannot be followed without the owner’s consent
|
|
|
|
|
locked = db.Column(db.Boolean(), default=False)
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
@property
|
2018-07-09 16:06:18 +00:00
|
|
|
|
def fqn(self):
|
2018-07-09 16:04:12 +00:00
|
|
|
|
"""The fully qualified name of the profile
|
|
|
|
|
|
|
|
|
|
For local profiles, this is in the form ``@username``; for remote users, it’s in the form
|
|
|
|
|
``@username@domain``.
|
|
|
|
|
"""
|
2018-07-09 06:32:27 +00:00
|
|
|
|
|
|
|
|
|
if self.user:
|
|
|
|
|
return f'@{self.user.username}'
|
|
|
|
|
|
|
|
|
|
return f'@{self.username}@{self.domain}'
|
|
|
|
|
|
2018-07-09 07:55:55 +00:00
|
|
|
|
def __repr__(self):
|
|
|
|
|
if self.user:
|
|
|
|
|
username = self.user.username
|
|
|
|
|
domain = ''
|
|
|
|
|
else:
|
|
|
|
|
username = self.username
|
2018-07-12 07:18:05 +00:00
|
|
|
|
domain = f'@{self.domain}'
|
2018-07-09 07:55:55 +00:00
|
|
|
|
|
|
|
|
|
return f'<Profile {self.id}(@{username}{domain})>'
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
def __str__(self):
|
|
|
|
|
ret = ''
|
|
|
|
|
|
|
|
|
|
if self.display_name:
|
|
|
|
|
ret = self.display_name + ' '
|
|
|
|
|
|
2018-07-09 16:06:18 +00:00
|
|
|
|
ret += f'({self.fqn})'
|
2018-07-09 06:32:27 +00:00
|
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
2018-07-09 11:04:55 +00:00
|
|
|
|
@property
|
|
|
|
|
def followed_list(self):
|
|
|
|
|
"""List of profiles this profile is following
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# This will always be empty for remote profiles
|
|
|
|
|
if not self.user:
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
return Profile.query \
|
|
|
|
|
.join(UserFollow.followed) \
|
2018-07-12 07:25:22 +00:00
|
|
|
|
.filter(UserFollow.follower == self) \
|
|
|
|
|
.filter(UserFollow.accepted_at.isnot(None))
|
2018-07-09 11:04:55 +00:00
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def follower_list(self):
|
|
|
|
|
"""List of profiles that follow this profile
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# This will always be empty for remote profiles
|
|
|
|
|
if not self.user:
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
return Profile.query \
|
|
|
|
|
.join(UserFollow.follower) \
|
2018-07-12 07:25:22 +00:00
|
|
|
|
.filter(UserFollow.followed == self) \
|
|
|
|
|
.filter(UserFollow.accepted_at.isnot(None))
|
2018-07-09 11:04:55 +00:00
|
|
|
|
|
2018-07-10 08:26:43 +00:00
|
|
|
|
@property
|
|
|
|
|
def url(self):
|
2018-07-10 14:39:16 +00:00
|
|
|
|
"""Get the URL for this profile
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 08:26:43 +00:00
|
|
|
|
from flask import url_for
|
|
|
|
|
|
|
|
|
|
if self.user:
|
|
|
|
|
return url_for('display_profile', username=self.user.username)
|
|
|
|
|
|
|
|
|
|
return NotImplemented
|
|
|
|
|
|
2018-07-11 14:40:42 +00:00
|
|
|
|
def follow(self, follower):
|
|
|
|
|
"""Make ``follower`` follow this profile
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
if not isinstance(follower, Profile):
|
|
|
|
|
raise TypeError('Folloer must be a Profile object')
|
|
|
|
|
|
2018-07-12 07:25:22 +00:00
|
|
|
|
timestamp = None if self.locked else datetime.utcnow()
|
|
|
|
|
|
|
|
|
|
user_follow = UserFollow(follower=follower, followed=self, accepted_at=timestamp)
|
2018-07-11 14:40:42 +00:00
|
|
|
|
db.session.add(user_follow)
|
2018-07-12 10:00:36 +00:00
|
|
|
|
notification = self.notify(follower, self, NotificationAction.follow)
|
|
|
|
|
|
2018-07-11 14:40:42 +00:00
|
|
|
|
db.session.add(notification)
|
|
|
|
|
|
|
|
|
|
return user_follow
|
|
|
|
|
|
2018-07-12 10:00:36 +00:00
|
|
|
|
def notify(self, actor, item, action):
|
|
|
|
|
"""Notify this profile about ``action`` on ``item`` by ``actor``
|
|
|
|
|
|
|
|
|
|
:param actor: the actor who generated the notification
|
|
|
|
|
:type actor: Profile
|
|
|
|
|
:param item: the item ``action`` was performed on
|
|
|
|
|
:type item: any
|
|
|
|
|
:param action: the type of the action
|
|
|
|
|
:type action: NotificationAction, str
|
|
|
|
|
:raises TypeError: if ``actor`` is not a `Profile` object
|
|
|
|
|
:returns: the generated notification. It is already added to the database session, but
|
|
|
|
|
not committed
|
|
|
|
|
:rtype: Notification
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
if not isinstance(actor, Profile):
|
|
|
|
|
raise TypeError('actor must be a Profile instance')
|
|
|
|
|
|
|
|
|
|
if isinstance(action, str):
|
|
|
|
|
action = NotificationAction[action]
|
|
|
|
|
|
|
|
|
|
notification = Notification(profile=self, actor=actor, item=item, action=action)
|
|
|
|
|
|
|
|
|
|
return notification
|
|
|
|
|
|
2018-07-08 16:34:37 +00:00
|
|
|
|
|
2018-06-29 11:25:09 +00:00
|
|
|
|
class Event(db.Model):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Database model for events
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-29 11:25:09 +00:00
|
|
|
|
__tablename__ = 'events'
|
2018-07-03 06:33:49 +00:00
|
|
|
|
# pylint: disable=invalid-name
|
2018-06-29 11:25:09 +00:00
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
2018-07-09 10:11:15 +00:00
|
|
|
|
#: The UUID of the event. This is what is presented to the users and used in federation.
|
|
|
|
|
event_uuid = db.Column(db.String(length=40), unique=True, nullable=False, default=generate_uuid)
|
|
|
|
|
|
2018-07-09 06:32:43 +00:00
|
|
|
|
#: The ID of the profile who created the event
|
|
|
|
|
profile_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), nullable=False)
|
2018-06-29 11:25:09 +00:00
|
|
|
|
|
2018-07-09 06:32:43 +00:00
|
|
|
|
profile = db.relationship('Profile', backref=db.backref('events', lazy='dynamic'))
|
2018-06-29 11:25:09 +00:00
|
|
|
|
|
|
|
|
|
#: The title of the event
|
|
|
|
|
title = db.Column(db.Unicode(length=200), nullable=False)
|
|
|
|
|
|
|
|
|
|
#: The time zone to be used for `start_time` and `end_time`
|
|
|
|
|
time_zone = db.Column(db.String(length=80), nullable=False)
|
|
|
|
|
|
2018-07-03 06:22:58 +00:00
|
|
|
|
#: The starting timestamp of the event. It is in the UTC time zone
|
2018-06-29 11:25:09 +00:00
|
|
|
|
start_time = db.Column(db.DateTime(), nullable=False)
|
|
|
|
|
|
2018-07-03 06:22:58 +00:00
|
|
|
|
#: The ending timestamp of the event. It is in the UTC time zone
|
2018-06-29 11:25:09 +00:00
|
|
|
|
end_time = db.Column(db.DateTime(), nullable=False)
|
|
|
|
|
|
|
|
|
|
#: If `True`, the event is a whole-day event
|
|
|
|
|
all_day = db.Column(db.Boolean(), default=False)
|
|
|
|
|
|
|
|
|
|
#: The description of the event
|
|
|
|
|
description = db.Column(db.UnicodeText())
|
|
|
|
|
|
2018-07-03 10:03:54 +00:00
|
|
|
|
def __as_tz(self, timestamp, as_timezone=None):
|
2018-07-08 17:47:05 +00:00
|
|
|
|
from pytz import timezone, utc
|
2018-07-02 13:07:53 +00:00
|
|
|
|
|
2018-07-08 17:47:05 +00:00
|
|
|
|
utc_timestamp = utc.localize(dt=timestamp)
|
2018-07-03 10:03:54 +00:00
|
|
|
|
|
|
|
|
|
return utc_timestamp.astimezone(as_timezone or timezone(self.time_zone))
|
2018-07-02 13:07:53 +00:00
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def start_time_tz(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The same timestamp as `start_time`, but in the time zone specified by `time_zone`.
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 13:07:53 +00:00
|
|
|
|
return self.__as_tz(self.start_time)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def end_time_tz(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The same timestamp as `end_time`, but in the time zone specified by `time_zone`.
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 13:07:53 +00:00
|
|
|
|
return self.__as_tz(self.end_time)
|
|
|
|
|
|
2018-07-03 10:09:15 +00:00
|
|
|
|
def start_time_for_user(self, user):
|
|
|
|
|
"""The same timestamp as `start_time`, but in the time zone of `user`
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
return self.__as_tz(self.start_time, as_timezone=user.timezone)
|
|
|
|
|
|
|
|
|
|
def end_time_for_user(self, user):
|
|
|
|
|
"""The same timestamp as `end_time`, but in the time zone of `user`
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
return self.__as_tz(self.end_time, as_timezone=user.timezone)
|
|
|
|
|
|
2018-06-29 11:25:09 +00:00
|
|
|
|
def __repr__(self):
|
2018-07-09 06:32:43 +00:00
|
|
|
|
return f'<Event {self.id} ({self.title}) of {self.profile}>'
|
2018-07-03 08:51:43 +00:00
|
|
|
|
|
2018-07-10 08:26:43 +00:00
|
|
|
|
def __str__(self):
|
|
|
|
|
return self.title
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def url(self):
|
2018-07-10 14:39:16 +00:00
|
|
|
|
"""The URL of the event
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 08:26:43 +00:00
|
|
|
|
from flask import url_for
|
|
|
|
|
|
|
|
|
|
return url_for('event_details', event_uuid=self.event_uuid)
|
|
|
|
|
|
2018-07-12 09:08:13 +00:00
|
|
|
|
def invite(self, inviter, invited):
|
|
|
|
|
"""Invite ``invited`` to the event
|
|
|
|
|
|
|
|
|
|
The invitation will arrive from ``inviter``.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
invite = Invitation(event=self, sender=inviter, invitee=invited)
|
|
|
|
|
db.session.add(invite)
|
|
|
|
|
|
2018-07-12 10:00:36 +00:00
|
|
|
|
notification = invited.notify(inviter, self, NotificationAction.invite)
|
2018-07-12 09:08:13 +00:00
|
|
|
|
db.session.add(notification)
|
|
|
|
|
|
|
|
|
|
return invite
|
|
|
|
|
|
2018-07-03 08:51:43 +00:00
|
|
|
|
|
2018-07-08 17:47:05 +00:00
|
|
|
|
class UserSetting(db.Model): # pylint: disable=too-few-public-methods
|
2018-07-03 08:51:43 +00:00
|
|
|
|
"""Database model for user settings
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'user_settings'
|
|
|
|
|
|
|
|
|
|
#: The ID of the user this setting belongs to
|
|
|
|
|
user_id = db.Column(db.Integer(), db.ForeignKey('users.id'), primary_key=True)
|
|
|
|
|
|
|
|
|
|
user = db.relationship('User')
|
|
|
|
|
|
|
|
|
|
#: The settings key
|
|
|
|
|
key = db.Column(db.String(length=40), primary_key=True)
|
|
|
|
|
|
|
|
|
|
#: The settings value
|
|
|
|
|
value = db.Column(db.UnicodeText())
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
return f'<UserSetting of {self.user}, {self.key}="{self.value}">'
|
2018-07-04 04:30:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AuditLog(db.Model):
|
|
|
|
|
"""Database model for audit log records
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'audit_log'
|
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
|
|
|
|
TYPE_LOGIN_SUCCESS = 'login'
|
|
|
|
|
TYPE_LOGIN_FAIL = 'failed_login'
|
|
|
|
|
TYPE_LOGOUT = 'logout'
|
|
|
|
|
|
|
|
|
|
TYPES = (
|
|
|
|
|
(TYPE_LOGIN_SUCCESS, _('%(user)s logged in')),
|
|
|
|
|
(TYPE_LOGIN_FAIL, _('%(user)s failed to log in')),
|
|
|
|
|
(TYPE_LOGOUT, _('%(user)s logged out')),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
user_id = db.Column(db.Integer(), db.ForeignKey('users.id'))
|
|
|
|
|
|
|
|
|
|
user = db.relationship('User')
|
|
|
|
|
|
|
|
|
|
ip_address = db.Column(db.String(length=40), nullable=False)
|
|
|
|
|
|
|
|
|
|
timestamp = db.Column(db.DateTime(), default=datetime.utcnow, nullable=False)
|
|
|
|
|
|
|
|
|
|
log_type = db.Column(ChoiceType(TYPES), nullable=False, index=True)
|
|
|
|
|
|
|
|
|
|
extra_data = db.Column(db.UnicodeText())
|
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
format_string = dict(self.TYPES).get(self.log_type,
|
|
|
|
|
_('UNKNOWN RECORD "%(log_type)s" for %(user)s'))
|
|
|
|
|
message = str(self.timestamp) + \
|
|
|
|
|
(format_string % {
|
|
|
|
|
'user': self.user.username,
|
|
|
|
|
'log_type': self.log_type
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if self.extra_data:
|
|
|
|
|
message += f' {self.extra_data}'
|
|
|
|
|
|
|
|
|
|
return message
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
return f'<AuditLog {self.log_type} for {self.user} at {self.timestamp}>'
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def get_message(cls, key, *args, **kwargs):
|
|
|
|
|
"""Get the translated message for ``key``
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
return lazy_gettext(dict(cls.TYPES).get(key), *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def log(cls, user, log_type, extra_data=None, logger=None):
|
|
|
|
|
"""Create a new audit log record
|
|
|
|
|
|
|
|
|
|
:param user: the user the new record corresponds to
|
|
|
|
|
:type user: User
|
|
|
|
|
:param log_type: the type of the record. Must be present in `TYPES`
|
|
|
|
|
:type log_type: str
|
|
|
|
|
:param extra_data: extra text to be added to the record
|
|
|
|
|
:type extra_data: str, None
|
|
|
|
|
:param logger: if set, logs will go to this logger instead of the default (calsocial)
|
|
|
|
|
:type logger: Logger
|
|
|
|
|
:raises TypeError: if ``user`` is not an instance of `User`
|
|
|
|
|
:raises ValueError: if ``log_type`` is not a valid log type
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from logging import getLogger
|
|
|
|
|
|
|
|
|
|
from flask import has_request_context, request
|
|
|
|
|
|
|
|
|
|
logger = logger or getLogger('calsocial')
|
|
|
|
|
|
|
|
|
|
if not isinstance(user, User):
|
|
|
|
|
raise TypeError('user must be a User instance')
|
|
|
|
|
|
|
|
|
|
if log_type not in dict(cls.TYPES):
|
|
|
|
|
raise ValueError('log_type must be a valid log type')
|
|
|
|
|
|
|
|
|
|
if has_request_context():
|
|
|
|
|
ip = request.remote_addr or 'UNKNOWN'
|
|
|
|
|
else:
|
|
|
|
|
ip = 'NON-REQUEST'
|
|
|
|
|
|
|
|
|
|
record = cls(user=user,
|
|
|
|
|
timestamp=datetime.utcnow(),
|
|
|
|
|
log_type=log_type,
|
|
|
|
|
ip_address=ip,
|
|
|
|
|
extra_data=extra_data)
|
|
|
|
|
db.session.add(record)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
with force_locale('en'):
|
|
|
|
|
message = f'Audit: [{ip}] [{user.id}] ' + cls.get_message(log_type, user=user.username)
|
|
|
|
|
|
|
|
|
|
logger.info(message)
|
2018-07-09 06:33:04 +00:00
|
|
|
|
|
|
|
|
|
|
2018-07-09 16:04:12 +00:00
|
|
|
|
class UserFollow(db.Model): # pylint: disable=too-few-public-methods
|
2018-07-09 06:33:04 +00:00
|
|
|
|
"""Database model for user follows
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
#: The ID of the profile that is following the other
|
|
|
|
|
follower_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), primary_key=True)
|
|
|
|
|
|
2018-07-09 11:04:55 +00:00
|
|
|
|
follower = db.relationship('Profile', foreign_keys=[follower_id])
|
|
|
|
|
|
2018-07-09 06:33:04 +00:00
|
|
|
|
#: The ID of the profile being followed
|
|
|
|
|
followed_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), primary_key=True)
|
|
|
|
|
|
2018-07-09 11:04:55 +00:00
|
|
|
|
followed = db.relationship('Profile', foreign_keys=[followed_id])
|
|
|
|
|
|
2018-07-09 06:33:04 +00:00
|
|
|
|
#: The timestamp when the follow was initiated
|
|
|
|
|
initiated_at = db.Column(db.DateTime(), default=datetime.utcnow, nullable=False)
|
|
|
|
|
|
|
|
|
|
#: The timestamp when the follow was accepted
|
|
|
|
|
accepted_at = db.Column(db.DateTime(), nullable=True)
|
2018-07-09 06:32:27 +00:00
|
|
|
|
|
2018-07-12 07:56:55 +00:00
|
|
|
|
def accept(self):
|
|
|
|
|
"""Accept this follow request
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
self.accepted_at = datetime.utcnow()
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
|
|
|
|
|
class Notification(db.Model):
|
|
|
|
|
"""Database model for notifications
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'notifications'
|
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
|
|
|
|
|
|
|
|
|
#: The recipient of the notification
|
|
|
|
|
profile_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), nullable=False)
|
|
|
|
|
|
|
|
|
|
profile = db.relationship('Profile',
|
|
|
|
|
backref=db.backref('notifications', lazy='dynamic'),
|
|
|
|
|
foreign_keys=[profile_id])
|
|
|
|
|
|
|
|
|
|
#: The profile that generated the notification
|
|
|
|
|
actor_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), nullable=True)
|
|
|
|
|
|
|
|
|
|
actor = db.relationship('Profile', foreign_keys=[actor_id])
|
|
|
|
|
|
|
|
|
|
#: The item (e.g. event) that generated the notification
|
|
|
|
|
item_id = db.Column(db.Integer(), nullable=True)
|
|
|
|
|
|
|
|
|
|
#: The type of the item that generated the notification
|
|
|
|
|
item_type = db.Column(db.String(length=40))
|
|
|
|
|
|
|
|
|
|
#: The type of action
|
|
|
|
|
action = db.Column(db.Enum(NotificationAction))
|
|
|
|
|
|
|
|
|
|
#: The timestamp when the notification was created
|
|
|
|
|
created_at = db.Column(db.DateTime(), default=datetime.utcnow, nullable=False)
|
|
|
|
|
|
|
|
|
|
#: The timestamp when the notification was read
|
|
|
|
|
read_at = db.Column(db.DateTime(), nullable=True)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def item(self):
|
2018-07-09 16:04:12 +00:00
|
|
|
|
"""The subject of the notification
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
item_class = self._decl_class_registry.get(self.item_type)
|
|
|
|
|
|
|
|
|
|
if item_class is None:
|
|
|
|
|
warn(f'Unknown item type {self.item_type}')
|
|
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
return item_class.query.get(self.item_id)
|
|
|
|
|
|
2018-07-09 12:32:38 +00:00
|
|
|
|
@item.setter
|
|
|
|
|
def item(self, value):
|
|
|
|
|
self.item_type = value.__class__.__name__
|
|
|
|
|
self.item_id = value.id
|
|
|
|
|
|
2018-07-09 06:32:27 +00:00
|
|
|
|
@property
|
|
|
|
|
def message(self):
|
|
|
|
|
"""Get the translated message for ``key``
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from flask_security import current_user
|
|
|
|
|
|
2018-07-09 16:04:12 +00:00
|
|
|
|
messages = NOTIFICATION_ACTION_MESSAGES.get(self.action)
|
2018-07-09 06:32:27 +00:00
|
|
|
|
message = messages[0 if self.item == current_user.profile else 1]
|
|
|
|
|
|
|
|
|
|
return lazy_gettext(message, actor=self.actor, item=self.item)
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
2018-07-10 08:26:43 +00:00
|
|
|
|
@property
|
|
|
|
|
def html(self):
|
|
|
|
|
"""Get the translated message for ``key`` in HTML format
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 14:39:16 +00:00
|
|
|
|
from flask import Markup
|
2018-07-10 08:26:43 +00:00
|
|
|
|
from flask_security import current_user
|
|
|
|
|
|
|
|
|
|
messages = NOTIFICATION_ACTION_MESSAGES.get(self.action)
|
|
|
|
|
message = messages[0 if self.item == current_user.profile else 1]
|
|
|
|
|
|
|
|
|
|
actor = f'<a href="{self.actor.url}">{self.actor}</a>'
|
|
|
|
|
item = f'<a href="{self.item.url}">{self.item}</a>'
|
|
|
|
|
|
|
|
|
|
return Markup(lazy_gettext(message, actor=actor, item=item))
|
|
|
|
|
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
|
|
|
|
class Invitation(db.Model): # pylint: disable=too-few-public-methods
|
|
|
|
|
"""Database model for event invitations
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'invitations'
|
2018-07-10 08:02:54 +00:00
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
|
id = db.Column(db.Integer(), primary_key=True)
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
|
|
|
|
#: The ID of the sender’s profile
|
2018-07-10 08:02:54 +00:00
|
|
|
|
sender_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), index=True)
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
|
|
|
|
sender = db.relationship('Profile', foreign_keys=[sender_id])
|
|
|
|
|
|
|
|
|
|
#: The ID of the invitee’s profile
|
2018-07-10 08:02:54 +00:00
|
|
|
|
invitee_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), index=True)
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
|
|
|
|
invitee = db.relationship('Profile', foreign_keys=[invitee_id])
|
|
|
|
|
|
|
|
|
|
#: The ID of the event
|
2018-07-10 08:02:54 +00:00
|
|
|
|
event_id = db.Column(db.Integer(), db.ForeignKey('events.id'), index=True)
|
2018-07-09 05:58:29 +00:00
|
|
|
|
|
|
|
|
|
event = db.relationship('Event', backref=db.backref('invitations', lazy='dynamic'))
|
|
|
|
|
|
|
|
|
|
#: The timestamp of the invitation
|
|
|
|
|
timestamp = db.Column(db.DateTime(), default=datetime.utcnow)
|
2018-07-08 16:52:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Response(db.Model): # pylint: disable=too-few-public-methods
|
|
|
|
|
"""Database model for RSVPs.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__tablename__ = 'responses'
|
|
|
|
|
|
|
|
|
|
#: The profile that’s sending the RSVP
|
|
|
|
|
profile_id = db.Column(db.Integer(), db.ForeignKey('profiles.id'), primary_key=True)
|
|
|
|
|
|
|
|
|
|
profile = db.relationship('Profile')
|
|
|
|
|
|
|
|
|
|
#: The ID of the event
|
|
|
|
|
event_id = db.Column(db.Integer(), db.ForeignKey('events.id'), primary_key=True)
|
|
|
|
|
|
|
|
|
|
event = db.relationship('Event')
|
|
|
|
|
|
|
|
|
|
#: The ID of the invitation, if the user is responding to an invitation
|
|
|
|
|
invitation_id = db.Column(db.Integer(), db.ForeignKey('invitations.id'), nullable=True)
|
|
|
|
|
|
|
|
|
|
invitation = db.relationship('Invitation')
|
|
|
|
|
|
|
|
|
|
#: The timestamp of the response
|
|
|
|
|
timestamp = db.Column(db.DateTime(), default=datetime.utcnow)
|
|
|
|
|
|
|
|
|
|
#: The response itself
|
|
|
|
|
response = db.Column(db.Enum(ResponseType), nullable=False)
|