Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
13bfd1ff
authored
Aug 28, 2014
by
Őry Máté
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: do basic ownership auth for mass ops
parent
71b3d176
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
circle/dashboard/views.py
+11
-2
No files found.
circle/dashboard/views.py
View file @
13bfd1ff
...
...
@@ -1024,7 +1024,10 @@ class MassOperationView(OperationView):
template_name
=
'dashboard/mass-operate.html'
def
check_auth
(
self
):
pass
# OperationView.get calls this
for
i
in
self
.
get_object
():
if
not
i
.
has_level
(
self
.
request
.
user
,
"user"
):
raise
PermissionDenied
(
"You have no user access to instance
%
d"
%
i
.
pk
)
@classmethod
def
get_urlname
(
cls
):
...
...
@@ -1075,13 +1078,19 @@ class MassOperationView(OperationView):
op
=
self
.
get_op
(
i
)
op
.
check_auth
(
user
)
op
.
check_precond
()
except
PermissionDenied
as
e
:
i
.
disabled
=
create_readable
(
_
(
"You are not permitted to execute
%(op)
s on instance "
"
%(instance)
s."
),
instance
=
i
.
pk
,
op
=
self
.
name
)
i
.
disabled_icon
=
"lock"
except
Exception
as
e
:
i
.
disabled
=
fetch_human_exception
(
e
)
else
:
i
.
disabled
=
Fals
e
i
.
disabled
=
Non
e
return
instances
def
post
(
self
,
request
,
extra
=
None
,
*
args
,
**
kwargs
):
self
.
check_auth
()
if
extra
is
None
:
extra
=
{}
self
.
_call_operations
(
extra
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment