@expo/cli
Version:
148 lines (147 loc) • 5.9 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "DevelopmentSession", {
enumerable: true,
get: ()=>DevelopmentSession
});
function _config() {
const data = require("@expo/config");
_config = function() {
return data;
};
return data;
}
const _updateDevelopmentSession = require("../../api/updateDevelopmentSession");
const _user = require("../../api/user/user");
const _env = require("../../utils/env");
const _devices = /*#__PURE__*/ _interopRequireWildcard(require("../project/devices"));
function _getRequireWildcardCache(nodeInterop) {
if (typeof WeakMap !== "function") return null;
var cacheBabelInterop = new WeakMap();
var cacheNodeInterop = new WeakMap();
return (_getRequireWildcardCache = function(nodeInterop) {
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
})(nodeInterop);
}
function _interopRequireWildcard(obj, nodeInterop) {
if (!nodeInterop && obj && obj.__esModule) {
return obj;
}
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
return {
default: obj
};
}
var cache = _getRequireWildcardCache(nodeInterop);
if (cache && cache.has(obj)) {
return cache.get(obj);
}
var newObj = {};
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
for(var key in obj){
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
if (desc && (desc.get || desc.set)) {
Object.defineProperty(newObj, key, desc);
} else {
newObj[key] = obj[key];
}
}
}
newObj.default = obj;
if (cache) {
cache.set(obj, newObj);
}
return newObj;
}
const debug = require("debug")("expo:start:server:developmentSession");
const UPDATE_FREQUENCY = 20 * 1000; // 20 seconds
async function isAuthenticatedAsync() {
return !!await (0, _user.getUserAsync)().catch(()=>null);
}
class DevelopmentSession {
constructor(projectRoot, url, onError){
this.projectRoot = projectRoot;
this.url = url;
this.onError = onError;
this.timeout = null;
}
/**
* Notify the Expo servers that a project is running, this enables the Expo Go app
* and Dev Clients to offer a "recently in development" section for quick access.
*
* This method starts an interval that will continue to ping the servers until we stop it.
*
* @param projectRoot Project root folder, used for retrieving device installation IDs.
* @param props.exp Partial Expo config with values that will be used in the Expo Go app.
* @param props.runtime which runtime the app should be opened in. `native` for dev clients, `web` for web browsers.
*/ async startAsync({ exp =(0, _config().getConfig)(this.projectRoot).exp , runtime }) {
try {
if (_env.env.CI || _env.env.EXPO_OFFLINE) {
debug(_env.env.CI ? "This project will not be suggested in Expo Go or Dev Clients because Expo CLI is running in CI." : "This project will not be suggested in Expo Go or Dev Clients because Expo CLI is running in offline-mode.");
this.stopNotifying();
return;
}
const deviceIds = await this.getDeviceInstallationIdsAsync();
if (!await isAuthenticatedAsync() && !(deviceIds == null ? void 0 : deviceIds.length)) {
debug("Development session will not ping because the user is not authenticated and there are no devices.");
this.stopNotifying();
return;
}
if (this.url) {
// debug(`Development session ping (runtime: ${runtime}, url: ${this.url})`);
await (0, _updateDevelopmentSession.updateDevelopmentSessionAsync)({
url: this.url,
runtime,
exp,
deviceIds
});
}
this.stopNotifying();
this.timeout = setTimeout(()=>this.startAsync({
exp,
runtime
}), UPDATE_FREQUENCY);
} catch (error) {
debug(`Error updating development session API: ${error}`);
this.stopNotifying();
this.onError(error);
}
}
/** Get all recent devices for the project. */ async getDeviceInstallationIdsAsync() {
const { devices } = await _devices.getDevicesInfoAsync(this.projectRoot);
return devices.map(({ installationId })=>installationId);
}
/** Stop notifying the Expo servers that the development session is running. */ stopNotifying() {
if (this.timeout) {
clearTimeout(this.timeout);
}
this.timeout = null;
}
/** Try to close any pending development sessions, but always resolve */ async closeAsync() {
this.stopNotifying();
if (_env.env.CI || _env.env.EXPO_OFFLINE) {
return false;
}
try {
const deviceIds = await this.getDeviceInstallationIdsAsync();
if (!await isAuthenticatedAsync() && !(deviceIds == null ? void 0 : deviceIds.length)) {
return false;
}
if (this.url) {
await (0, _updateDevelopmentSession.closeDevelopmentSessionAsync)({
url: this.url,
deviceIds
});
}
return true;
} catch (error) {
debug(`Error closing development session API: ${error}`);
this.onError(error);
return false;
}
}
}
//# sourceMappingURL=DevelopmentSession.js.map
;