Skip to content
Snippets Groups Projects
Commit 00577d73 authored by David Douard's avatar David Douard
Browse files

config: remove (now unused) hardcoded swh urls

remove SWH_WEB_XXX_NAMES constants as well as 'xxx_server_names' config
entries. These are not used any more.
parent 46a3271c
No related branches found
No related tags found
1 merge request!1373Several refactorings trying to simplify a bit a few things
......@@ -25,17 +25,6 @@ if TYPE_CHECKING:
from swh.storage.interface import StorageInterface
from swh.vault.interface import VaultInterface
SWH_WEB_INTERNAL_SERVER_NAMES = [
"archive.internal.softwareheritage.org",
"webapp1.internal.softwareheritage.org",
]
SWH_WEB_SERVER_NAMES = ["archive.softwareheritage.org"] + SWH_WEB_INTERNAL_SERVER_NAMES
SWH_WEB_STAGING_SERVER_NAMES = [
"webapp.staging.swh.network",
"webapp.internal.staging.swh.network",
]
SETTINGS_DIR = os.path.dirname(settings.__file__)
DEFAULT_CONFIG = {
......@@ -172,8 +161,6 @@ DEFAULT_CONFIG = {
},
),
"counters_backend": ("string", "swh-storage"), # or "swh-counters"
"staging_server_names": ("list", SWH_WEB_STAGING_SERVER_NAMES),
"production_server_names": ("list", SWH_WEB_SERVER_NAMES),
"instance_name": ("str", "archive-test.softwareheritage.org"),
"give": ("dict", {"public_key": "", "token": ""}),
"features": ("dict", {"add_forge_now": True}),
......
......@@ -250,33 +250,6 @@ def get_client_ip(request):
return ip
def is_swh_web_development(request: HttpRequest) -> bool:
"""Indicate if we are running a development version of swh-web."""
site_base_url = request.build_absolute_uri("/")
return any(
host in site_base_url for host in ("localhost", "127.0.0.1", "testserver")
)
def is_swh_web_staging(request: HttpRequest) -> bool:
"""Indicate if we are running a staging version of swh-web."""
config = get_config()
site_base_url = request.build_absolute_uri("/")
return any(
server_name in site_base_url for server_name in config["staging_server_names"]
)
def is_swh_web_production(request: HttpRequest) -> bool:
"""Indicate if we are running the public production version of swh-web."""
config = get_config()
site_base_url = request.build_absolute_uri("/")
return any(
server_name in site_base_url
for server_name in config["production_server_names"]
)
browsers_supported_image_mimes = set(
[
"image/gif",
......@@ -315,9 +288,6 @@ def context_processor(request):
"site_base_url": request.build_absolute_uri("/")[:-1],
"DJANGO_SETTINGS_MODULE": os.environ["DJANGO_SETTINGS_MODULE"],
"status": config.get("status", {}),
"swh_web_dev": is_swh_web_development(request),
"swh_web_staging": is_swh_web_staging(request),
"swh_web_prod": is_swh_web_production(request),
"swh_web_version": version("swh.web"),
"iframe_mode": False,
"ADMIN_LIST_DEPOSIT_PERMISSION": ADMIN_LIST_DEPOSIT_PERMISSION,
......
......@@ -17,20 +17,13 @@ from django.test.utils import override_settings
from django.urls import re_path as url
from django.urls.exceptions import NoReverseMatch
from swh.web.config import (
SWH_WEB_SERVER_NAMES,
SWH_WEB_STAGING_SERVER_NAMES,
get_config,
)
from swh.web.config import get_config
from swh.web.utils import (
cache,
django_cache,
format_utc_iso_date,
gen_path_info,
get_deposits_list,
is_swh_web_development,
is_swh_web_production,
is_swh_web_staging,
origin_visit_types,
parse_iso8601_date_to_utc,
reverse,
......@@ -462,23 +455,6 @@ def test_origin_visit_types(mocker, backend):
assert origin_visit_types() == ["git", "git-checkout", "tar"]
@pytest.mark.parametrize("server_name", ["localhost", "127.0.0.1", "testserver"])
def test_is_swh_web_development(request_factory, server_name):
request = request_factory.get("/", SERVER_NAME=server_name)
assert is_swh_web_development(request)
@pytest.mark.parametrize("server_name", SWH_WEB_STAGING_SERVER_NAMES)
def test_is_swh_web_staging(request_factory, server_name):
request = request_factory.get("/", SERVER_NAME=server_name)
assert is_swh_web_staging(request)
def test_is_swh_web_production(request_factory):
request = request_factory.get("/", SERVER_NAME=SWH_WEB_SERVER_NAMES[0])
assert is_swh_web_production(request)
def add(x, y):
return x + y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment