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/>.
|
|
|
|
|
|
|
|
|
|
"""Gregorian calendar system for Calendar.social
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-25 07:01:13 +00:00
|
|
|
|
from datetime import datetime, timedelta
|
2018-07-02 08:53:15 +00:00
|
|
|
|
from functools import wraps
|
|
|
|
|
|
2018-07-02 11:34:20 +00:00
|
|
|
|
from flask_babelex import lazy_gettext as _
|
2018-06-25 07:01:13 +00:00
|
|
|
|
|
|
|
|
|
from . import CalendarSystem
|
|
|
|
|
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
def to_timestamp(func):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Decorator that converts the return value of a function from `datetime` to a UNIX timestamp
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
@wraps(func)
|
2018-07-03 06:33:49 +00:00
|
|
|
|
def _decorator(*args, **kwargs):
|
2018-07-02 08:53:15 +00:00
|
|
|
|
return func(*args, **kwargs).timestamp()
|
|
|
|
|
|
2018-07-03 06:33:49 +00:00
|
|
|
|
return _decorator
|
2018-07-02 08:53:15 +00:00
|
|
|
|
|
|
|
|
|
|
2018-06-25 07:01:13 +00:00
|
|
|
|
class GregorianCalendar(CalendarSystem):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Gregorian calendar system for Calendar.social
|
|
|
|
|
"""
|
|
|
|
|
|
2018-06-25 07:01:13 +00:00
|
|
|
|
__name__ = _('Gregorian')
|
|
|
|
|
|
|
|
|
|
__has_months__ = True
|
|
|
|
|
|
|
|
|
|
START_DAY = 0
|
|
|
|
|
END_DAY = 7
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
month_names = (
|
|
|
|
|
_('January'),
|
|
|
|
|
_('February'),
|
|
|
|
|
_('March'),
|
|
|
|
|
_('April'),
|
|
|
|
|
_('May'),
|
|
|
|
|
_('June'),
|
|
|
|
|
_('July'),
|
|
|
|
|
_('August'),
|
|
|
|
|
_('September'),
|
|
|
|
|
_('October'),
|
|
|
|
|
_('November'),
|
|
|
|
|
_('December'),
|
|
|
|
|
)
|
|
|
|
|
|
2018-06-25 07:01:13 +00:00
|
|
|
|
day_names = (
|
|
|
|
|
_('Monday'),
|
|
|
|
|
_('Tuesday'),
|
|
|
|
|
_('Wednesday'),
|
|
|
|
|
_('Thursday'),
|
|
|
|
|
_('Friday'),
|
|
|
|
|
_('Saturday'),
|
|
|
|
|
_('Sunday'),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, timestamp):
|
|
|
|
|
self.timestamp = datetime.utcfromtimestamp(timestamp)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def month(self):
|
|
|
|
|
return self.timestamp.strftime("%B, %Y")
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def days(self):
|
|
|
|
|
day_list = []
|
|
|
|
|
|
|
|
|
|
start_day = self.timestamp.replace(day=1)
|
|
|
|
|
|
|
|
|
|
while start_day.weekday() > self.START_DAY:
|
|
|
|
|
start_day -= timedelta(days=1)
|
|
|
|
|
|
|
|
|
|
day_list.append(start_day)
|
|
|
|
|
current_day = start_day
|
|
|
|
|
|
|
|
|
|
while current_day.weekday() < self.END_DAY and current_day.month <= self.timestamp.month:
|
|
|
|
|
current_day += timedelta(days=1)
|
|
|
|
|
day_list.append(current_day)
|
|
|
|
|
|
|
|
|
|
return day_list
|
2018-06-29 14:14:35 +00:00
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
@property
|
|
|
|
|
@to_timestamp
|
|
|
|
|
def prev_year(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Returns the timestamp of the same date in the previous year
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
return self.timestamp.replace(year=self.timestamp.year - 1)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def prev_year_year(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The number of the previous year
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
return self.timestamp.replace(year=self.timestamp.year - 1).year
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
@to_timestamp
|
|
|
|
|
def prev_month(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Returns the timestamp of the same day in the previous month
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
if self.timestamp.month == 1:
|
|
|
|
|
return self.prev_year.replace(month=12)
|
|
|
|
|
|
|
|
|
|
return self.timestamp.replace(month=self.timestamp.month - 1)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def prev_month_name(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The name of the previous month
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
if self.timestamp.month == 1:
|
2018-07-03 06:27:17 +00:00
|
|
|
|
timestamp = self.prev_year.replace(month=12)
|
2018-07-02 08:53:15 +00:00
|
|
|
|
else:
|
2018-07-03 06:27:17 +00:00
|
|
|
|
timestamp = self.timestamp.replace(month=self.timestamp.month - 1)
|
2018-07-02 08:53:15 +00:00
|
|
|
|
|
2018-07-03 06:27:17 +00:00
|
|
|
|
return self.month_names[timestamp.month - 1]
|
2018-07-02 08:53:15 +00:00
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
@to_timestamp
|
|
|
|
|
def next_month(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Returns the timestamp of the same day in the next month
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
if self.timestamp.month == 12:
|
|
|
|
|
return self.next_year.replace(month=1)
|
|
|
|
|
|
|
|
|
|
return self.timestamp.replace(month=self.timestamp.month + 1)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def next_month_name(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The name of the next month
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
if self.timestamp.month == 12:
|
2018-07-03 06:27:17 +00:00
|
|
|
|
timestamp = self.prev_year.replace(month=1)
|
2018-07-02 08:53:15 +00:00
|
|
|
|
else:
|
2018-07-03 06:27:17 +00:00
|
|
|
|
timestamp = self.timestamp.replace(month=self.timestamp.month + 1)
|
2018-07-02 08:53:15 +00:00
|
|
|
|
|
2018-07-03 06:27:17 +00:00
|
|
|
|
return self.month_names[timestamp.month - 1]
|
2018-07-02 08:53:15 +00:00
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
@to_timestamp
|
|
|
|
|
def next_year(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Returns the timestamp of the same date in the next year
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
return self.timestamp.replace(year=self.timestamp.year + 1)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def next_year_year(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""The number of the next year
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
return self.timestamp.replace(year=self.timestamp.year + 1).year
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def has_today(self):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""``True`` if the set month holds today’s date
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-02 08:53:15 +00:00
|
|
|
|
now = datetime.utcnow()
|
|
|
|
|
month_start_timestamp = self.timestamp.replace(day=1,
|
|
|
|
|
hour=0,
|
|
|
|
|
minute=0,
|
|
|
|
|
second=0,
|
|
|
|
|
microsecond=0)
|
|
|
|
|
|
|
|
|
|
if self.timestamp.month == 12:
|
|
|
|
|
next_month = 1
|
|
|
|
|
else:
|
|
|
|
|
next_month = self.timestamp.month + 1
|
|
|
|
|
|
|
|
|
|
month_end_timestamp = month_start_timestamp.replace(month=next_month)
|
|
|
|
|
|
|
|
|
|
return now >= month_start_timestamp and now < month_end_timestamp
|
|
|
|
|
|
2018-07-03 06:28:12 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
def day_events(date, user=None):
|
2018-07-03 06:22:58 +00:00
|
|
|
|
"""Returns all events for a given day
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-09 06:32:43 +00:00
|
|
|
|
from ..models import Event, Profile
|
2018-06-29 14:14:35 +00:00
|
|
|
|
|
|
|
|
|
events = Event.query
|
|
|
|
|
|
|
|
|
|
if user:
|
2018-07-09 06:32:43 +00:00
|
|
|
|
events = events.join(Profile) \
|
|
|
|
|
.filter(Profile.user == user)
|
2018-06-29 14:14:35 +00:00
|
|
|
|
|
2018-07-02 14:51:37 +00:00
|
|
|
|
start_timestamp = date.replace(hour=0, minute=0, second=0, microsecond=0)
|
2018-06-29 14:14:35 +00:00
|
|
|
|
end_timestamp = start_timestamp + timedelta(days=1)
|
|
|
|
|
|
2018-07-03 06:29:19 +00:00
|
|
|
|
events = events.filter(((Event.start_time >= start_timestamp) &
|
|
|
|
|
(Event.start_time < end_timestamp)) |
|
|
|
|
|
((Event.end_time >= start_timestamp) &
|
|
|
|
|
(Event.end_time < end_timestamp))) \
|
2018-07-02 15:27:09 +00:00
|
|
|
|
.order_by('start_time', 'end_time')
|
2018-06-29 14:14:35 +00:00
|
|
|
|
|
|
|
|
|
return events
|