mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
🎨 Format Python code with Black
This commit is contained in:
parent
518e5ebb85
commit
cadb449528
10 changed files with 25 additions and 40 deletions
|
@ -43,7 +43,7 @@ class Element:
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
"""Returns a basic state dump."""
|
"""Returns a basic state dump."""
|
||||||
return 'Element' + str(self.index) + str(self.attributes)
|
return "Element" + str(self.index) + str(self.attributes)
|
||||||
|
|
||||||
def add(self, line):
|
def add(self, line):
|
||||||
"""Adds a line of input to the object.
|
"""Adds a line of input to the object.
|
||||||
|
@ -57,10 +57,10 @@ class Element:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def _valid(line):
|
def _valid(line):
|
||||||
return line and not line.startswith('#')
|
return line and not line.startswith("#")
|
||||||
|
|
||||||
def _interesting(line):
|
def _interesting(line):
|
||||||
return line != 'objectClass: top'
|
return line != "objectClass: top"
|
||||||
|
|
||||||
if self.is_valid() and not _valid(line):
|
if self.is_valid() and not _valid(line):
|
||||||
return True
|
return True
|
||||||
|
@ -70,11 +70,11 @@ class Element:
|
||||||
|
|
||||||
def is_valid(self):
|
def is_valid(self):
|
||||||
"""Indicates whether a valid entry has been read."""
|
"""Indicates whether a valid entry has been read."""
|
||||||
return len(self.attributes) != 0 and self.attributes[0].startswith('dn: ')
|
return len(self.attributes) != 0 and self.attributes[0].startswith("dn: ")
|
||||||
|
|
||||||
def dn(self):
|
def dn(self):
|
||||||
"""Returns the DN for this entry."""
|
"""Returns the DN for this entry."""
|
||||||
if self.attributes[0].startswith('dn: '):
|
if self.attributes[0].startswith("dn: "):
|
||||||
return self.attributes[0][4:]
|
return self.attributes[0][4:]
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
@ -86,12 +86,12 @@ class Element:
|
||||||
Element objects) and returns a string which declares a DOT edge, or an
|
Element objects) and returns a string which declares a DOT edge, or an
|
||||||
empty string, if no parent was found.
|
empty string, if no parent was found.
|
||||||
"""
|
"""
|
||||||
dn_components = self.dn().split(',')
|
dn_components = self.dn().split(",")
|
||||||
for i in range(1, len(dn_components) + 1):
|
for i in range(1, len(dn_components) + 1):
|
||||||
parent = ','.join(dn_components[i:])
|
parent = ",".join(dn_components[i:])
|
||||||
if parent in dnmap:
|
if parent in dnmap:
|
||||||
return ' n%d->n%d\n' % (dnmap[parent].index, self.index)
|
return " n%d->n%d\n" % (dnmap[parent].index, self.index)
|
||||||
return ''
|
return ""
|
||||||
|
|
||||||
def dot(self, dnmap):
|
def dot(self, dnmap):
|
||||||
"""Returns a text representation of the node and perhaps its parent edge.
|
"""Returns a text representation of the node and perhaps its parent edge.
|
||||||
|
@ -99,6 +99,7 @@ class Element:
|
||||||
Args:
|
Args:
|
||||||
- dnmap: dictionary mapping dn names to Element objects
|
- dnmap: dictionary mapping dn names to Element objects
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def _format(attributes):
|
def _format(attributes):
|
||||||
result = [TITLE_ENTRY_TEMPALTE % attributes[0]]
|
result = [TITLE_ENTRY_TEMPALTE % attributes[0]]
|
||||||
|
|
||||||
|
@ -107,7 +108,12 @@ class Element:
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
return TABLE_TEMPLATE % (self.index, '\n '.join(_format(self.attributes)), self.edge(dnmap))
|
return TABLE_TEMPLATE % (
|
||||||
|
self.index,
|
||||||
|
"\n ".join(_format(self.attributes)),
|
||||||
|
self.edge(dnmap),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Converter:
|
class Converter:
|
||||||
"""An LDIF to DOT converter."""
|
"""An LDIF to DOT converter."""
|
||||||
|
@ -144,7 +150,11 @@ class Converter:
|
||||||
e = Element()
|
e = Element()
|
||||||
if e.is_valid():
|
if e.is_valid():
|
||||||
self._append(e)
|
self._append(e)
|
||||||
return (BASE_TEMPLATE % (name, ''.join([e.dot(self.dnmap) for e in self.elements])))
|
return BASE_TEMPLATE % (
|
||||||
|
name,
|
||||||
|
"".join([e.dot(self.dnmap) for e in self.elements]),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
BASE_TEMPLATE = """\
|
BASE_TEMPLATE = """\
|
||||||
strict digraph "%s" {
|
strict digraph "%s" {
|
||||||
|
@ -191,13 +201,13 @@ ENTRY_TEMPALTE = """\
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == "__main__":
|
||||||
if len(sys.argv) > 2:
|
if len(sys.argv) > 2:
|
||||||
raise 'Expected at most one argument.'
|
raise "Expected at most one argument."
|
||||||
elif len(sys.argv) == 2:
|
elif len(sys.argv) == 2:
|
||||||
name = sys.argv[1]
|
name = sys.argv[1]
|
||||||
file = open(sys.argv[1], 'r')
|
file = open(sys.argv[1], "r")
|
||||||
else:
|
else:
|
||||||
name = '<stdin>'
|
name = "<stdin>"
|
||||||
file = sys.stdin
|
file = sys.stdin
|
||||||
print(Converter().parse(file, name))
|
print(Converter().parse(file, name))
|
||||||
|
|
|
@ -107,7 +107,6 @@ class CommentParameter(_ExtraParameter):
|
||||||
|
|
||||||
|
|
||||||
class AskParameter(_ExtraParameter):
|
class AskParameter(_ExtraParameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Ask for the argument value if possible and needed.
|
Ask for the argument value if possible and needed.
|
||||||
|
|
||||||
|
@ -146,7 +145,6 @@ class AskParameter(_ExtraParameter):
|
||||||
|
|
||||||
|
|
||||||
class PasswordParameter(AskParameter):
|
class PasswordParameter(AskParameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Ask for the password argument value if possible and needed.
|
Ask for the password argument value if possible and needed.
|
||||||
|
|
||||||
|
@ -169,7 +167,6 @@ class PasswordParameter(AskParameter):
|
||||||
|
|
||||||
|
|
||||||
class PatternParameter(_ExtraParameter):
|
class PatternParameter(_ExtraParameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Check if the argument value match a pattern.
|
Check if the argument value match a pattern.
|
||||||
|
|
||||||
|
@ -222,7 +219,6 @@ class PatternParameter(_ExtraParameter):
|
||||||
|
|
||||||
|
|
||||||
class RequiredParameter(_ExtraParameter):
|
class RequiredParameter(_ExtraParameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Check if a required argument is defined or not.
|
Check if a required argument is defined or not.
|
||||||
|
|
||||||
|
@ -262,7 +258,6 @@ extraparameters_list = [
|
||||||
|
|
||||||
|
|
||||||
class ExtraArgumentParser:
|
class ExtraArgumentParser:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Argument validator and parser for the extra parameters.
|
Argument validator and parser for the extra parameters.
|
||||||
|
|
||||||
|
@ -374,7 +369,6 @@ class ExtraArgumentParser:
|
||||||
|
|
||||||
|
|
||||||
class ActionsMap:
|
class ActionsMap:
|
||||||
|
|
||||||
"""Validate and process actions defined into an actions map
|
"""Validate and process actions defined into an actions map
|
||||||
|
|
||||||
The actions map defines the features - and their usage - of an
|
The actions map defines the features - and their usage - of an
|
||||||
|
|
|
@ -11,7 +11,6 @@ logger = logging.getLogger("moulinette.authenticator")
|
||||||
|
|
||||||
|
|
||||||
class BaseAuthenticator:
|
class BaseAuthenticator:
|
||||||
|
|
||||||
"""Authenticator base representation
|
"""Authenticator base representation
|
||||||
|
|
||||||
Each authenticators must implement an Authenticator class derived
|
Each authenticators must implement an Authenticator class derived
|
||||||
|
|
|
@ -18,7 +18,6 @@ def during_unittests_run():
|
||||||
|
|
||||||
|
|
||||||
class Translator:
|
class Translator:
|
||||||
|
|
||||||
"""Internationalization class
|
"""Internationalization class
|
||||||
|
|
||||||
Provide an internationalization mechanism based on JSON files to
|
Provide an internationalization mechanism based on JSON files to
|
||||||
|
@ -173,7 +172,6 @@ class Translator:
|
||||||
|
|
||||||
|
|
||||||
class Moulinette18n:
|
class Moulinette18n:
|
||||||
|
|
||||||
"""Internationalization service for the moulinette
|
"""Internationalization service for the moulinette
|
||||||
|
|
||||||
Manage internationalization and access to the proper keys translation
|
Manage internationalization and access to the proper keys translation
|
||||||
|
@ -270,7 +268,6 @@ class MoulinetteAuthenticationError(MoulinetteError):
|
||||||
|
|
||||||
|
|
||||||
class MoulinetteLock:
|
class MoulinetteLock:
|
||||||
|
|
||||||
"""Locker for a moulinette instance
|
"""Locker for a moulinette instance
|
||||||
|
|
||||||
It provides a lock mechanism for a given moulinette instance. It can
|
It provides a lock mechanism for a given moulinette instance. It can
|
||||||
|
|
|
@ -18,7 +18,6 @@ logger = logging.getLogger("moulinette.interface")
|
||||||
|
|
||||||
|
|
||||||
class BaseActionsMapParser:
|
class BaseActionsMapParser:
|
||||||
|
|
||||||
"""Actions map's base Parser
|
"""Actions map's base Parser
|
||||||
|
|
||||||
Each interfaces must implement an ActionsMapParser class derived
|
Each interfaces must implement an ActionsMapParser class derived
|
||||||
|
@ -148,7 +147,6 @@ class BaseActionsMapParser:
|
||||||
|
|
||||||
|
|
||||||
class _ExtendedSubParsersAction(argparse._SubParsersAction):
|
class _ExtendedSubParsersAction(argparse._SubParsersAction):
|
||||||
|
|
||||||
"""Subparsers with extended properties for argparse
|
"""Subparsers with extended properties for argparse
|
||||||
|
|
||||||
It provides the following additional properties at initialization,
|
It provides the following additional properties at initialization,
|
||||||
|
@ -448,7 +446,6 @@ class PositionalsFirstHelpFormatter(argparse.HelpFormatter):
|
||||||
|
|
||||||
|
|
||||||
class JSONExtendedEncoder(JSONEncoder):
|
class JSONExtendedEncoder(JSONEncoder):
|
||||||
|
|
||||||
"""Extended JSON encoder
|
"""Extended JSON encoder
|
||||||
|
|
||||||
Extend default JSON encoder to recognize more types and classes. It will
|
Extend default JSON encoder to recognize more types and classes. It will
|
||||||
|
|
|
@ -66,14 +66,12 @@ def filter_csrf(callback):
|
||||||
|
|
||||||
|
|
||||||
class LogQueues(dict):
|
class LogQueues(dict):
|
||||||
|
|
||||||
"""Map of session ids to queue."""
|
"""Map of session ids to queue."""
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class APIQueueHandler(logging.Handler):
|
class APIQueueHandler(logging.Handler):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
A handler class which store logging records into a queue, to be used
|
A handler class which store logging records into a queue, to be used
|
||||||
and retrieved from the API.
|
and retrieved from the API.
|
||||||
|
@ -109,7 +107,6 @@ class APIQueueHandler(logging.Handler):
|
||||||
|
|
||||||
|
|
||||||
class _HTTPArgumentParser:
|
class _HTTPArgumentParser:
|
||||||
|
|
||||||
"""Argument parser for HTTP requests
|
"""Argument parser for HTTP requests
|
||||||
|
|
||||||
Object for parsing HTTP requests into Python objects. It is based
|
Object for parsing HTTP requests into Python objects. It is based
|
||||||
|
@ -547,7 +544,6 @@ def format_for_response(content):
|
||||||
|
|
||||||
|
|
||||||
class ActionsMapParser(BaseActionsMapParser):
|
class ActionsMapParser(BaseActionsMapParser):
|
||||||
|
|
||||||
"""Actions map's Parser for the API
|
"""Actions map's Parser for the API
|
||||||
|
|
||||||
Provide actions map parsing methods for a CLI usage. The parser for
|
Provide actions map parsing methods for a CLI usage. The parser for
|
||||||
|
@ -691,7 +687,6 @@ class ActionsMapParser(BaseActionsMapParser):
|
||||||
|
|
||||||
|
|
||||||
class Interface:
|
class Interface:
|
||||||
|
|
||||||
"""Application Programming Interface for the moulinette
|
"""Application Programming Interface for the moulinette
|
||||||
|
|
||||||
Initialize a HTTP server which serves the API connected to a given
|
Initialize a HTTP server which serves the API connected to a given
|
||||||
|
|
|
@ -208,7 +208,6 @@ def get_locale():
|
||||||
|
|
||||||
|
|
||||||
class TTYHandler(logging.StreamHandler):
|
class TTYHandler(logging.StreamHandler):
|
||||||
|
|
||||||
"""TTY log handler
|
"""TTY log handler
|
||||||
|
|
||||||
A handler class which prints logging records for a tty. The record is
|
A handler class which prints logging records for a tty. The record is
|
||||||
|
@ -274,7 +273,6 @@ class TTYHandler(logging.StreamHandler):
|
||||||
|
|
||||||
|
|
||||||
class ActionsMapParser(BaseActionsMapParser):
|
class ActionsMapParser(BaseActionsMapParser):
|
||||||
|
|
||||||
"""Actions map's Parser for the CLI
|
"""Actions map's Parser for the CLI
|
||||||
|
|
||||||
Provide actions map parsing methods for a CLI usage. The parser for
|
Provide actions map parsing methods for a CLI usage. The parser for
|
||||||
|
@ -446,7 +444,6 @@ class ActionsMapParser(BaseActionsMapParser):
|
||||||
|
|
||||||
|
|
||||||
class Interface:
|
class Interface:
|
||||||
|
|
||||||
"""Command-line Interface for the moulinette
|
"""Command-line Interface for the moulinette
|
||||||
|
|
||||||
Initialize an interface connected to the standard input/output
|
Initialize an interface connected to the standard input/output
|
||||||
|
|
|
@ -85,7 +85,6 @@ def getHandlersByClass(classinfo, limit=0):
|
||||||
|
|
||||||
|
|
||||||
class MoulinetteLogger(Logger):
|
class MoulinetteLogger(Logger):
|
||||||
|
|
||||||
"""Custom logger class
|
"""Custom logger class
|
||||||
|
|
||||||
Extend base Logger class to provide the SUCCESS custom log level with
|
Extend base Logger class to provide the SUCCESS custom log level with
|
||||||
|
@ -173,7 +172,6 @@ def getActionLogger(name=None, logger=None, action_id=None):
|
||||||
|
|
||||||
|
|
||||||
class ActionFilter:
|
class ActionFilter:
|
||||||
|
|
||||||
"""Extend log record for an optionnal action
|
"""Extend log record for an optionnal action
|
||||||
|
|
||||||
Filter a given record and look for an `action_id` key. If it is not found
|
Filter a given record and look for an `action_id` key. If it is not found
|
||||||
|
|
|
@ -13,7 +13,6 @@ session_secret = random_ascii()
|
||||||
|
|
||||||
|
|
||||||
class Authenticator(BaseAuthenticator):
|
class Authenticator(BaseAuthenticator):
|
||||||
|
|
||||||
"""Dummy authenticator used for tests"""
|
"""Dummy authenticator used for tests"""
|
||||||
|
|
||||||
name = "dummy"
|
name = "dummy"
|
||||||
|
|
|
@ -13,7 +13,6 @@ session_secret = random_ascii()
|
||||||
|
|
||||||
|
|
||||||
class Authenticator(BaseAuthenticator):
|
class Authenticator(BaseAuthenticator):
|
||||||
|
|
||||||
"""Dummy authenticator used for tests"""
|
"""Dummy authenticator used for tests"""
|
||||||
|
|
||||||
name = "yoloswag"
|
name = "yoloswag"
|
||||||
|
|
Loading…
Add table
Reference in a new issue