-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.js
69 lines (62 loc) · 2.28 KB
/
mod.js
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
import { crocks, Minio, R } from './deps.js'
import createAdapter from './adapter.js'
import PORT_NAME from './port_name.js'
const { Either } = crocks
const { Left, Right, of } = Either
const { identity, defaultTo, over, lensProp, mergeRight } = R
export default ({ url, region, bucketPrefix, useNamespacedBucket }) => {
const checkBucketPrefix = (config) =>
config.bucketPrefix && config.bucketPrefix.length <= 32 ? Right(config) : Left({
message: 'Prefix name: must be a string 1-32 alphanumeric characters',
})
const setFromEnv = (config) =>
mergeRight({
url: Deno.env.get('MINIO_URL'),
region: Deno.env.get('MINIO_REGION'),
// optional. Credentials in MINIO_URL take precedent
accessKey: Deno.env.get('MINIO_ROOT_USER'),
secretKey: Deno.env.get('MINIO_ROOT_PASSWORD'),
}, config)
const setUseNamespacedBucket = (config) => mergeRight({ useNamespacedBucket: false }, config)
const setClient = (config) =>
over(
lensProp('minio'),
() => {
const minioConfig = new URL(config.url)
return new Minio.Client({
endPoint: minioConfig.hostname,
region: config.region,
// Fallback to credentials pulled from env, if none in MINIO_URL
accessKey: minioConfig.username || config.accessKey,
secretKey: minioConfig.password || config.secretKey,
useSSL: minioConfig.protocol === 'https:',
port: Number(minioConfig.port) || minioConfig.protocol === 'https:' ? 443 : 80,
})
},
config,
)
return Object.freeze({
id: 'minio',
port: PORT_NAME,
load: (prevLoad) =>
of(prevLoad) // credentials can be received from a composed plugin
.map(defaultTo({}))
.map((prevLoad) => mergeRight(prevLoad, { url, region, bucketPrefix, useNamespacedBucket }))
.chain(checkBucketPrefix)
.map(setFromEnv)
.map(setUseNamespacedBucket)
.map(setClient)
.either(
(e) => console.log('Error: In Load Method', e.message),
identity,
),
link: (config) => (_) => {
return createAdapter({
minio: config.minio,
region: config.region,
bucketPrefix: config.bucketPrefix,
useNamespacedBucket: config.useNamespacedBucket,
})
},
})
}