2017-12-20 21:46:01 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016-2017 Resin.io
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2018-07-19 19:18:43 +00:00
|
|
|
import * as fs from 'fs';
|
|
|
|
|
2017-12-20 21:46:01 +00:00
|
|
|
import Promise = require('bluebird');
|
|
|
|
import ResinSdk = require('resin-sdk');
|
|
|
|
import deviceConfig = require('resin-device-config');
|
2018-07-11 18:56:13 +00:00
|
|
|
import * as semver from 'resin-semver';
|
2017-12-20 21:46:01 +00:00
|
|
|
|
|
|
|
const resin = ResinSdk.fromSharedOptions();
|
|
|
|
|
2018-07-19 19:18:43 +00:00
|
|
|
function readRootCa(): Promise<string | void> {
|
|
|
|
const caFile = process.env.NODE_EXTRA_CA_CERTS;
|
|
|
|
if (!caFile) {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
return Promise.fromCallback(cb =>
|
|
|
|
fs.readFile(caFile, { encoding: 'utf8' }, cb),
|
|
|
|
)
|
|
|
|
.then(pem => Buffer.from(pem).toString('base64'))
|
|
|
|
.catch({ code: 'ENOENT' }, () => {});
|
|
|
|
}
|
|
|
|
|
2018-01-09 15:05:24 +00:00
|
|
|
export function generateBaseConfig(
|
|
|
|
application: ResinSdk.Application,
|
2018-07-11 18:56:13 +00:00
|
|
|
options: { version?: string; appUpdatePollInterval?: number },
|
2018-01-09 15:05:24 +00:00
|
|
|
) {
|
2018-07-17 13:38:38 +00:00
|
|
|
if (options.appUpdatePollInterval) {
|
|
|
|
options = {
|
|
|
|
...options,
|
|
|
|
appUpdatePollInterval: options.appUpdatePollInterval * 60 * 1000,
|
|
|
|
};
|
|
|
|
}
|
2017-12-20 21:46:01 +00:00
|
|
|
|
|
|
|
return Promise.props({
|
|
|
|
userId: resin.auth.getUserId(),
|
|
|
|
username: resin.auth.whoami(),
|
|
|
|
apiUrl: resin.settings.get('apiUrl'),
|
|
|
|
vpnUrl: resin.settings.get('vpnUrl'),
|
|
|
|
registryUrl: resin.settings.get('registryUrl'),
|
|
|
|
deltaUrl: resin.settings.get('deltaUrl'),
|
2018-01-04 16:17:43 +00:00
|
|
|
apiConfig: resin.models.config.getAll(),
|
2018-07-19 19:18:43 +00:00
|
|
|
rootCA: readRootCa().catch(() => {
|
|
|
|
console.warn('Could not read root CA');
|
|
|
|
}),
|
2018-01-09 15:05:24 +00:00
|
|
|
}).then(results => {
|
|
|
|
return deviceConfig.generate(
|
|
|
|
{
|
|
|
|
application,
|
|
|
|
user: {
|
|
|
|
id: results.userId,
|
|
|
|
username: results.username,
|
|
|
|
},
|
|
|
|
endpoints: {
|
|
|
|
api: results.apiUrl,
|
|
|
|
vpn: results.vpnUrl,
|
|
|
|
registry: results.registryUrl,
|
|
|
|
delta: results.deltaUrl,
|
|
|
|
},
|
|
|
|
pubnub: results.apiConfig.pubnub,
|
|
|
|
mixpanel: {
|
|
|
|
token: results.apiConfig.mixpanelToken,
|
|
|
|
},
|
2018-07-19 19:18:43 +00:00
|
|
|
balenaRootCA: results.rootCA,
|
2017-12-20 21:46:01 +00:00
|
|
|
},
|
2018-01-09 15:05:24 +00:00
|
|
|
options,
|
|
|
|
);
|
2017-12-20 21:46:01 +00:00
|
|
|
});
|
2018-01-04 14:07:55 +00:00
|
|
|
}
|
2017-12-20 21:46:01 +00:00
|
|
|
|
2018-01-09 15:05:24 +00:00
|
|
|
export function generateApplicationConfig(
|
|
|
|
application: ResinSdk.Application,
|
2018-07-11 18:56:13 +00:00
|
|
|
options: { version?: string },
|
2018-01-09 15:05:24 +00:00
|
|
|
) {
|
2018-07-11 18:56:13 +00:00
|
|
|
return generateBaseConfig(application, options).tap(config => {
|
|
|
|
if (semver.satisfies(options.version, '>=2.7.8')) {
|
|
|
|
return addProvisioningKey(config, application.id);
|
|
|
|
} else {
|
|
|
|
return addApplicationKey(config, application.id);
|
|
|
|
}
|
|
|
|
});
|
2017-12-20 21:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function generateDeviceConfig(
|
2018-07-11 16:57:26 +00:00
|
|
|
device: ResinSdk.Device & { belongs_to__application: ResinSdk.PineDeferred },
|
2018-07-10 17:45:48 +00:00
|
|
|
deviceApiKey: string | true | null,
|
2018-07-11 18:56:13 +00:00
|
|
|
options: { version?: string },
|
2017-12-20 21:46:01 +00:00
|
|
|
) {
|
2018-01-09 15:05:24 +00:00
|
|
|
return resin.models.application
|
2018-07-11 16:57:26 +00:00
|
|
|
.get(device.belongs_to__application.__id)
|
2018-01-09 15:05:24 +00:00
|
|
|
.then(application => {
|
|
|
|
return generateBaseConfig(application, options).tap(config => {
|
|
|
|
if (deviceApiKey) {
|
|
|
|
return addDeviceKey(config, device.uuid, deviceApiKey);
|
2018-07-11 18:56:13 +00:00
|
|
|
} else if (semver.satisfies(options.version, '>=2.0.3')) {
|
|
|
|
return addDeviceKey(config, device.uuid, true);
|
2018-01-09 15:05:24 +00:00
|
|
|
} else {
|
|
|
|
return addApplicationKey(config, application.id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.then(config => {
|
|
|
|
// Associate a device, to prevent the supervisor
|
|
|
|
// from creating another one on its own.
|
|
|
|
config.registered_at = Math.floor(Date.now() / 1000);
|
|
|
|
config.deviceId = device.id;
|
|
|
|
config.uuid = device.uuid;
|
2017-12-20 21:46:01 +00:00
|
|
|
|
2018-01-09 15:05:24 +00:00
|
|
|
return config;
|
|
|
|
});
|
2018-01-04 14:07:55 +00:00
|
|
|
}
|
2017-12-20 21:46:01 +00:00
|
|
|
|
2018-01-04 16:17:43 +00:00
|
|
|
function addApplicationKey(config: any, applicationNameOrId: string | number) {
|
2018-01-09 15:05:24 +00:00
|
|
|
return resin.models.application
|
|
|
|
.generateApiKey(applicationNameOrId)
|
|
|
|
.tap(apiKey => {
|
|
|
|
config.apiKey = apiKey;
|
|
|
|
});
|
2018-01-04 14:07:55 +00:00
|
|
|
}
|
2017-12-20 21:46:01 +00:00
|
|
|
|
2018-07-11 18:56:13 +00:00
|
|
|
function addProvisioningKey(config: any, applicationNameOrId: string | number) {
|
|
|
|
return resin.models.application
|
|
|
|
.generateProvisioningKey(applicationNameOrId)
|
|
|
|
.tap(apiKey => {
|
|
|
|
config.apiKey = apiKey;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:45:48 +00:00
|
|
|
function addDeviceKey(
|
|
|
|
config: any,
|
|
|
|
uuid: string,
|
|
|
|
customDeviceApiKey: string | true,
|
|
|
|
) {
|
2017-12-20 21:46:01 +00:00
|
|
|
return Promise.try(() => {
|
2018-07-10 17:45:48 +00:00
|
|
|
if (customDeviceApiKey === true) {
|
|
|
|
return resin.models.device.generateDeviceKey(uuid);
|
|
|
|
} else {
|
|
|
|
return customDeviceApiKey;
|
|
|
|
}
|
2018-01-09 15:05:24 +00:00
|
|
|
}).tap(deviceApiKey => {
|
2017-12-20 21:46:01 +00:00
|
|
|
config.deviceApiKey = deviceApiKey;
|
|
|
|
});
|
2018-01-04 14:07:55 +00:00
|
|
|
}
|