Skip to content

Commit 278e472

Browse files
committed
code renaming
1 parent 9c20d96 commit 278e472

File tree

75 files changed

+96
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+96
-96
lines changed

README.md

Lines changed: 2 additions & 2 deletions

infrastructure/dumpdb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sudo mysqldump openobjectstorage --no-data | sed 's/ AUTO_INCREMENT=[0-9]*\b//' > db.sql
1+
sudo mysqldump opendistributedfilestorage --no-data | sed 's/ AUTO_INCREMENT=[0-9]*\b//' > db.sql

infrastructure/rmq.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"rabbit_version": "4.0.2",
33
"vhosts": [
44
{
5-
"name": "OpenObjectStorage",
5+
"name": "OpenDistributedFileStorage",
66
"description": "",
77
"tags": [],
88
"default_queue_type": "classic",
@@ -16,7 +16,7 @@
1616
"queues": [
1717
{
1818
"name": "job-queue",
19-
"vhost": "OpenObjectStorage",
19+
"vhost": "OpenDistributedFileStorage",
2020
"durable": true,
2121
"auto_delete": false,
2222
"arguments": {
@@ -27,7 +27,7 @@
2727
"exchanges": [
2828
{
2929
"name": "job-exchange",
30-
"vhost": "OpenObjectStorage",
30+
"vhost": "OpenDistributedFileStorage",
3131
"type": "fanout",
3232
"durable": true,
3333
"auto_delete": false,
@@ -38,7 +38,7 @@
3838
"bindings": [
3939
{
4040
"source": "job-exchange",
41-
"vhost": "OpenObjectStorage",
41+
"vhost": "OpenDistributedFileStorage",
4242
"destination": "job-queue",
4343
"destination_type": "queue",
4444
"routing_key": "",

portal/src/APIService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/RootComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/SettingsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,6 @@ BootstrapApp({
2323
mountPoint: document.body,
2424
rootComponentClass: RootComponent,
2525
routes: routes,
26-
title: "OpenObjectStorage",
26+
title: "OpenDistributedFileStorage",
2727
version: "0.1 beta"
2828
});

portal/src/config.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -18,15 +18,15 @@
1818

1919
import { OAuth2Config } from "acfrontend";
2020

21-
export const CONFIG_BACKEND = process.env.OPENOBJECTSTORAGE_BACKEND!;
22-
export const CONFIG_BACKENDPORT = parseInt(process.env.OPENOBJECTSTORAGE_BACKEND_PORT!);
21+
export const CONFIG_BACKEND = process.env.ODFS_BACKEND!;
22+
export const CONFIG_BACKENDPORT = parseInt(process.env.ODFS_BACKEND_PORT!);
2323

2424
export const CONFIG_OIDC: OAuth2Config = {
2525
flow: "authorizationCode",
26-
authorizeEndpoint: process.env.OPENOBJECTSTORAGE_AUTH_ENDPOINT!,
27-
clientId: process.env.OPENOBJECTSTORAGE_CLIENTID!,
28-
endSessionEndpoint: process.env.OPENOBJECTSTORAGE_ENDSESSION_ENDPOINT!,
29-
redirectURI: process.env.OPENOBJECTSTORAGE_REDIRECTURI!,
30-
tokenEndpoint: process.env.OPENOBJECTSTORAGE_TOKEN_ENDPOINT!,
31-
postLogoutRedirectURI: process.env.OPENOBJECTSTORAGE_POSTLOGOUTREDIRECTURI!
26+
authorizeEndpoint: process.env.ODFS_AUTH_ENDPOINT!,
27+
clientId: process.env.ODFS_CLIENTID!,
28+
endSessionEndpoint: process.env.ODFS_ENDSESSION_ENDPOINT!,
29+
redirectURI: process.env.ODFS_REDIRECTURI!,
30+
tokenEndpoint: process.env.ODFS_TOKEN_ENDPOINT!,
31+
postLogoutRedirectURI: process.env.ODFS_POSTLOGOUTREDIRECTURI!
3232
};

portal/src/containers/CreateContainersComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/containers/ListContainersComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/definitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ContainerSelectionComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/CreateFileVersionComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/DirectoryViewComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/EditAVMetaDataComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/EditFileAttributesComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/FileAccessesComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/FileExplorerComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/FilesGridView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/FilesTableView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ThumbnailComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ViewFileComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ViewFileContentComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ViewFileRevisionsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/ViewFileVersionsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/file-explorer/content/VideoStreamComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/routing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/storage-backends/CreateStorageBackendComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

portal/src/storage-backends/ListStorageBackendsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/BackgroundJob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/FTPFileSystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/__http_registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/access-cache/Compression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/access-cache/FileSequenceCache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/access-cache/YearCache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/access-cache/YearMonthCache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api/containers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api/files.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api/storage-backends.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api/stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api/tags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/api_security.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -17,11 +17,11 @@
1717
* */
1818

1919
export const CONFIG_DB = {
20-
host: process.env.OPENOBJECTSTORAGE_DBHOST!,
21-
user: process.env.OPENOBJECTSTORAGE_DBUSER!,
22-
password: process.env.OPENOBJECTSTORAGE_DBPW!,
20+
host: process.env.ODFS_DBHOST!,
21+
user: process.env.ODFS_DBUSER!,
22+
password: process.env.ODFS_DBPW!,
2323
};
2424

25-
export const CONFIG_OIDP_ENDPOINT = process.env.OPENOBJECTSTORAGE_OIDP_ENDPOINT!;
26-
export const CONFIG_ORIGIN = process.env.OPENOBJECTSTORAGE_ORIGIN!;
27-
export const CONFIG_PORT = process.env.OPENOBJECTSTORAGE_PORT;
25+
export const CONFIG_OIDP_ENDPOINT = process.env.ODFS_OIDP_ENDPOINT!;
26+
export const CONFIG_ORIGIN = process.env.ODFS_ORIGIN!;
27+
export const CONFIG_PORT = process.env.ODFS_PORT;

service/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/data-access/BlobsController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

service/src/data-access/ContainersController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* OpenObjectStorage
2+
* OpenDistributedFileStorage
33
* Copyright (C) 2024 Amir Czwink ([email protected])
44
*
55
* This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)