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
9751a41a
Verified
Commit
9751a41a
authored
11 months ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' of
ssh://gitlab.servus.at:22022/aura/steering
parents
317c43f1
f6164a7f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#7890
passed
11 months ago
Stage: build
Stage: test
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
program/views.py
+51
-45
51 additions, 45 deletions
program/views.py
steering/urls.py
+3
-3
3 additions, 3 deletions
steering/urls.py
with
54 additions
and
48 deletions
program/views.py
+
51
−
45
View file @
9751a41a
...
...
@@ -171,68 +171,74 @@ def json_day_schedule(request, year=None, month=None, day=None):
)
def
json_playout
(
request
):
"""
Return a JSON representation of the scheduled playout.
class
APIPlayoutViewSet
(
mixins
.
ListModelMixin
,
viewsets
.
GenericViewSet
,
):
queryset
=
TimeSlot
.
objects
.
all
()
Expects GET parameters `start` (date), `end` (date), and `includeVirtual` (boolean).
def
list
(
self
,
request
,
*
args
,
**
kwargs
):
"""
Return a JSON representation of the scheduled playout.
- `start` is today by default.
- `end` is one week after the start date by default.
- `includeVirtual` is false by default.
Expects GET parameters `start` (date), `end` (date), and `includeVirtual` (boolean).
The schedule will include virtual timeslots to fill unscheduled gaps if requested.
- `start` is today by default.
- `end` is one week after the start date by default.
- `includeVirtual` is false by default.
Called by
- engine (playout) to retrieve timeslots within a given timerange
- internal calendar to retrieve all timeslots for a week
"""
The schedule will include virtual timeslots to fill unscheduled gaps if requested.
# datetime.now and datetime.combine return timezone naive datetime objects
if
request
.
GET
.
get
(
"
start
"
)
is
None
:
schedule_start
=
timezone
.
make_aware
(
datetime
.
combine
(
datetime
.
now
(),
time
(
0
,
0
)))
else
:
schedule_start
=
timezone
.
make_aware
(
datetime
.
combine
(
parse_date
(
request
.
GET
.
get
(
"
start
"
)),
time
(
0
,
0
))
)
Called by
- engine (playout) to retrieve timeslots within a given timerange
- internal calendar to retrieve all timeslots for a week
"""
if
request
.
GET
.
get
(
"
end
"
)
is
None
:
schedule_end
=
schedule_start
+
timedelta
(
days
=
7
)
else
:
schedule_end
=
timezone
.
make_aware
(
datetime
.
combine
(
parse_date
(
request
.
GET
.
get
(
"
end
"
))
+
timedelta
(
days
=
1
),
time
(
0
,
0
))
)
# datetime.now and datetime.combine return timezone naive datetime objects
if
request
.
GET
.
get
(
"
start
"
)
is
None
:
schedule_start
=
timezone
.
make_aware
(
datetime
.
combine
(
datetime
.
now
(),
time
(
0
,
0
)))
else
:
schedule_start
=
timezone
.
make_aware
(
datetime
.
combine
(
parse_date
(
request
.
GET
.
get
(
"
start
"
)),
time
(
0
,
0
))
)
include_virtual
=
request
.
GET
.
get
(
"
include_virtual
"
)
==
"
true
"
if
request
.
GET
.
get
(
"
end
"
)
is
None
:
schedule_end
=
schedule_start
+
timedelta
(
days
=
7
)
else
:
schedule_end
=
timezone
.
make_aware
(
datetime
.
combine
(
parse_date
(
request
.
GET
.
get
(
"
end
"
))
+
timedelta
(
days
=
1
),
time
(
0
,
0
))
)
timeslots
=
get_timerange_timeslots
(
schedule_start
,
schedule_end
).
select_related
(
"
schedul
e
"
)
include_virtual
=
request
.
GET
.
get
(
"
include_virtual
"
)
==
"
tru
e
"
schedule
=
[]
timeslots
=
get_timerange_timeslots
(
schedule_start
,
schedule_end
).
select_related
(
"
schedule
"
)
first_timeslot
=
timeslots
.
first
()
schedule
=
[]
if
include_virtual
and
first_timeslot
.
start
>
schedule_start
:
schedule
.
append
(
gap_entry
(
gap_start
=
schedule_start
,
gap_end
=
first_timeslot
.
start
))
first_timeslot
=
timeslots
.
first
()
for
current
,
upcoming
in
pairwise
(
timeslots
)
:
schedule
.
append
(
timeslot_entry
(
timeslot
=
curren
t
))
if
include_virtual
and
first_timeslot
.
start
>
schedule_start
:
schedule
.
append
(
gap_entry
(
gap_start
=
schedule_start
,
gap_end
=
first_
timeslot
.
star
t
))
if
include_virtual
and
current
.
end
!=
upcoming
.
start
:
schedule
.
append
(
gap_entry
(
gap_start
=
current
.
end
,
gap_end
=
upcoming
.
star
t
))
for
current
,
upcoming
in
pairwise
(
timeslots
)
:
schedule
.
append
(
timeslot_entry
(
timeslot
=
curren
t
))
last_timeslot
=
timeslots
.
last
()
if
include_virtual
and
current
.
end
!=
upcoming
.
start
:
schedule
.
append
(
gap_entry
(
gap_start
=
current
.
end
,
gap_end
=
upcoming
.
start
))
# we need to append the last timeslot to the schedule to complete it
if
last_timeslot
:
schedule
.
append
(
timeslot_entry
(
timeslot
=
last_timeslot
))
last_timeslot
=
timeslots
.
last
()
if
include_virtual
and
last_timeslot
.
end
<
schedule_end
:
schedule
.
append
(
gap_entry
(
gap_start
=
last_timeslot
.
end
,
gap_end
=
schedule_end
))
# we need to append the last timeslot to the schedule to complete it
if
last_timeslot
:
schedule
.
append
(
timeslot_entry
(
timeslot
=
last_timeslot
))
return
HttpResponse
(
json
.
dumps
(
schedule
,
ensure_ascii
=
False
).
encode
(
"
utf8
"
),
content_type
=
"
application/json; charset=utf-8
"
,
)
if
include_virtual
and
last_timeslot
.
end
<
schedule_end
:
schedule
.
append
(
gap_entry
(
gap_start
=
last_timeslot
.
end
,
gap_end
=
schedule_end
))
return
HttpResponse
(
json
.
dumps
(
schedule
,
ensure_ascii
=
False
).
encode
(
"
utf8
"
),
content_type
=
"
application/json; charset=utf-8
"
,
)
@extend_schema_view
(
...
...
This diff is collapsed.
Click to expand it.
steering/urls.py
+
3
−
3
View file @
9751a41a
...
...
@@ -44,7 +44,7 @@ from program.views import (
APITypeViewSet
,
APIUserViewSet
,
json_day_schedule
,
json_playout
,
APIPlayoutViewSet
)
admin
.
autodiscover
()
...
...
@@ -67,12 +67,12 @@ router.register(r"link-types", APILinkTypeViewSet, basename="link-type")
router
.
register
(
r
"
rrules
"
,
APIRRuleViewSet
,
basename
=
"
rrule
"
)
router
.
register
(
r
"
images
"
,
APIImageViewSet
,
basename
=
"
image
"
)
router
.
register
(
r
"
settings
"
,
APIRadioSettingsViewSet
,
basename
=
"
settings
"
)
router
.
register
(
r
"
playout
"
,
APIPlayoutViewSet
,
basename
=
"
playout
"
)
router
.
register
(
r
"
program/week
"
,
APIPlayoutViewSet
,
basename
=
"
program/week
"
)
urlpatterns
=
[
path
(
"
openid/
"
,
include
(
"
oidc_provider.urls
"
,
namespace
=
"
oidc_provider
"
)),
path
(
"
api/v1/
"
,
include
(
router
.
urls
)),
path
(
"
api/v1/playout
"
,
json_playout
),
path
(
"
api/v1/program/week
"
,
json_playout
),
path
(
"
api/v1/program/<int:year>/<int:month>/<int:day>/
"
,
json_day_schedule
),
path
(
"
api/v1/schema/
"
,
SpectacularAPIView
.
as_view
(),
name
=
"
schema
"
),
path
(
...
...
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