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
b9aea9d7
Commit
b9aea9d7
authored
13 years ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
added management command to add a note.
parent
6e527861
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
program/management/commands/addnote.py
+54
-0
54 additions, 0 deletions
program/management/commands/addnote.py
with
54 additions
and
0 deletions
program/management/commands/addnote.py
0 → 100644
+
54
−
0
View file @
b9aea9d7
from
django.contrib.auth.models
import
User
from
django.core.management.base
import
BaseCommand
,
CommandError
from
django.core.exceptions
import
ValidationError
from
datetime
import
datetime
import
sys
from
program.models
import
Show
,
TimeSlot
,
Note
class
Command
(
BaseCommand
):
help
=
'
adds a note to a timeslot
'
args
=
'
<show_id> <date>
'
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
==
2
:
show_id
=
args
[
0
]
start_date
=
args
[
1
]
else
:
raise
CommandError
(
'
you must provide the show_id date
'
)
try
:
show
=
Show
.
objects
.
get
(
id
=
show_id
)
except
Show
.
DoesNotExist
as
dne
:
raise
CommandError
(
dne
)
try
:
start
=
datetime
.
strptime
(
start_date
,
'
%Y-%m-%d
'
)
except
ValueError
as
ve
:
raise
CommandError
(
ve
)
else
:
year
,
month
,
day
=
start
.
year
,
start
.
month
,
start
.
day
try
:
timeslot
=
TimeSlot
.
objects
.
get
(
show
=
show
,
start__year
=
year
,
start__month
=
month
,
start__day
=
day
)
except
TimeSlot
.
DoesNotExist
as
dne
:
raise
CommandError
(
dne
)
try
:
title
=
sys
.
stdin
.
readline
().
rstrip
()
lines
=
sys
.
stdin
.
readlines
()
except
Exception
as
e
:
raise
CommandError
(
e
)
owner
=
show
.
owners
[
0
]
if
show
.
owners
.
count
()
>
0
else
User
.
objects
.
get
(
pk
=
1
)
note
=
Note
(
timeslot
=
timeslot
,
owner
=
owner
,
title
=
title
,
content
=
''
.
join
(
lines
))
try
:
note
.
validate_unique
()
except
ValidationError
as
ve
:
raise
CommandError
(
ve
.
messages
[
0
])
else
:
note
.
save
()
print
'
added note
"
%s
"
to
"
%s
"'
%
(
title
,
timeslot
)
\ No newline at end of file
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