Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Rafael Monnerat
slapos.core
Commits
3cb292c5
Commit
3cb292c5
authored
Oct 16, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expose getComputerCertificate and revokeComputerCertificate.
parent
f3c724b1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
master/product/Vifib/Tool/SlapTool.py
master/product/Vifib/Tool/SlapTool.py
+24
-0
No files found.
master/product/Vifib/Tool/SlapTool.py
View file @
3cb292c5
...
...
@@ -577,6 +577,30 @@ class SlapTool(BaseTool):
return
"""Content properly posted.
WARNING : this method is deprecated. Please use useComputer."""
@
convertToREST
def
_getComputerCertificate
(
self
,
computer_id
):
self
.
_getComputerDocument
(
computer_id
).
getCertificate
()
computer
=
Computer
(
computer_id
)
computer
.
_certificate
=
self
.
REQUEST
.
get
(
'computer_certificate'
)
computer
.
_key
=
self
.
REQUEST
.
get
(
'computer_key'
)
return
xml_marshaller
.
xml_marshaller
.
dumps
(
computer
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'getComputerCertificate'
)
def
getComputerCertificate
(
self
,
computer_id
):
"""Fetches new computer certificate"""
return
self
.
_getComputerCertificate
(
computer_id
)
@
convertToREST
def
_revokeComputerCertificate
(
self
,
computer_id
):
self
.
_getComputerDocument
(
computer_id
).
revokeCertificate
()
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'revokeComputerCertificate'
)
def
revokeComputerCertificate
(
self
,
computer_id
):
"""Revokes existing computer certificate"""
return
self
.
_revokeComputerCertificate
(
computer_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'registerComputerPartition'
)
def
registerComputerPartition
(
self
,
computer_reference
,
...
...
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