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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapos.core
Commits
80c03859
Commit
80c03859
authored
May 11, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support GET on /instance which return list of instances.
parent
99683ccb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
3 deletions
+22
-3
master/product/Vifib/Tool/VifibRestApiV1Tool.py
master/product/Vifib/Tool/VifibRestApiV1Tool.py
+22
-3
No files found.
master/product/Vifib/Tool/VifibRestApiV1Tool.py
View file @
80c03859
...
...
@@ -365,6 +365,23 @@ class InstancePublisher(GenericPublisher):
self
.
REQUEST
.
response
.
setBody
(
json
.
dumps
(
d
))
return
self
.
REQUEST
.
response
@
requireHeader
({
'Accept'
:
'application/json'
})
def
__instance_list
(
self
):
kw
=
dict
(
portal_type
=
(
'Software Instance'
,
'Slave Instance'
),
)
catalog
=
self
.
getPortalObject
().
portal_catalog
if
catalog
.
countResults
(
**
kw
)[
0
][
0
]
==
0
:
self
.
REQUEST
.
response
.
setStatus
(
204
)
return
self
.
REQUEST
.
response
d
=
{
"list"
:
[]}
a
=
d
[
'list'
].
append
for
si
in
catalog
(
**
kw
):
a
(
'/'
.
join
([
self
.
absolute_url
(),
si
.
getRelativeUrl
()]))
self
.
REQUEST
.
response
.
setStatus
(
200
)
self
.
REQUEST
.
response
.
setBody
(
json
.
dumps
(
d
))
return
self
.
REQUEST
.
response
@
responseSupport
()
def
__call__
(
self
):
"""Instance GET/POST support"""
...
...
@@ -374,9 +391,11 @@ class InstancePublisher(GenericPublisher):
self
.
__bang
()
else
:
self
.
__request
()
elif
self
.
REQUEST
[
'REQUEST_METHOD'
]
==
'GET'
and
\
self
.
REQUEST
[
'traverse_subpath'
]:
elif
self
.
REQUEST
[
'REQUEST_METHOD'
]
==
'GET'
:
if
self
.
REQUEST
[
'traverse_subpath'
]:
self
.
__instance_info
()
else
:
self
.
__instance_list
()
class
VifibRestApiV1Tool
(
BaseTool
):
...
...
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