-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.js
121 lines (100 loc) · 4.57 KB
/
index.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
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
'use strict';
// Modules
const _ = require('lodash');
const fs = require('fs');
const path = require('path');
// Default env values
const defaults = {
config: {
appEnv: {
LANDO: 'ON',
LANDO_WEBROOT_USER: 'www-data',
LANDO_WEBROOT_GROUP: 'www-data',
TERM: 'xterm',
},
appLabels: {
'io.lando.container': 'TRUE',
},
},
};
/*
* Helper to get user conf
*/
const uc = () => ({
config: {
appEnv: {
LANDO_HOST_UID: require('./utils/get-uid')(),
LANDO_HOST_GID: require('./utils/get-gid')(),
LANDO_HOST_USER: require('./utils/get-username')(),
},
gid: require('./utils/get-gid')(),
uid: require('./utils/get-uid')(),
username: require('./utils/get-username')(),
},
});
module.exports = async lando => {
// Set some stuff and set seom stuff up
const caDir = path.join(lando.config.userConfRoot, 'certs');
const sshDir = path.join(lando.config.home, '.ssh');
const binDir = path.join(lando.config.userConfRoot, 'bin');
// certs stuff
// @TODO: should this end up elsewhere?
const caName = `${_.capitalize(lando.config.product)}CA`;
const caDomain = lando.config.domain;
const caCert = path.join(caDir, `${caName}.crt`);
const caKey = path.join(caDir, `${caName}.key`);
// Ensure some dirs exist before we start
_.forEach([binDir, caDir, sshDir], dir => fs.mkdirSync(dir, {recursive: true}));
// Ensure we munge plugin stuff together appropriately
lando.events.once('pre-install-plugins', async options => await require('./hooks/lando-setup-common-plugins')(lando, options)); // eslint-disable-line max-len
// move v3 scripts directories as needed
lando.events.on('pre-setup', 0, async () => await require('./hooks/lando-copy-v3-scripts')(lando));
// Ensure we setup docker if needed
lando.events.once('pre-setup', async options => await require(`./hooks/lando-setup-build-engine-${process.platform}`)(lando, options)); // eslint-disable-line max-len
// Ensure we create and install ca if needed
lando.events.once('pre-setup', async options => await require('./hooks/lando-setup-create-ca')(lando, options));
lando.events.once('pre-setup', async options => await require(`./hooks/lando-setup-install-ca-${process.platform}`)(lando, options)); // eslint-disable-line max-len
// also move scripts for init considerations
lando.events.on('pre-init', 0, async () => await require('./hooks/lando-copy-v3-scripts')(lando));
// Ensure we setup docker-compose if needed
lando.events.once('pre-setup', async options => await require('./hooks/lando-setup-orchestrator')(lando, options));
// move v3 scripts directories as needed
lando.events.on('pre-init', 0, async () => await require('./hooks/lando-copy-v3-scripts')(lando));
// make sure Lando Specification 337 is available to all
lando.events.on('post-bootstrap-app', async () => await require('./hooks/lando-add-l337-spec')(lando));
// flush update cache if it needs to be
lando.events.on('ready', async () => await require('./hooks/lando-flush-updates-cache')(lando));
// this is a gross hack we need to do to reset the engine because the lando 3 runtime has no idea
lando.events.on('almost-ready', 1, async () => await require('./hooks/lando-reset-orchestrator')(lando));
lando.events.on('post-setup', 1, async () => await require('./hooks/lando-reset-orchestrator')(lando));
// run engine compat checks
lando.events.on('almost-ready', 2, async () => await require('./hooks/lando-get-compat')(lando));
// throw error if engine/orchestrator is not available
lando.events.once('pre-engine-autostart', async () => await require('./hooks/lando-dep-check')(lando));
// autostart docker if we need to
lando.events.once('engine-autostart', async () => await require('./hooks/lando-autostart-engine')(lando));
// move v3 scripts directories as needed
lando.events.on('pre-engine-start', 0, async () => await require('./hooks/lando-copy-v3-scripts')(lando));
// Return some default things
return _.merge({}, defaults, uc(), {config: {
appEnv: {
LANDO_CA_CERT: '/lando/certs/' + path.basename(caCert),
LANDO_CA_KEY: '/lando/certs/' + path.basename(caKey),
LANDO_CONFIG_DIR: lando.config.userConfRoot,
LANDO_DOMAIN: lando.config.domain,
LANDO_HOST_HOME: lando.config.home,
LANDO_HOST_OS: lando.config.os.platform,
LANDO_HOST_IP: 'host.lando.internal',
LANDO_LEIA: _.toInteger(lando.config.leia),
LANDO_MOUNT: '/app',
},
appLabels: {
'io.lando.id': lando.config.instance,
},
bindAddress: '127.0.0.1',
caCert,
caDomain,
caKey,
maxKeyWarning: 10,
}});
};