Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
f98fa836
Verified
Commit
f98fa836
authored
1 year ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Extract instantiate_upcoming and make_conflicts as functions
parent
4292ae43
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
program/models.py
+2
-93
2 additions, 93 deletions
program/models.py
program/services.py
+96
-5
96 additions, 5 deletions
program/services.py
with
98 additions
and
98 deletions
program/models.py
+
2
−
93
View file @
f98fa836
...
@@ -29,13 +29,11 @@ from django.contrib.auth.models import User
...
@@ -29,13 +29,11 @@ from django.contrib.auth.models import User
from
django.core.exceptions
import
ObjectDoesNotExist
from
django.core.exceptions
import
ObjectDoesNotExist
from
django.db
import
models
from
django.db
import
models
from
django.db.models
import
Q
,
QuerySet
from
django.db.models
import
Q
,
QuerySet
from
django.forms.models
import
model_to_dict
from
django.utils
import
timezone
from
django.utils
import
timezone
from
django.utils.translation
import
gettext_lazy
as
_
from
django.utils.translation
import
gettext_lazy
as
_
from
program.utils
import
parse_date
,
parse_datetime
,
parse_time
from
program.utils
import
parse_datetime
from
steering.settings
import
(
from
steering.settings
import
(
AUTO_SET_LAST_DATE_TO_DAYS_IN_FUTURE
,
AUTO_SET_LAST_DATE_TO_END_OF_YEAR
,
THUMBNAIL_SIZES
,
THUMBNAIL_SIZES
,
)
)
...
@@ -377,57 +375,6 @@ class Schedule(models.Model):
...
@@ -377,57 +375,6 @@ class Schedule(models.Model):
class
Meta
:
class
Meta
:
ordering
=
(
"
first_date
"
,
"
start_time
"
)
ordering
=
(
"
first_date
"
,
"
start_time
"
)
# FIXME: this does not belong here
@staticmethod
def
instantiate_upcoming
(
sdl
,
show_pk
,
pk
=
None
):
"""
Returns an upcoming schedule instance for conflict resolution
"""
pk
=
int
(
pk
)
if
pk
is
not
None
else
None
rrule
=
RRule
.
objects
.
get
(
pk
=
int
(
sdl
[
"
rrule
"
]))
show
=
Show
.
objects
.
get
(
pk
=
int
(
show_pk
))
is_repetition
=
True
if
sdl
.
get
(
"
is_repetition
"
)
is
True
else
False
default_playlist_id
=
(
int
(
sdl
[
"
default_playlist_id
"
])
if
sdl
.
get
(
"
default_playlist_id
"
)
else
None
)
add_days_no
=
int
(
sdl
[
"
add_days_no
"
])
if
sdl
.
get
(
"
add_days_no
"
)
else
None
add_business_days_only
=
True
if
sdl
.
get
(
"
add_business_days_only
"
)
is
True
else
False
first_date
=
parse_date
(
str
(
sdl
[
"
first_date
"
]))
start_time
=
(
sdl
[
"
start_time
"
]
+
"
:00
"
if
len
(
str
(
sdl
[
"
start_time
"
]))
==
5
else
sdl
[
"
start_time
"
]
)
end_time
=
sdl
[
"
end_time
"
]
+
"
:00
"
if
len
(
str
(
sdl
[
"
end_time
"
]))
==
5
else
sdl
[
"
end_time
"
]
start_time
=
parse_time
(
str
(
start_time
))
end_time
=
parse_time
(
str
(
end_time
))
if
sdl
[
"
last_date
"
]:
last_date
=
parse_date
(
str
(
sdl
[
"
last_date
"
]))
else
:
# If last_date was not set, set it to the end of the year or add x days
if
AUTO_SET_LAST_DATE_TO_END_OF_YEAR
:
year
=
timezone
.
now
().
year
last_date
=
parse_date
(
f
"
{
year
}
-12-31
"
)
else
:
last_date
=
first_date
+
timedelta
(
days
=+
AUTO_SET_LAST_DATE_TO_DAYS_IN_FUTURE
)
schedule
=
Schedule
(
pk
=
pk
,
by_weekday
=
sdl
[
"
by_weekday
"
],
rrule
=
rrule
,
first_date
=
first_date
,
start_time
=
start_time
,
end_time
=
end_time
,
last_date
=
last_date
,
is_repetition
=
is_repetition
,
default_playlist_id
=
default_playlist_id
,
show
=
show
,
add_days_no
=
add_days_no
,
add_business_days_only
=
add_business_days_only
,
)
return
schedule
# FIXME: this does not belong here
# FIXME: this does not belong here
@staticmethod
@staticmethod
def
generate_timeslots
(
schedule
):
def
generate_timeslots
(
schedule
):
...
@@ -712,44 +659,6 @@ class Schedule(models.Model):
...
@@ -712,44 +659,6 @@ class Schedule(models.Model):
return
conflicts
return
conflicts
# FIXME: this does not belong here
@staticmethod
def
make_conflicts
(
sdl
,
schedule_pk
,
show_pk
):
"""
Retrieves POST vars
Generates a schedule
Generates conflicts: Returns timeslots, collisions, solutions as JSON
Returns conflicts dict
"""
# Generate schedule to be saved
schedule
=
Schedule
.
instantiate_upcoming
(
sdl
,
show_pk
,
schedule_pk
)
# Copy if first_date changes for generating timeslots
gen_schedule
=
schedule
# Generate timeslots
# If extending: Get last timeslot and start generating from that date on
if
schedule_pk
is
not
None
:
existing_schedule
=
Schedule
.
objects
.
get
(
pk
=
int
(
schedule_pk
))
if
schedule
.
last_date
>
existing_schedule
.
last_date
:
last_timeslot
=
(
TimeSlot
.
objects
.
filter
(
schedule
=
existing_schedule
)
.
order_by
(
"
start
"
)
.
reverse
()[
0
]
)
gen_schedule
.
first_date
=
last_timeslot
.
start
.
date
()
+
timedelta
(
days
=
1
)
timeslots
=
Schedule
.
generate_timeslots
(
gen_schedule
)
# Generate conflicts and add schedule
conflicts
=
Schedule
.
generate_conflicts
(
timeslots
)
conflicts
[
"
schedule
"
]
=
model_to_dict
(
schedule
)
return
conflicts
class
TimeSlotManager
(
models
.
Manager
):
class
TimeSlotManager
(
models
.
Manager
):
@staticmethod
@staticmethod
...
...
This diff is collapsed.
Click to expand it.
program/services.py
+
96
−
5
View file @
f98fa836
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
from
datetime
import
datetime
,
time
from
datetime
import
datetime
,
time
,
timedelta
from
rest_framework.exceptions
import
ValidationError
from
rest_framework.exceptions
import
ValidationError
...
@@ -25,8 +25,12 @@ from django.core.exceptions import ObjectDoesNotExist
...
@@ -25,8 +25,12 @@ from django.core.exceptions import ObjectDoesNotExist
from
django.forms.models
import
model_to_dict
from
django.forms.models
import
model_to_dict
from
django.utils
import
timezone
from
django.utils
import
timezone
from
django.utils.translation
import
gettext_lazy
as
_
from
django.utils.translation
import
gettext_lazy
as
_
from
program.models
import
Note
,
Schedule
,
ScheduleConflictError
,
TimeSlot
from
program.models
import
Note
,
RRule
,
Schedule
,
ScheduleConflictError
,
Show
,
TimeSlot
from
program.utils
import
parse_datetime
from
program.utils
import
parse_date
,
parse_datetime
,
parse_time
from
steering.settings
import
(
AUTO_SET_LAST_DATE_TO_DAYS_IN_FUTURE
,
AUTO_SET_LAST_DATE_TO_END_OF_YEAR
,
)
# TODO: add type annotations
# TODO: add type annotations
...
@@ -43,9 +47,9 @@ def resolve_conflicts(data, schedule_pk, show_pk):
...
@@ -43,9 +47,9 @@ def resolve_conflicts(data, schedule_pk, show_pk):
solutions
=
data
.
get
(
"
solutions
"
,
[])
solutions
=
data
.
get
(
"
solutions
"
,
[])
# Regenerate conflicts
# Regenerate conflicts
schedule
=
Schedule
.
instantiate_upcoming
(
sdl
,
show_pk
,
schedule_pk
)
schedule
=
instantiate_upcoming
(
sdl
,
show_pk
,
schedule_pk
)
show
=
schedule
.
show
show
=
schedule
.
show
conflicts
=
Schedule
.
make_conflicts
(
sdl
,
schedule_pk
,
show_pk
)
conflicts
=
make_conflicts
(
sdl
,
schedule_pk
,
show_pk
)
if
schedule
.
rrule
.
freq
>
0
and
schedule
.
first_date
==
schedule
.
last_date
:
if
schedule
.
rrule
.
freq
>
0
and
schedule
.
first_date
==
schedule
.
last_date
:
raise
ValidationError
(
raise
ValidationError
(
...
@@ -307,3 +311,90 @@ def resolve_conflicts(data, schedule_pk, show_pk):
...
@@ -307,3 +311,90 @@ def resolve_conflicts(data, schedule_pk, show_pk):
dl
.
delete
()
dl
.
delete
()
return
model_to_dict
(
schedule
)
return
model_to_dict
(
schedule
)
# TODO: add type annotations
def
instantiate_upcoming
(
sdl
,
show_pk
,
pk
=
None
):
"""
Returns an upcoming schedule instance for conflict resolution
"""
pk
=
int
(
pk
)
if
pk
is
not
None
else
None
rrule
=
RRule
.
objects
.
get
(
pk
=
int
(
sdl
[
"
rrule
"
]))
show
=
Show
.
objects
.
get
(
pk
=
int
(
show_pk
))
is_repetition
=
True
if
sdl
.
get
(
"
is_repetition
"
)
is
True
else
False
default_playlist_id
=
(
int
(
sdl
[
"
default_playlist_id
"
])
if
sdl
.
get
(
"
default_playlist_id
"
)
else
None
)
add_days_no
=
int
(
sdl
[
"
add_days_no
"
])
if
sdl
.
get
(
"
add_days_no
"
)
else
None
add_business_days_only
=
True
if
sdl
.
get
(
"
add_business_days_only
"
)
is
True
else
False
first_date
=
parse_date
(
str
(
sdl
[
"
first_date
"
]))
start_time
=
(
sdl
[
"
start_time
"
]
+
"
:00
"
if
len
(
str
(
sdl
[
"
start_time
"
]))
==
5
else
sdl
[
"
start_time
"
]
)
end_time
=
sdl
[
"
end_time
"
]
+
"
:00
"
if
len
(
str
(
sdl
[
"
end_time
"
]))
==
5
else
sdl
[
"
end_time
"
]
start_time
=
parse_time
(
str
(
start_time
))
end_time
=
parse_time
(
str
(
end_time
))
if
sdl
[
"
last_date
"
]:
last_date
=
parse_date
(
str
(
sdl
[
"
last_date
"
]))
else
:
# If last_date was not set, set it to the end of the year or add x days
if
AUTO_SET_LAST_DATE_TO_END_OF_YEAR
:
year
=
timezone
.
now
().
year
last_date
=
parse_date
(
f
"
{
year
}
-12-31
"
)
else
:
last_date
=
first_date
+
timedelta
(
days
=+
AUTO_SET_LAST_DATE_TO_DAYS_IN_FUTURE
)
schedule
=
Schedule
(
pk
=
pk
,
by_weekday
=
sdl
[
"
by_weekday
"
],
rrule
=
rrule
,
first_date
=
first_date
,
start_time
=
start_time
,
end_time
=
end_time
,
last_date
=
last_date
,
is_repetition
=
is_repetition
,
default_playlist_id
=
default_playlist_id
,
show
=
show
,
add_days_no
=
add_days_no
,
add_business_days_only
=
add_business_days_only
,
)
return
schedule
# TODO: add type annotations
def
make_conflicts
(
sdl
,
schedule_pk
,
show_pk
):
"""
Retrieves POST vars
Generates a schedule
Generates conflicts: Returns timeslots, collisions, solutions as JSON
Returns conflicts dict
"""
# Generate schedule to be saved
schedule
=
instantiate_upcoming
(
sdl
,
show_pk
,
schedule_pk
)
# Copy if first_date changes for generating timeslots
gen_schedule
=
schedule
# Generate timeslots
# If extending: Get last timeslot and start generating from that date on
if
schedule_pk
is
not
None
:
existing_schedule
=
Schedule
.
objects
.
get
(
pk
=
int
(
schedule_pk
))
if
schedule
.
last_date
>
existing_schedule
.
last_date
:
last_timeslot
=
(
TimeSlot
.
objects
.
filter
(
schedule
=
existing_schedule
).
order_by
(
"
start
"
).
reverse
()[
0
]
)
gen_schedule
.
first_date
=
last_timeslot
.
start
.
date
()
+
timedelta
(
days
=
1
)
timeslots
=
Schedule
.
generate_timeslots
(
gen_schedule
)
# Generate conflicts and add schedule
conflicts
=
Schedule
.
generate_conflicts
(
timeslots
)
conflicts
[
"
schedule
"
]
=
model_to_dict
(
schedule
)
return
conflicts
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment