Source code for distro_tracker.vendor.skeleton.rules
# Copyright 2013-2015 The Distro Tracker Developers
# See the COPYRIGHT file at the top-level directory of this distribution and
# at https://deb.li/DTAuthors
#
# This file is part of Distro Tracker. It is subject to the license terms
# in the LICENSE file found in the top-level directory of this
# distribution and at https://deb.li/DTLicense. No part of Distro Tracker,
# including this file, may be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
"""
A skeleton of all vendor-specific function that can be implemented.
"""
[docs]def classify_message(msg, package=None, keyword=None):
"""
The function should analyze the message and decides which package
is affected and the keyword to use when relaying the message to
subscribers.
:param msg: The message to analyze
:type msg: :py:class:`email.message.Message`
:param str package: A suggested package. May be ``None``.
:param str keyword: A suggested keyword. May be ``None``.
"""
return (package, keyword)
[docs]def approve_default_message(msg):
"""
The function should return a ``Boolean`` indicating whether this message
should be forwarded to subscribers which are subscribed to default
keyword messages.
:param msg: The original received package message
:type msg: :py:class:`email.message.Message`
"""
pass
[docs]def get_pseudo_package_list():
"""
The function should return a list of pseudo-packages (their names) which
are to be considered valid pseudo-packages.
Any existing pseudo-packages which are no longer found in this list will be
"demoted" to subscription-only packages, instead of being deleted.
If there should be no update to the list, the function should return
``None``.
"""
pass
[docs]def get_maintainer_extra(developer_email, package_name=None):
"""
The function should return a list of additional items that are to be
included in the general panel next to the maintainer.
Each item needs to be a dictionary itself and can contain the following
keys:
- display
- description
- url
.. note::
Only the ``display`` key is mandatory.
The function should return ``None`` if the vendor does not wish to include
any extra items.
:param developer_email: The email of the maintainer for which extra
information is requested.
:param package_name: The name of the package where the contributor is the
maintainer and for which extra information should be provided.
This parameter is included in case vendors want to provide different
information based on the package page where the information will be
displayed.
"""
pass
[docs]def allow_package(stanza):
"""
The function provides a way for vendors to exclude some packages from being
saved in the database.
:param stanza: The raw package entry from a ``Sources`` file.
:type stanza: case-insensitive dict
"""
pass
[docs]def create_news_from_email_message(message):
"""
The function provides a way for vendors to customize the news created from
received emails.
The function should create a :class:`distro_tracker.core.models.News` model
instance for any news items it wishes to generate out of the received email
message. The content type of the created :class:`News
<distro_tracker.core.models.News>` does not have to be ``message/rfc822`` if
the created news is only based on information found in the message. It
should be set to ``message/rfc822`` if the content of the news is set to the
content of the email message to make sure it is rendered appropriately.
The function :func:`distro_tracker.mail.mail_news.process.create_news` can
be used to create simple news from the message after determining that it
should in fact be created.
The function should return a list of created
:class:`News <distro_tracker.core.models.News>`
instances or ``None`` if it did not create any.
"""
pass
[docs]def get_table_fields(table):
"""
The function provides additional fields which should be displayed in a table
One may add new specific :class:`BaseTableField`
to the fields defined in the table's function :func:`default_fields
<distro_tracker.core.package_tables.BasePackageTable.default_fields>`.
However, it is also possible to redefine the entire list of
:class:`BaseTableField` that must be displayed in the table.
The return value should be a list of such table fields or ``None`` if the
vendor does not wish to provide any additional fields.
:param table: The table for which additional fields should be
provided.
:type table: :class:`BasePackageTable
<distro_tracker.core.package_tables.BasePackageTable>`
"""
pass
[docs]def get_vcs_data(package):
"""
The function provides additional data which should be displayed in the
VCS table field.
The return value should be a dictionary which will be merged with
default context data defined by :func:`context
<distro_tracker.core.package_tables.VcsTableField.context>` function.
If this function is defined then its return value is simply passed to the
template and does not require any special format; the vendor's template can
access this value in the ``field.context`` context variable and can use it
any way it wants.
:param package: The package for which additional vcs data should be
provided.
:type package: :class:`PackageName
<distro_tracker.core.models.PackageName>`
"""
pass
[docs]def get_bug_display_manager_class():
"""
The function must return the class responsible for handling the dysplaying
logic of bugs data. To this end, vendors must define a new class
that either inherits from :class:`BugDisplayManager
<distro_tracker.core.models.BugDisplayManager>` or implements the same
interface defined by it.
"""
pass
[docs]def get_tables_for_team_page(team, limit):
"""
The function must return a list of :class:`BaseTableField` objects
to be displayed in the main page of teams
:param team: The team for which the tables must be added.
:type package: :class:`Team
<distro_tracker.core.models.Team>`
:param limit: The number of packages to be displayed in the tables
:type limit: Integer
"""
pass