summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/admin/object-storage.vue
blob: 6c5be220f85b07da509292b77c83283d1ecdfee0 (plain)
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
<template>
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
	<FormSuspense :p="init">
		<div class="_formRoot">
			<FormSwitch v-model="useObjectStorage" class="_formBlock">{{ $ts.useObjectStorage }}</FormSwitch>

			<template v-if="useObjectStorage">
				<FormInput v-model="objectStorageBaseUrl" class="_formBlock">
					<template #label>{{ $ts.objectStorageBaseUrl }}</template>
					<template #caption>{{ $ts.objectStorageBaseUrlDesc }}</template>
				</FormInput>

				<FormInput v-model="objectStorageBucket" class="_formBlock">
					<template #label>{{ $ts.objectStorageBucket }}</template>
					<template #caption>{{ $ts.objectStorageBucketDesc }}</template>
				</FormInput>

				<FormInput v-model="objectStoragePrefix" class="_formBlock">
					<template #label>{{ $ts.objectStoragePrefix }}</template>
					<template #caption>{{ $ts.objectStoragePrefixDesc }}</template>
				</FormInput>

				<FormInput v-model="objectStorageEndpoint" class="_formBlock">
					<template #label>{{ $ts.objectStorageEndpoint }}</template>
					<template #caption>{{ $ts.objectStorageEndpointDesc }}</template>
				</FormInput>

				<FormInput v-model="objectStorageRegion" class="_formBlock">
					<template #label>{{ $ts.objectStorageRegion }}</template>
					<template #caption>{{ $ts.objectStorageRegionDesc }}</template>
				</FormInput>

				<FormSplit :min-width="280">
					<FormInput v-model="objectStorageAccessKey" class="_formBlock">
						<template #prefix><i class="fas fa-key"></i></template>
						<template #label>Access key</template>
					</FormInput>

					<FormInput v-model="objectStorageSecretKey" class="_formBlock">
						<template #prefix><i class="fas fa-key"></i></template>
						<template #label>Secret key</template>
					</FormInput>
				</FormSplit>

				<FormSwitch v-model="objectStorageUseSSL" class="_formBlock">
					<template #label>{{ $ts.objectStorageUseSSL }}</template>
					<template #caption>{{ $ts.objectStorageUseSSLDesc }}</template>
				</FormSwitch>

				<FormSwitch v-model="objectStorageUseProxy" class="_formBlock">
					<template #label>{{ $ts.objectStorageUseProxy }}</template>
					<template #caption>{{ $ts.objectStorageUseProxyDesc }}</template>
				</FormSwitch>

				<FormSwitch v-model="objectStorageSetPublicRead" class="_formBlock">
					<template #label>{{ $ts.objectStorageSetPublicRead }}</template>
				</FormSwitch>

				<FormSwitch v-model="objectStorageS3ForcePathStyle" class="_formBlock">
					<template #label>s3ForcePathStyle</template>
				</FormSwitch>
			</template>
		</div>
	</FormSuspense>
</MkSpacer>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import FormSwitch from '@/components/form/switch.vue';
import FormInput from '@/components/form/input.vue';
import FormGroup from '@/components/form/group.vue';
import FormSuspense from '@/components/form/suspense.vue';
import FormSplit from '@/components/form/split.vue';
import FormSection from '@/components/form/section.vue';
import * as os from '@/os';
import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance';

export default defineComponent({
	components: {
		FormSwitch,
		FormInput,
		FormGroup,
		FormSuspense,
		FormSplit,
		FormSection,
	},

	emits: ['info'],

	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.objectStorage,
				icon: 'fas fa-cloud',
				bg: 'var(--bg)',
				actions: [{
					asFullButton: true,
					icon: 'fas fa-check',
					text: this.$ts.save,
					handler: this.save,
				}],
			},
			useObjectStorage: false,
			objectStorageBaseUrl: null,
			objectStorageBucket: null,
			objectStoragePrefix: null,
			objectStorageEndpoint: null,
			objectStorageRegion: null,
			objectStoragePort: null,
			objectStorageAccessKey: null,
			objectStorageSecretKey: null,
			objectStorageUseSSL: false,
			objectStorageUseProxy: false,
			objectStorageSetPublicRead: false,
			objectStorageS3ForcePathStyle: true,
		}
	},

	methods: {
		async init() {
			const meta = await os.api('meta', { detail: true });
			this.useObjectStorage = meta.useObjectStorage;
			this.objectStorageBaseUrl = meta.objectStorageBaseUrl;
			this.objectStorageBucket = meta.objectStorageBucket;
			this.objectStoragePrefix = meta.objectStoragePrefix;
			this.objectStorageEndpoint = meta.objectStorageEndpoint;
			this.objectStorageRegion = meta.objectStorageRegion;
			this.objectStoragePort = meta.objectStoragePort;
			this.objectStorageAccessKey = meta.objectStorageAccessKey;
			this.objectStorageSecretKey = meta.objectStorageSecretKey;
			this.objectStorageUseSSL = meta.objectStorageUseSSL;
			this.objectStorageUseProxy = meta.objectStorageUseProxy;
			this.objectStorageSetPublicRead = meta.objectStorageSetPublicRead;
			this.objectStorageS3ForcePathStyle = meta.objectStorageS3ForcePathStyle;
		},
		save() {
			os.apiWithDialog('admin/update-meta', {
				useObjectStorage: this.useObjectStorage,
				objectStorageBaseUrl: this.objectStorageBaseUrl ? this.objectStorageBaseUrl : null,
				objectStorageBucket: this.objectStorageBucket ? this.objectStorageBucket : null,
				objectStoragePrefix: this.objectStoragePrefix ? this.objectStoragePrefix : null,
				objectStorageEndpoint: this.objectStorageEndpoint ? this.objectStorageEndpoint : null,
				objectStorageRegion: this.objectStorageRegion ? this.objectStorageRegion : null,
				objectStoragePort: this.objectStoragePort ? this.objectStoragePort : null,
				objectStorageAccessKey: this.objectStorageAccessKey ? this.objectStorageAccessKey : null,
				objectStorageSecretKey: this.objectStorageSecretKey ? this.objectStorageSecretKey : null,
				objectStorageUseSSL: this.objectStorageUseSSL,
				objectStorageUseProxy: this.objectStorageUseProxy,
				objectStorageSetPublicRead: this.objectStorageSetPublicRead,
				objectStorageS3ForcePathStyle: this.objectStorageS3ForcePathStyle,
			}).then(() => {
				fetchInstance();
			});
		}
	}
});
</script>