hawat.blueprints.dnsr package¶
This pluggable module provides access to DNS service. It is implemented upon custom
mentat.services.dnsr
module.
Provided endpoints¶
/dnsr/search
Endpoint providing search form for querying DNS service and formatting result as HTML page.
Authentication: login required
Methods:
GET
/api/dnsr/search
Endpoint providing API search form for querying DNS service and formatting result as JSON document.
Authentication: login required
Authorization: any role
Methods:
GET
,POST
/snippet/dnsr/search
Endpoint providing API search form for querying DNS service and formatting result as JSON document containing HTML snippets.
Authentication: login required
Authorization: any role
Methods:
GET
,POST
-
class
hawat.blueprints.dnsr.
APISearchView
[source]¶ Bases:
hawat.view.mixin.AJAXMixin
,hawat.blueprints.dnsr.AbstractSearchView
View responsible for querying DNS service and presenting the results in the form of JSON document.
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
methods
: Optional[List[str]] = ['GET', 'POST']¶
-
classmethod
-
class
hawat.blueprints.dnsr.
AbstractSearchView
[source]¶ Bases:
hawat.view.RenderableView
Application view providing base search capabilities for DNS service.
The resolving is implemented using
mentat.services.dnsr
module.-
authentication
= True¶
-
dispatch_request
()[source]¶ Mandatory interface required by the
flask.views.View.dispatch_request()
. Will be called by the Flask framework to service the request.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-
-
hawat.blueprints.dnsr.
BLUEPRINT_NAME
= 'dnsr'¶ Name of the blueprint as module global constant.
-
class
hawat.blueprints.dnsr.
DnsrBlueprint
(name, import_name, **kwargs)[source]¶ Bases:
hawat.base.HawatBlueprint
Pluggable module - DNS service (dnsr).
-
classmethod
get_module_title
()[source]¶ Get human readable name for this blueprint/module.
- Returns
Name (short summary) of the blueprint/module.
- Return type
str
-
name
= None¶
-
classmethod
-
class
hawat.blueprints.dnsr.
SearchView
[source]¶ Bases:
hawat.view.mixin.HTMLMixin
,hawat.blueprints.dnsr.AbstractSearchView
View responsible for querying DNS service and presenting the results in the form of HTML page.
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
methods
: Optional[List[str]] = ['GET']¶
-
classmethod
-
class
hawat.blueprints.dnsr.
SnippetSearchView
[source]¶ Bases:
hawat.view.mixin.SnippetMixin
,hawat.blueprints.dnsr.AbstractSearchView
View responsible for querying DNS service and presenting the results in the form of JSON document containing ready to use HTML page snippets.
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
methods
: Optional[List[str]] = ['GET', 'POST']¶
-
renders
= ['label', 'full']¶
-
snippets
= [{'name': 'hostnames', 'condition': <function SnippetSearchView.<lambda>>}]¶
-
classmethod