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
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
f016c45d
authored
Apr 30, 2013
by
Bence Dányi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewall_gui: list blacklists
parent
ee7c6c6a
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
1 deletions
+56
-1
cloud/urls.py
+1
-0
firewall_gui/static/js/project.js
+1
-1
firewall_gui/static/partials/blacklist-list.html
+38
-0
firewall_gui/views.py
+16
-0
No files found.
cloud/urls.py
View file @
f016c45d
...
...
@@ -102,4 +102,5 @@ urlpatterns = patterns('',
url
(
r'^firewall/firewalls/$'
,
'firewall_gui.views.list_firewalls'
),
url
(
r'^firewall/domains/$'
,
'firewall_gui.views.list_domains'
),
url
(
r'^firewall/records/$'
,
'firewall_gui.views.list_records'
),
url
(
r'^firewall/blacklists/$'
,
'firewall_gui.views.list_blacklists'
),
)
firewall_gui/static/js/project.js
View file @
f016c45d
...
...
@@ -5,7 +5,7 @@
* and the `/static/partials/rule-list.html` template will be used.
* @type {Array}
*/
var
listControllers
=
[
'rule'
,
'host'
,
'vlan'
,
'vlangroup'
,
'hostgroup'
,
'firewall'
,
'domain'
,
'record'
];
var
listControllers
=
[
'rule'
,
'host'
,
'vlan'
,
'vlangroup'
,
'hostgroup'
,
'firewall'
,
'domain'
,
'record'
,
'blacklist'
];
var
module
=
angular
.
module
(
'firewall'
,
[]).
config
(
[
'$routeProvider'
,
function
(
$routeProvider
)
{
...
...
firewall_gui/static/partials/blacklist-list.html
0 → 100644
View file @
f016c45d
<div
class=
"navbar"
>
<div
class=
"navbar-inner"
>
<div
class=
"pagination pull-left"
>
<ul>
<li
ng-click=
"prevPage()"
ng-class=
"{disabled: page == 1}"
><a
href
>
Előző
</a></li>
<li
ng-repeat=
"_page in pages"
ng-click=
"setPage(_page)"
ng-class=
"{active: _page == page}"
>
<a
href
>
{{_page}}
</a>
</li>
<li
ng-click=
"nextPage()"
ng-class=
"{disabled: page == pages.length}"
><a
href
>
Next
</a></li>
</ul>
</div>
<form
class=
"navbar-search"
style=
"margin: 20px"
>
<input
type=
"text"
class=
"search-query"
placeholder=
"Search"
ng-model=
"query"
>
</form>
</div>
</div>
<table
class=
"table table-striped"
>
<tr>
<th>
Név
</th>
<th>
IPv4
</th>
<th>
Host
</th>
<th>
Indok
</th>
<th>
Horkantási üzenet (?)
</th>
<th
colspan=
"2"
>
Típus
</th>
</tr>
<tr
ng-repeat=
"blacklist in getPage()"
>
<td><a
href=
"#/blacklists/{{blacklist.id}}"
>
{{blacklist.name}}
</a></td>
<td>
{{blacklist.ipv4}}
</td>
<td><a
href=
"#/hosts/{{blacklist.host.id}}"
>
{{blacklist.host.hostname}}
</a></td>
<td>
{{blacklist.reason}}
</td>
<td>
{{blacklist.snort_message}}
</td>
<td>
{{blacklist.type}}
</td>
<td>
<a
class=
"btn"
href=
"#/blacklists/{{blacklist.id}}/"
>
Szerkesztés
</a>
<a
class=
"btn btn-danger"
href=
"#/blacklists/{{blacklist.id}}/delete/"
>
Törlés
</a>
</td>
</tr>
</table>
firewall_gui/views.py
View file @
f016c45d
...
...
@@ -172,3 +172,19 @@ def list_records(request):
"modified_at"
:
record
.
modified_at
.
isoformat
()
}
for
record
in
Record
.
objects
.
all
()]
return
HttpResponse
(
json
.
dumps
(
records
),
content_type
=
"application/json"
)
def
list_blacklists
(
request
):
blacklists
=
[{
"id"
:
blacklist
.
id
,
"host"
:
{
"id"
:
blacklist
.
host
.
id
,
"name"
:
blacklist
.
host
.
hostname
,
}
if
blacklist
.
host
else
None
,
"reason"
:
blacklist
.
reason
,
"snort_message"
:
blacklist
.
snort_message
,
"type"
:
blacklist
.
type
,
"created_at"
:
blacklist
.
created_at
.
isoformat
(),
"modified_at"
:
blacklist
.
modified_at
.
isoformat
(),
"ipv4"
:
blacklist
.
ipv4
}
for
blacklist
in
Blacklist
.
objects
.
all
()]
return
HttpResponse
(
json
.
dumps
(
blacklists
),
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