Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
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
Commit
f37d6bc9
authored
May 22, 2013
by
Bence Dányi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewall_gui: provide default values for new Rule objects
parent
90a22a2f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
2 deletions
+31
-2
firewall_gui/views.py
+31
-2
No files found.
firewall_gui/views.py
View file @
f37d6bc9
...
...
@@ -168,8 +168,9 @@ def list_entities(request, name):
}[
name
](
request
)),
content_type
=
'application/json'
)
def
show_rule
(
request
,
id
):
rule
=
get_object_or_404
(
Rule
,
id
=
id
)
def
show_rule
(
request
,
id
=
None
):
try
:
rule
=
Rule
.
objects
.
get
(
id
=
id
)
rule
=
{
'id'
:
rule
.
id
,
'target'
:
{
...
...
@@ -220,6 +221,34 @@ def show_rule(request, id):
'extra'
:
rule
.
extra
,
'nat_dport'
:
rule
.
nat_dport
}
except
:
rule
=
{
'id'
:
None
,
'target'
:
{
'id'
:
None
,
'name'
:
None
,
'type'
:
None
},
'type'
:
None
,
'direction'
:
{
'value'
:
None
,
'choices'
:
Rule
.
_meta
.
get_field_by_name
(
'direction'
)[
0
]
.
choices
,
},
'proto'
:
{
'value'
:
None
,
'choices'
:
Rule
.
_meta
.
get_field_by_name
(
'proto'
)[
0
]
.
choices
,
},
'owner'
:
{
'id'
:
None
,
'name'
:
None
,
},
'foreignNetwork'
:
{
'name'
:
None
,
'id'
:
None
},
'created_at'
:
None
,
'modified_at'
:
None
,
'nat'
:
False
,
'accept'
:
False
,
'description'
:
''
,
'dport'
:
None
,
'sport'
:
None
,
'extra'
:
''
,
'nat_dport'
:
None
,
}
return
HttpResponse
(
json
.
dumps
(
rule
),
content_type
=
'application/json'
)
...
...
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