s/REST( API)?/API/

Bitbucket's API kind of supports REST workflows, but the clearly use it
like an RPC API (the hardcoded schema in `PROJECT_API_URL_FORMAT`
make it particularly clear)
This commit is contained in:
Valentin Lorentz 2021-04-27 18:13:09 +02:00
parent 40e1916510
commit 18b68bd8c7
3 changed files with 7 additions and 7 deletions

View file

@ -34,7 +34,7 @@ class BitbucketListerState:
class BitbucketLister(Lister[BitbucketListerState, List[Dict[str, Any]]]):
"""List origins from Bitbucket using its REST API.
"""List origins from Bitbucket using its API.
Bitbucket API has the following rate-limit configuration:

View file

@ -50,12 +50,12 @@ SourceForgeListerPage = List[SourceForgeListerEntry]
MAIN_SITEMAP_URL = "https://sourceforge.net/allura_sitemap/sitemap.xml"
SITEMAP_XML_NAMESPACE = "{http://www.sitemaps.org/schemas/sitemap/0.9}"
# REST resource endpoint for information about the given project.
# API resource endpoint for information about the given project.
#
# `namespace`: Project namespace. Very often `p`, but can be something else like
# `adobe`
# `project`: Project name, e.g. `seedai`. Can be a subproject, e.g `backapps/website`.
PROJECT_REST_URL_FORMAT = "https://sourceforge.net/rest/{namespace}/{project}"
PROJECT_API_URL_FORMAT = "https://sourceforge.net/rest/{namespace}/{project}"
# Predictable URL for cloning (in the broad sense) a VCS registered for the project.
#
@ -116,7 +116,7 @@ class SourceForgeLister(StatelessLister[SourceForgeListerPage]):
projects.
Each XML sub-sitemap lists project pages, which are not unique per project: a
project can have a wiki, a home, a git, an svn, etc.
For each unique project, we query a REST endpoint that lists (among
For each unique project, we query an API endpoint that lists (among
other things) the tools associated with said project, some of which are
the VCS used. Subprojects are considered separate projects.
Lastly we use the information of which VCS are used to build the predictable
@ -196,7 +196,7 @@ class SourceForgeLister(StatelessLister[SourceForgeListerPage]):
def _get_pages_for_project(
self, namespace, project, last_modified
) -> SourceForgeListerPage:
endpoint = PROJECT_REST_URL_FORMAT.format(namespace=namespace, project=project)
endpoint = PROJECT_API_URL_FORMAT.format(namespace=namespace, project=project)
res = self.page_request(endpoint, {}).json()
tools = res.get("tools")

View file

@ -13,7 +13,7 @@ from requests.exceptions import HTTPError
from swh.lister import USER_AGENT
from swh.lister.sourceforge.lister import (
MAIN_SITEMAP_URL,
PROJECT_REST_URL_FORMAT,
PROJECT_API_URL_FORMAT,
SourceForgeLister,
)
@ -28,7 +28,7 @@ TEST_PROJECTS = {
}
URLS_MATCHER = {
PROJECT_REST_URL_FORMAT.format(namespace=namespace, project=project): project
PROJECT_API_URL_FORMAT.format(namespace=namespace, project=project): project
for project, namespace in TEST_PROJECTS.items()
}