1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
#!/usr/bin/env python3
#
# __init__.py
r"""
Sphinx domain for GitHub.com, and related utilities.
.. versionadded:: 2.4.0
.. extensions:: sphinx_toolbox.github
Configuration
--------------
.. latex:vspace:: -10px
.. confval:: github_username
:type: :class:`str`
:required: True
The username of the GitHub account that owns the repository this documentation corresponds to.
.. confval:: github_repository
:type: :class:`str`
:required: True
The GitHub repository this documentation corresponds to.
Usage
------
.. latex:vspace:: -10px
.. rst:role:: github:issue
Role which shows a link to the given issue on GitHub.
If the issue exists, the link has a tooltip that shows the title of the issue.
**Example**
.. rest-example::
:github:issue:`1`
You can also reference an issue in a different repository by adding the repository name inside ``<>``.
.. rest-example::
:github:issue:`7680 <pytest-dev/pytest>`
.. rst:role:: github:pull
Role which shows a link to the given pull request on GitHub.
If the pull requests exists, the link has a tooltip that shows the title of the pull requests.
**Example**
.. rest-example::
:github:pull:`2`
You can also reference a pull request in a different repository by adding the repository name inside ``<>``.
.. rest-example::
:github:pull:`7671 <pytest-dev/pytest>`
.. rst:role:: github:repo
Role which shows a link to the given repository on GitHub.
**Example**
.. rest-example::
:github:repo:`sphinx-toolbox/sphinx-toolbox`
You can also use a different label for the link:.
.. rest-example::
See more in the :github:repo:`pytest repository <pytest-dev/pytest>`.
.. rst:role:: github:user
Role which shows a link to the given user on GitHub.
**Example**
.. rest-example::
:github:user:`domdfcoding`
You can also use a different label for the link:.
.. rest-example::
See more of my :github:user:`repositories <domdfcoding>`.
.. latex:clearpage::
.. rst:role:: github:org
Role which shows a link to the given organization on GitHub.
**Example**
.. rest-example::
:github:org:`sphinx-toolbox`
You can also use a different label for the link:.
.. rest-example::
See more repositories in the :github:org:`pytest-dev org <pytest-dev>`.
Caching
-----------
HTTP requests to obtain issue/pull request titles are cached for four hours.
To clear the cache manually, run:
.. prompt:: bash
python3 -m sphinx_toolbox
API Reference
---------------
Enable this extension from your extension's setup function like so:
.. code-block::
def setup(app: Sphinx) -> Dict[str, Any]:
app.setup_extension('sphinx_toolbox.github')
return {}
This will guarantee that the following values will be available via
:attr:`app.config <sphinx.config.Config>`:
* **github_username** (:class:`str`\) -- The username of the GitHub account that owns the repository this documentation corresponds to.
* **github_repository** (:class:`str`\) -- The GitHub repository this documentation corresponds to.
* **github_url** (:class:`apeye.requests_url.RequestsURL`\) -- The complete URL of the repository on GitHub.
* **github_source_url** (:class:`~apeye.requests_url.RequestsURL`\) -- The base URL for the source code on GitHub.
* **github_issues_url** (:class:`~apeye.requests_url.RequestsURL`\) -- The base URL for the issues on GitHub.
* **github_pull_url** (:class:`~apeye.requests_url.RequestsURL`\) -- The base URL for the pull requests on GitHub.
If the user has not provided either ``github_username`` or ``github_repository``
a :exc:`~.MissingOptionError` will be raised.
.. latex:clearpage::
"""
#
# Copyright © 2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
# 3rd party
from sphinx.application import Sphinx
from sphinx.domains import Domain
from sphinx.environment import BuildEnvironment
# this package
from sphinx_toolbox.config import MissingOptionError, ToolboxConfig
from sphinx_toolbox.github.issues import (
IssueNode,
_depart_issue_node_latex,
_visit_issue_node_latex,
depart_issue_node,
issue_role,
pull_role,
visit_issue_node
)
from sphinx_toolbox.github.repos_and_users import (
GitHubObjectLinkNode,
_depart_github_object_link_node_latex,
_visit_github_object_link_node_latex,
depart_github_object_link_node,
repository_role,
user_role,
visit_github_object_link_node
)
from sphinx_toolbox.utils import SphinxExtMetadata, make_github_url, metadata_add_version
_ = BuildEnvironment
__all__ = ("GitHubDomain", "validate_config", "setup")
class GitHubDomain(Domain):
"""
Sphinx domain for `GitHub.com <https://github.com>`_.
"""
name = "github"
label = "GitHub"
roles = {
"issue": issue_role, # type: ignore[dict-item]
"pull": pull_role, # type: ignore[dict-item]
"user": user_role, # type: ignore[dict-item]
"org": user_role, # type: ignore[dict-item]
"repo": repository_role, # type: ignore[dict-item]
}
def validate_config(app: Sphinx, config: ToolboxConfig) -> None:
"""
Validate the provided configuration values.
See :class:`~sphinx_toolbox.config.ToolboxConfig` for a list of the configuration values.
:param app: The Sphinx application.
:param config:
:type config: :class:`~sphinx.config.Config`
"""
if not config.github_username:
raise MissingOptionError("The 'github_username' option is required.")
else:
config.github_username = str(config.github_username)
if not config.github_repository:
raise MissingOptionError("The 'github_repository' option is required.")
else:
config.github_repository = str(config.github_repository)
config.github_url = make_github_url(config.github_username, config.github_repository)
config.github_source_url = config.github_url / "blob" / "master"
config.github_issues_url = config.github_url / "issues"
config.github_pull_url = config.github_url / "pull"
@metadata_add_version
def setup(app: Sphinx) -> SphinxExtMetadata:
"""
Setup :mod:`sphinx_toolbox.github`.
.. versionadded:: 1.0.0
:param app: The Sphinx application.
"""
app.connect("config-inited", validate_config, priority=850)
app.add_config_value("github_username", None, "env", types=[str])
app.add_config_value("github_repository", None, "env", types=[str])
app.add_domain(GitHubDomain)
# Custom node for issues and PRs
app.add_node(
IssueNode,
html=(visit_issue_node, depart_issue_node),
latex=(_visit_issue_node_latex, _depart_issue_node_latex)
)
app.add_node(
GitHubObjectLinkNode,
html=(visit_github_object_link_node, depart_github_object_link_node),
latex=(_visit_github_object_link_node_latex, _depart_github_object_link_node_latex)
)
return {"parallel_read_safe": True}
|