mintable
Version:
Automate your personal finances – for free, with no ads, and no data collection.
139 lines (138 loc) • 9.45 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
exports.__esModule = true;
var google_1 = require("../../types/integrations/google");
var config_1 = require("../../common/config");
var prompts_1 = __importDefault(require("prompts"));
var integrations_1 = require("../../types/integrations");
var open_1 = __importDefault(require("open"));
var googleIntegration_1 = require("./googleIntegration");
var logging_1 = require("../../common/logging");
exports["default"] = (function () { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) { return __awaiter(void 0, void 0, void 0, function () {
var credentials_1, google, authentication, tokens, e_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 5, , 6]);
console.log('\nThis script will walk you through setting up the Google Sheets integration. Follow these steps:');
console.log('\n\t1. Create a new Google Sheet (https://sheets.new)');
console.log('\t2. Follow the guide here: https://developers.google.com/workspace/guides/create-credentials#desktop-app');
console.log("\t3. Make sure your app's Publishing Status is 'Testing', and add your Gmail account you wish to use as a Test User here: https://console.cloud.google.com/apis/credentials/consent");
console.log('\t4. Answer the following questions:\n');
return [4 /*yield*/, prompts_1["default"]([
{
type: 'text',
name: 'name',
message: 'What would you like to call this integration?',
initial: 'Google Sheets',
validate: function (s) {
return 0 < s.length && s.length <= 64 ? true : 'Must be between 0 and 64 characters in length.';
}
},
{
type: 'password',
name: 'clientId',
message: 'Client ID',
validate: function (s) { return (s.length >= 8 ? true : 'Must be at least 8 characters in length.'); }
},
{
type: 'password',
name: 'clientSecret',
message: 'Client Secret',
validate: function (s) { return (s.length >= 8 ? true : 'Must be at least 8 characters in length.'); }
},
{
type: 'text',
name: 'documentId',
message: 'Document ID (From the sheet you just created: https://docs.google.com/spreadsheets/d/DOCUMENT_ID/edit)',
validate: function (s) { return (s.length >= 8 ? true : 'Must be at least 8 characters in length.'); }
}
])];
case 1:
credentials_1 = _a.sent();
config_1.updateConfig(function (config) {
var googleConfig = config.integrations[integrations_1.IntegrationId.Google] || google_1.defaultGoogleConfig;
googleConfig.name = credentials_1.name;
googleConfig.documentId = credentials_1.documentId;
googleConfig.credentials.clientId = credentials_1.clientId;
googleConfig.credentials.clientSecret = credentials_1.clientSecret;
config.integrations[integrations_1.IntegrationId.Google] = googleConfig;
config.transactions.integration = integrations_1.IntegrationId.Google;
config.balances.integration = integrations_1.IntegrationId.Google;
return config;
});
google = new googleIntegration_1.GoogleIntegration(config_1.getConfig());
open_1["default"](google.getAuthURL());
console.log('\n\t5. A link will open in your browser asking you to sign in');
console.log('\t6. Sign in with the account you want to use with Mintable');
console.log("\t7. If you see a page saying 'This app isn't verified', click 'Advanced' and then 'Go to app (unsafe)'");
console.log("\t8. Click 'Allow' on both of the next two screens");
console.log('\t9. Copy & paste the code from your browser below:\n');
return [4 /*yield*/, prompts_1["default"]([
{
type: 'password',
name: 'code',
message: 'Enter the code from your browser here',
validate: function (s) { return (s.length >= 8 ? true : 'Must be at least 8 characters in length.'); }
}
])];
case 2:
authentication = _a.sent();
return [4 /*yield*/, google.getAccessTokens(authentication.code)];
case 3:
tokens = _a.sent();
return [4 /*yield*/, google.saveAccessTokens(tokens)];
case 4:
_a.sent();
logging_1.logInfo('Successfully set up Google Integration.');
return [2 /*return*/, resolve()];
case 5:
e_1 = _a.sent();
logging_1.logError('Unable to set up Plaid Integration.', e_1);
return [2 /*return*/, reject()];
case 6: return [2 /*return*/];
}
});
}); })];
});
}); });