From 2e942e6006d19e59f321acd9c232536ce70f2f68 Mon Sep 17 00:00:00 2001 From: zhiren Date: Mon, 24 Jul 2023 16:50:41 -0400 Subject: [PATCH] replace all indoc research in license header with indoc systems --- COPYRIGHT | 4 ++-- app/__init__.py | 4 ++-- app/commands/__init__.py | 4 ++-- app/commands/container_registry.py | 4 ++-- app/commands/dataset.py | 4 ++-- app/commands/entry_point.py | 4 ++-- app/commands/file.py | 4 ++-- app/commands/project.py | 4 ++-- app/commands/user.py | 4 ++-- app/configs/__init__.py | 4 ++-- app/configs/app_config.py | 4 ++-- app/configs/config.py | 4 ++-- app/configs/user_config.py | 4 ++-- app/models/__init__.py | 4 ++-- app/models/enums.py | 4 ++-- app/models/service_meta_class.py | 4 ++-- app/models/singleton.py | 4 ++-- app/models/upload_form.py | 4 ++-- app/pilotcli.py | 4 ++-- app/resources/custom_error.py | 4 ++-- app/resources/custom_help.py | 4 ++-- app/services/__init__.py | 4 ++-- .../container_registry_manager/container_registry_manager.py | 4 ++-- app/services/crypto/__init__.py | 4 ++-- app/services/crypto/crypto.py | 4 ++-- app/services/dataset_manager/dataset_detail.py | 4 ++-- app/services/dataset_manager/dataset_download.py | 4 ++-- app/services/dataset_manager/dataset_list.py | 4 ++-- app/services/dataset_manager/model.py | 4 ++-- app/services/file_manager/__init__.py | 4 ++-- app/services/file_manager/file_download/__init__.py | 4 ++-- app/services/file_manager/file_download/download_client.py | 4 ++-- app/services/file_manager/file_download/model.py | 4 ++-- app/services/file_manager/file_list.py | 4 ++-- app/services/file_manager/file_manifests.py | 4 ++-- app/services/file_manager/file_tag.py | 4 ++-- app/services/file_manager/file_upload/__init__.py | 4 ++-- app/services/file_manager/file_upload/exception.py | 4 ++-- app/services/file_manager/file_upload/file_upload.py | 4 ++-- app/services/file_manager/file_upload/models.py | 4 ++-- app/services/file_manager/file_upload/upload_client.py | 4 ++-- app/services/file_manager/file_upload/upload_validator.py | 4 ++-- app/services/logger_services/__init__.py | 4 ++-- app/services/logger_services/log_functions.py | 4 ++-- app/services/output_manager/__init__.py | 4 ++-- app/services/output_manager/error_handler.py | 4 ++-- app/services/output_manager/help_page.py | 4 ++-- app/services/output_manager/message_handler.py | 4 ++-- app/services/project_manager/__init__.py | 4 ++-- app/services/project_manager/project.py | 4 ++-- app/services/user_authentication/__init__.py | 4 ++-- app/services/user_authentication/decorator.py | 4 ++-- app/services/user_authentication/token_manager.py | 4 ++-- app/services/user_authentication/user_login_logout.py | 4 ++-- app/utils/__init__.py | 4 ++-- app/utils/aggregated.py | 4 ++-- pyproject.toml | 2 +- tests/__init__.py | 4 ++-- tests/app/commands/test_dataset.py | 4 ++-- tests/app/commands/test_file.py | 4 ++-- tests/app/commands/test_user.py | 4 ++-- tests/app/configs/__init__.py | 4 ++-- tests/app/configs/test_user_config.py | 4 ++-- tests/app/services/dataset_manager/test_dataset_detail.py | 4 ++-- tests/app/services/dataset_manager/test_dataset_download.py | 4 ++-- tests/app/services/dataset_manager/test_dataset_list.py | 4 ++-- .../app/services/file_manager/file_upload/test_file_upload.py | 4 ++-- tests/app/services/file_manager/file_upload/test_model.py | 4 ++-- .../services/file_manager/file_upload/test_upload_client.py | 4 ++-- tests/app/services/project_manager/test_project.py | 4 ++-- tests/app/services/user_authentication/test_token_manager.py | 4 ++-- .../services/user_authentication/test_user_login_logout.py | 4 ++-- tests/app/utils/test_aggregated.py | 4 ++-- tests/conftest.py | 4 ++-- tests/fixtures/__init__.py | 4 ++-- tests/fixtures/fake.py | 4 ++-- 76 files changed, 151 insertions(+), 151 deletions(-) diff --git a/COPYRIGHT b/COPYRIGHT index 02313f69..54db7d81 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,3 +1,3 @@ -Copyright (C) 2022 Indoc Research +Copyright (C) 2022 Indoc Systems -Contact Indoc Research for any questions regarding the use of this source code. +Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/__init__.py b/app/__init__.py index ff372835..96b7c430 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/commands/__init__.py b/app/commands/__init__.py index ff372835..96b7c430 100644 --- a/app/commands/__init__.py +++ b/app/commands/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/commands/container_registry.py b/app/commands/container_registry.py index 1ce1394e..c93296fb 100644 --- a/app/commands/container_registry.py +++ b/app/commands/container_registry.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click diff --git a/app/commands/dataset.py b/app/commands/dataset.py index 75d1a27d..141e599d 100644 --- a/app/commands/dataset.py +++ b/app/commands/dataset.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click import questionary diff --git a/app/commands/entry_point.py b/app/commands/entry_point.py index 757e42b7..b7830398 100644 --- a/app/commands/entry_point.py +++ b/app/commands/entry_point.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import os diff --git a/app/commands/file.py b/app/commands/file.py index c5c73177..a77a0dc0 100644 --- a/app/commands/file.py +++ b/app/commands/file.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import json import os diff --git a/app/commands/project.py b/app/commands/project.py index 292b964a..74be4484 100644 --- a/app/commands/project.py +++ b/app/commands/project.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click import questionary diff --git a/app/commands/user.py b/app/commands/user.py index d7cfca56..94888abe 100644 --- a/app/commands/user.py +++ b/app/commands/user.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from typing import Union diff --git a/app/configs/__init__.py b/app/configs/__init__.py index ff372835..96b7c430 100644 --- a/app/configs/__init__.py +++ b/app/configs/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/configs/app_config.py b/app/configs/app_config.py index cf72cadf..e3485e0c 100644 --- a/app/configs/app_config.py +++ b/app/configs/app_config.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.configs.config import ConfigClass diff --git a/app/configs/config.py b/app/configs/config.py index ce291796..7b61c438 100644 --- a/app/configs/config.py +++ b/app/configs/config.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from functools import lru_cache from pathlib import Path diff --git a/app/configs/user_config.py b/app/configs/user_config.py index 3677832a..3b80384f 100644 --- a/app/configs/user_config.py +++ b/app/configs/user_config.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import configparser import os diff --git a/app/models/__init__.py b/app/models/__init__.py index ff372835..96b7c430 100644 --- a/app/models/__init__.py +++ b/app/models/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/models/enums.py b/app/models/enums.py index ee51e7ba..d4f626e4 100644 --- a/app/models/enums.py +++ b/app/models/enums.py @@ -1,6 +1,6 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from enum import Enum diff --git a/app/models/service_meta_class.py b/app/models/service_meta_class.py index 8557c3f9..e449847a 100644 --- a/app/models/service_meta_class.py +++ b/app/models/service_meta_class.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. class MetaService(type): diff --git a/app/models/singleton.py b/app/models/singleton.py index b1785c8a..c78719e8 100644 --- a/app/models/singleton.py +++ b/app/models/singleton.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. class Singleton(type): diff --git a/app/models/upload_form.py b/app/models/upload_form.py index 70945d4a..2cea1b9f 100644 --- a/app/models/upload_form.py +++ b/app/models/upload_form.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.services.file_manager.file_upload.models import FileObject diff --git a/app/pilotcli.py b/app/pilotcli.py index 872cc559..8d882d8e 100644 --- a/app/pilotcli.py +++ b/app/pilotcli.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click import requests diff --git a/app/resources/custom_error.py b/app/resources/custom_error.py index 10d594d4..253d8b9c 100644 --- a/app/resources/custom_error.py +++ b/app/resources/custom_error.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. class Error: diff --git a/app/resources/custom_help.py b/app/resources/custom_help.py index 6c154ae5..1b57fe49 100644 --- a/app/resources/custom_help.py +++ b/app/resources/custom_help.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. class HelpPage: diff --git a/app/services/__init__.py b/app/services/__init__.py index ff372835..96b7c430 100644 --- a/app/services/__init__.py +++ b/app/services/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/container_registry_manager/container_registry_manager.py b/app/services/container_registry_manager/container_registry_manager.py index d4053a45..fff0f492 100644 --- a/app/services/container_registry_manager/container_registry_manager.py +++ b/app/services/container_registry_manager/container_registry_manager.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from json import loads diff --git a/app/services/crypto/__init__.py b/app/services/crypto/__init__.py index ff372835..96b7c430 100644 --- a/app/services/crypto/__init__.py +++ b/app/services/crypto/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/crypto/crypto.py b/app/services/crypto/crypto.py index 026d2d87..40b01b9c 100644 --- a/app/services/crypto/crypto.py +++ b/app/services/crypto/crypto.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import base64 import os diff --git a/app/services/dataset_manager/dataset_detail.py b/app/services/dataset_manager/dataset_detail.py index 0824d32e..daeb72c8 100644 --- a/app/services/dataset_manager/dataset_detail.py +++ b/app/services/dataset_manager/dataset_detail.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import requests diff --git a/app/services/dataset_manager/dataset_download.py b/app/services/dataset_manager/dataset_download.py index 6ee02c64..fdf6ca52 100644 --- a/app/services/dataset_manager/dataset_download.py +++ b/app/services/dataset_manager/dataset_download.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import datetime import os diff --git a/app/services/dataset_manager/dataset_list.py b/app/services/dataset_manager/dataset_list.py index ed69fe85..75b50a2f 100644 --- a/app/services/dataset_manager/dataset_list.py +++ b/app/services/dataset_manager/dataset_list.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.configs.app_config import AppConfig from app.configs.user_config import UserConfig diff --git a/app/services/dataset_manager/model.py b/app/services/dataset_manager/model.py index d57d78cf..b2c3a8c6 100644 --- a/app/services/dataset_manager/model.py +++ b/app/services/dataset_manager/model.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from enum import Enum diff --git a/app/services/file_manager/__init__.py b/app/services/file_manager/__init__.py index ff372835..96b7c430 100644 --- a/app/services/file_manager/__init__.py +++ b/app/services/file_manager/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/file_manager/file_download/__init__.py b/app/services/file_manager/file_download/__init__.py index ff372835..96b7c430 100644 --- a/app/services/file_manager/file_download/__init__.py +++ b/app/services/file_manager/file_download/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/file_manager/file_download/download_client.py b/app/services/file_manager/file_download/download_client.py index 2586e580..79ed1677 100644 --- a/app/services/file_manager/file_download/download_client.py +++ b/app/services/file_manager/file_download/download_client.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import concurrent.futures import os diff --git a/app/services/file_manager/file_download/model.py b/app/services/file_manager/file_download/model.py index d57d78cf..b2c3a8c6 100644 --- a/app/services/file_manager/file_download/model.py +++ b/app/services/file_manager/file_download/model.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from enum import Enum diff --git a/app/services/file_manager/file_list.py b/app/services/file_manager/file_list.py index 5abf963c..7c178e5b 100644 --- a/app/services/file_manager/file_list.py +++ b/app/services/file_manager/file_list.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click import questionary diff --git a/app/services/file_manager/file_manifests.py b/app/services/file_manager/file_manifests.py index e6e98093..72b8cc42 100644 --- a/app/services/file_manager/file_manifests.py +++ b/app/services/file_manager/file_manifests.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import json diff --git a/app/services/file_manager/file_tag.py b/app/services/file_manager/file_tag.py index 91c3e34a..428b3920 100644 --- a/app/services/file_manager/file_tag.py +++ b/app/services/file_manager/file_tag.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import re diff --git a/app/services/file_manager/file_upload/__init__.py b/app/services/file_manager/file_upload/__init__.py index ff372835..96b7c430 100644 --- a/app/services/file_manager/file_upload/__init__.py +++ b/app/services/file_manager/file_upload/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/file_manager/file_upload/exception.py b/app/services/file_manager/file_upload/exception.py index c85c5706..5c7c5b71 100644 --- a/app/services/file_manager/file_upload/exception.py +++ b/app/services/file_manager/file_upload/exception.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. class INVALID_CHUNK_ETAG(Exception): diff --git a/app/services/file_manager/file_upload/file_upload.py b/app/services/file_manager/file_upload/file_upload.py index 1e8814c0..a9000e6d 100644 --- a/app/services/file_manager/file_upload/file_upload.py +++ b/app/services/file_manager/file_upload/file_upload.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import math import os diff --git a/app/services/file_manager/file_upload/models.py b/app/services/file_manager/file_upload/models.py index e722d8e7..fa0875e9 100644 --- a/app/services/file_manager/file_upload/models.py +++ b/app/services/file_manager/file_upload/models.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import math from enum import Enum diff --git a/app/services/file_manager/file_upload/upload_client.py b/app/services/file_manager/file_upload/upload_client.py index 1e1ebbac..0427c796 100644 --- a/app/services/file_manager/file_upload/upload_client.py +++ b/app/services/file_manager/file_upload/upload_client.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import hashlib import json diff --git a/app/services/file_manager/file_upload/upload_validator.py b/app/services/file_manager/file_upload/upload_validator.py index c7b754ad..3e48dcde 100644 --- a/app/services/file_manager/file_upload/upload_validator.py +++ b/app/services/file_manager/file_upload/upload_validator.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import os diff --git a/app/services/logger_services/__init__.py b/app/services/logger_services/__init__.py index ff372835..96b7c430 100644 --- a/app/services/logger_services/__init__.py +++ b/app/services/logger_services/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/logger_services/log_functions.py b/app/services/logger_services/log_functions.py index 036a0bf4..d27af885 100644 --- a/app/services/logger_services/log_functions.py +++ b/app/services/logger_services/log_functions.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click diff --git a/app/services/output_manager/__init__.py b/app/services/output_manager/__init__.py index ff372835..96b7c430 100644 --- a/app/services/output_manager/__init__.py +++ b/app/services/output_manager/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/output_manager/error_handler.py b/app/services/output_manager/error_handler.py index e79ee130..1902d0f7 100644 --- a/app/services/output_manager/error_handler.py +++ b/app/services/output_manager/error_handler.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import enum import sys diff --git a/app/services/output_manager/help_page.py b/app/services/output_manager/help_page.py index 17793d71..d48d0e2b 100644 --- a/app/services/output_manager/help_page.py +++ b/app/services/output_manager/help_page.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import enum diff --git a/app/services/output_manager/message_handler.py b/app/services/output_manager/message_handler.py index 833d8033..0afb6de6 100644 --- a/app/services/output_manager/message_handler.py +++ b/app/services/output_manager/message_handler.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import io diff --git a/app/services/project_manager/__init__.py b/app/services/project_manager/__init__.py index ff372835..96b7c430 100644 --- a/app/services/project_manager/__init__.py +++ b/app/services/project_manager/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/project_manager/project.py b/app/services/project_manager/project.py index f0a7ca20..8a8c930b 100644 --- a/app/services/project_manager/project.py +++ b/app/services/project_manager/project.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import requests diff --git a/app/services/user_authentication/__init__.py b/app/services/user_authentication/__init__.py index ff372835..96b7c430 100644 --- a/app/services/user_authentication/__init__.py +++ b/app/services/user_authentication/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/services/user_authentication/decorator.py b/app/services/user_authentication/decorator.py index a69173e1..9d321060 100644 --- a/app/services/user_authentication/decorator.py +++ b/app/services/user_authentication/decorator.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from functools import wraps diff --git a/app/services/user_authentication/token_manager.py b/app/services/user_authentication/token_manager.py index 80b4aa0e..ebc574d0 100644 --- a/app/services/user_authentication/token_manager.py +++ b/app/services/user_authentication/token_manager.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import time diff --git a/app/services/user_authentication/user_login_logout.py b/app/services/user_authentication/user_login_logout.py index a66b1ae0..33d71838 100644 --- a/app/services/user_authentication/user_login_logout.py +++ b/app/services/user_authentication/user_login_logout.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import time from typing import Any diff --git a/app/utils/__init__.py b/app/utils/__init__.py index ff372835..96b7c430 100644 --- a/app/utils/__init__.py +++ b/app/utils/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/app/utils/aggregated.py b/app/utils/aggregated.py index 5fcbaab5..440e26e5 100644 --- a/app/utils/aggregated.py +++ b/app/utils/aggregated.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import os import re diff --git a/pyproject.toml b/pyproject.toml index 10616c2c..957a5c54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "app" version = "2.5.2" description = "This service is designed to support pilot platform" -authors = ["Indoc Research"] +authors = ["Indoc Systems"] [tool.poetry.dependencies] python = ">=3.7,<3.11" diff --git a/tests/__init__.py b/tests/__init__.py index ff372835..96b7c430 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/tests/app/commands/test_dataset.py b/tests/app/commands/test_dataset.py index 76e2ac5e..3d6d5fca 100644 --- a/tests/app/commands/test_dataset.py +++ b/tests/app/commands/test_dataset.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.commands.dataset import dataset_download from app.configs.app_config import AppConfig diff --git a/tests/app/commands/test_file.py b/tests/app/commands/test_file.py index e3aa4721..0e01a49b 100644 --- a/tests/app/commands/test_file.py +++ b/tests/app/commands/test_file.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import click import questionary diff --git a/tests/app/commands/test_user.py b/tests/app/commands/test_user.py index 70e3bb79..3d2ff335 100644 --- a/tests/app/commands/test_user.py +++ b/tests/app/commands/test_user.py @@ -1,6 +1,6 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import jwt diff --git a/tests/app/configs/__init__.py b/tests/app/configs/__init__.py index 950d1b40..cad2bb80 100644 --- a/tests/app/configs/__init__.py +++ b/tests/app/configs/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/tests/app/configs/test_user_config.py b/tests/app/configs/test_user_config.py index 24a483be..ed8c3aeb 100644 --- a/tests/app/configs/test_user_config.py +++ b/tests/app/configs/test_user_config.py @@ -1,6 +1,6 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import os import stat diff --git a/tests/app/services/dataset_manager/test_dataset_detail.py b/tests/app/services/dataset_manager/test_dataset_detail.py index 5628fffa..caaa3459 100644 --- a/tests/app/services/dataset_manager/test_dataset_detail.py +++ b/tests/app/services/dataset_manager/test_dataset_detail.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import pytest diff --git a/tests/app/services/dataset_manager/test_dataset_download.py b/tests/app/services/dataset_manager/test_dataset_download.py index 0afea52e..49537bbe 100644 --- a/tests/app/services/dataset_manager/test_dataset_download.py +++ b/tests/app/services/dataset_manager/test_dataset_download.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.configs.app_config import AppConfig from app.services.dataset_manager.dataset_download import SrvDatasetDownloadManager diff --git a/tests/app/services/dataset_manager/test_dataset_list.py b/tests/app/services/dataset_manager/test_dataset_list.py index 8e010101..43c5be1d 100644 --- a/tests/app/services/dataset_manager/test_dataset_list.py +++ b/tests/app/services/dataset_manager/test_dataset_list.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.services.dataset_manager.dataset_list import SrvDatasetListManager diff --git a/tests/app/services/file_manager/file_upload/test_file_upload.py b/tests/app/services/file_manager/file_upload/test_file_upload.py index d7d09174..b3b4d9b6 100644 --- a/tests/app/services/file_manager/file_upload/test_file_upload.py +++ b/tests/app/services/file_manager/file_upload/test_file_upload.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.configs.app_config import AppConfig from app.services.file_manager.file_upload.file_upload import assemble_path diff --git a/tests/app/services/file_manager/file_upload/test_model.py b/tests/app/services/file_manager/file_upload/test_model.py index 7b9924ab..2a53c17f 100644 --- a/tests/app/services/file_manager/file_upload/test_model.py +++ b/tests/app/services/file_manager/file_upload/test_model.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.configs.app_config import AppConfig from app.services.file_manager.file_upload.models import FileObject diff --git a/tests/app/services/file_manager/file_upload/test_upload_client.py b/tests/app/services/file_manager/file_upload/test_upload_client.py index be07b178..4f7b3bf3 100644 --- a/tests/app/services/file_manager/file_upload/test_upload_client.py +++ b/tests/app/services/file_manager/file_upload/test_upload_client.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import re from functools import wraps diff --git a/tests/app/services/project_manager/test_project.py b/tests/app/services/project_manager/test_project.py index c4d35e61..d7df8fdf 100644 --- a/tests/app/services/project_manager/test_project.py +++ b/tests/app/services/project_manager/test_project.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. from app.services.project_manager.project import SrvProjectManager diff --git a/tests/app/services/user_authentication/test_token_manager.py b/tests/app/services/user_authentication/test_token_manager.py index f47e2208..50379c80 100644 --- a/tests/app/services/user_authentication/test_token_manager.py +++ b/tests/app/services/user_authentication/test_token_manager.py @@ -1,6 +1,6 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import jwt diff --git a/tests/app/services/user_authentication/test_user_login_logout.py b/tests/app/services/user_authentication/test_user_login_logout.py index 33fd5cec..5af15cdf 100644 --- a/tests/app/services/user_authentication/test_user_login_logout.py +++ b/tests/app/services/user_authentication/test_user_login_logout.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import pytest diff --git a/tests/app/utils/test_aggregated.py b/tests/app/utils/test_aggregated.py index 6d6e7645..5617376e 100644 --- a/tests/app/utils/test_aggregated.py +++ b/tests/app/utils/test_aggregated.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import pytest diff --git a/tests/conftest.py b/tests/conftest.py index 41dd3eaf..fcb01dd1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,6 @@ -# Copyright (C) 2022-2023 Indoc Research +# Copyright (C) 2022-2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import time diff --git a/tests/fixtures/__init__.py b/tests/fixtures/__init__.py index 950d1b40..cad2bb80 100644 --- a/tests/fixtures/__init__.py +++ b/tests/fixtures/__init__.py @@ -1,3 +1,3 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. diff --git a/tests/fixtures/fake.py b/tests/fixtures/fake.py index d4bc9933..7db1d77e 100644 --- a/tests/fixtures/fake.py +++ b/tests/fixtures/fake.py @@ -1,6 +1,6 @@ -# Copyright (C) 2023 Indoc Research +# Copyright (C) 2023 Indoc Systems # -# Contact Indoc Research for any questions regarding the use of this source code. +# Contact Indoc Systems for any questions regarding the use of this source code. import faker import pytest