This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
importer.js
446 lines (383 loc) · 12.1 KB
/
importer.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
const fs = require('fs');
const os = require('os');
const { join } = require('path');
const d = require('date-fns');
const normalizePathSep = require('slash');
const uuid = require('uuid');
const actual = require('@actual-app/api');
const { amountToInteger } = actual.utils;
// Utils
function mapAccountType(type) {
switch (type) {
case 'Cash':
case 'Checking':
return 'checking';
case 'CreditCard':
return 'credit';
case 'Savings':
return 'savings';
case 'InvestmentAccount':
return 'investment';
case 'Mortgage':
return 'mortgage';
default:
return 'other';
}
}
function sortByKey(arr, key) {
return [...arr].sort((item1, item2) => {
if (item1[key] < item2[key]) {
return -1;
} else if (item1[key] > item2[key]) {
return 1;
}
return 0;
});
}
function groupBy(arr, keyName) {
return arr.reduce(function(obj, item) {
var key = item[keyName];
if (!obj.hasOwnProperty(key)) {
obj[key] = [];
}
obj[key].push(item);
return obj;
}, {});
}
function _parse(value) {
if (typeof value === 'string') {
// We don't want parsing to take local timezone into account,
// which parsing a string does. Pass the integers manually to
// bypass it.
let [year, month, day] = value.split('-');
if (day != null) {
return new Date(parseInt(year), parseInt(month) - 1, parseInt(day));
} else if (month != null) {
return new Date(parseInt(year), parseInt(month) - 1, 1);
} else {
return new Date(parseInt(year), 0, 1);
}
}
return value;
}
function monthFromDate(date) {
return d.format(_parse(date), 'yyyy-MM');
}
function getCurrentMonth() {
return d.format(new Date(), 'yyyy-MM');
}
// Importer
async function importAccounts(data, entityIdMap) {
return Promise.all(
data.accounts.map(async account => {
if (!account.isTombstone) {
const id = await actual.createAccount({
type: mapAccountType(account.accountType),
name: account.accountName,
offbudget: account.onBudget ? false : true,
closed: account.hidden ? true : false
});
entityIdMap.set(account.entityId, id);
}
})
);
}
async function importCategories(data, entityIdMap) {
const masterCategories = sortByKey(data.masterCategories, 'sortableIndex');
await Promise.all(
masterCategories.map(async masterCategory => {
if (
masterCategory.type === 'OUTFLOW' &&
!masterCategory.isTombstone &&
masterCategory.subCategories &&
masterCategory.subCategories.some(cat => !cat.isTombstone) > 0
) {
const id = await actual.createCategoryGroup({
name: masterCategory.name,
is_income: false
});
entityIdMap.set(masterCategory.entityId, id);
if (masterCategory.subCategories) {
const subCategories = sortByKey(
masterCategory.subCategories,
'sortableIndex'
);
subCategories.reverse();
// This can't be done in parallel because sort order depends
// on insertion order
for (let category of subCategories) {
if (!category.isTombstone) {
const id = await actual.createCategory({
name: category.name,
group_id: entityIdMap.get(category.masterCategoryId)
});
entityIdMap.set(category.entityId, id);
}
}
}
}
})
);
}
async function importPayees(data, entityIdMap) {
for (let payee of data.payees) {
if (!payee.isTombstone) {
let id = await actual.createPayee({
name: payee.name,
category: entityIdMap.get(payee.autoFillCategoryId) || null,
transfer_acct: entityIdMap.get(payee.targetAccountId) || null
});
// TODO: import payee rules
entityIdMap.set(payee.entityId, id);
}
}
}
async function importTransactions(data, entityIdMap) {
const categories = await actual.getCategories();
const incomeCategoryId = categories.find(cat => cat.name === 'Income').id;
const accounts = await actual.getAccounts();
const payees = await actual.getPayees();
function getCategory(id) {
if (id == null || id === 'Category/__Split__') {
return null;
} else if (
id === 'Category/__ImmediateIncome__' ||
id === 'Category/__DeferredIncome__'
) {
return incomeCategoryId;
}
return entityIdMap.get(id);
}
function isOffBudget(acctId) {
let acct = accounts.find(acct => acct.id === acctId);
if (!acct) {
throw new Error('Could not find account for transaction when importing');
}
return acct.offbudget;
}
// Go ahead and generate ids for all of the transactions so we can
// reliably resolve transfers
for (let transaction of data.transactions) {
entityIdMap.set(transaction.entityId, uuid.v4());
}
let sortOrder = 1;
let transactionsGrouped = groupBy(data.transactions, 'accountId');
await Promise.all(
Object.keys(transactionsGrouped).map(async accountId => {
let transactions = transactionsGrouped[accountId];
let toImport = transactions
.map(transaction => {
if (transaction.isTombstone) {
return;
}
let id = entityIdMap.get(transaction.entityId);
let transferId =
entityIdMap.get(transaction.transferTransactionId) || null;
let payee_id = null;
let payee = null;
if (transferId) {
payee_id = payees.find(
p =>
p.transfer_acct === entityIdMap.get(transaction.targetAccountId)
).id;
} else {
payee_id = entityIdMap.get(transaction.payeeId);
}
let newTransaction = {
id,
amount: amountToInteger(transaction.amount),
category_id: isOffBudget(entityIdMap.get(accountId))
? null
: getCategory(transaction.categoryId),
date: transaction.date,
notes: transaction.memo || null,
payee,
payee_id,
transfer_id: transferId
};
newTransaction.subtransactions =
transaction.subTransactions &&
transaction.subTransactions.map((t, i) => {
return {
amount: amountToInteger(t.amount),
category_id: getCategory(t.categoryId)
};
});
return newTransaction;
})
.filter(x => x);
await actual.addTransactions(entityIdMap.get(accountId), toImport);
})
);
}
function fillInBudgets(data, categoryBudgets) {
// YNAB only contains entries for categories that have been actually
// budgeted. That would be fine except that we need to set the
// "carryover" flag on each month when carrying debt across months.
// To make sure our system has a chance to set this flag on each
// category, make sure a budget exists for every category of every
// month.
const budgets = [...categoryBudgets];
data.masterCategories.forEach(masterCategory => {
if (masterCategory.subCategories) {
masterCategory.subCategories.forEach(category => {
if (!budgets.find(b => b.categoryId === category.entityId)) {
budgets.push({
budgeted: 0,
categoryId: category.entityId
});
}
});
}
});
return budgets;
}
async function importBudgets(data, entityIdMap) {
let budgets = sortByKey(data.monthlyBudgets, 'month');
let earliestMonth = monthFromDate(budgets[0].month);
let currentMonth = getCurrentMonth();
await actual.batchBudgetUpdates(async () => {
const carryoverFlags = {};
for (let budget of budgets) {
let filled = fillInBudgets(
data,
budget.monthlySubCategoryBudgets.filter(b => !b.isTombstone)
);
await Promise.all(
filled.map(async catBudget => {
let amount = amountToInteger(catBudget.budgeted);
let catId = entityIdMap.get(catBudget.categoryId);
let month = monthFromDate(budget.month);
if (!catId) {
return;
}
await actual.setBudgetAmount(month, catId, amount);
if (catBudget.overspendingHandling === 'AffectsBuffer') {
// Turn off the carryover flag so it doesn't propagate
// to future months
carryoverFlags[catId] = false;
} else if (
catBudget.overspendingHandling === 'Confined' ||
carryoverFlags[catId]
) {
// Overspending has switched to carryover, set the
// flag so it propagates to future months
carryoverFlags[catId] = true;
await actual.setBudgetCarryover(month, catId, true);
}
})
);
}
});
}
function estimateRecentness(str) {
// The "recentness" is the total amount of changes that this device
// is aware of, which is estimated by summing up all of the version
// numbers that its aware of. This works because version numbers are
// increasing integers.
return str.split(',').reduce((total, version) => {
const [_, number] = version.split('-');
return total + parseInt(number);
}, 0);
}
function findLatestDevice(files) {
let devices = files
.map(deviceFile => {
const contents = fs.readFileSync(deviceFile, 'utf8');
let data;
try {
data = JSON.parse(contents);
} catch (e) {
return null;
}
if (data.hasFullKnowledge) {
return {
deviceGUID: data.deviceGUID,
shortName: data.shortDeviceId,
recentness: estimateRecentness(data.knowledge)
};
}
return null;
})
.filter(x => x);
devices = sortByKey(devices, 'recentness');
return devices[devices.length - 1].deviceGUID;
}
async function doImport(data) {
const entityIdMap = new Map();
console.log('Importing Accounts...');
await importAccounts(data, entityIdMap);
console.log('Importing Categories...');
await importCategories(data, entityIdMap);
console.log('Importing Payees...');
await importPayees(data, entityIdMap);
console.log('Importing Transactions...');
await importTransactions(data, entityIdMap);
console.log('Importing Budgets...');
await importBudgets(data, entityIdMap);
console.log('Setting up...');
}
function getBudgetName(filepath) {
let unixFilepath = normalizePathSep(filepath);
// Most budgets are named like "Budget~51938D82.ynab4" but sometimes
// they are only "Budget.ynab4". We only want to grab the name
// before the ~ if it exists.
let m = unixFilepath.match(/([^\/\~]*)\~.*\.ynab4$/);
if (!m) {
m = unixFilepath.match(/([^\/]*)\.ynab4$/);
}
if (!m) {
return null;
}
return m[1];
}
async function importYNAB4(filepath) {
const budgetName = getBudgetName(filepath);
if (!budgetName) {
throw new Error('Not a YNAB4 file: ' + filepath);
}
const metaStr = fs.readFileSync(join(filepath, 'Budget.ymeta'));
const meta = JSON.parse(metaStr);
const budgetPath = join(filepath, meta.relativeDataFolderName);
const deviceFiles = fs.readdirSync(join(budgetPath, 'devices'));
let deviceGUID = findLatestDevice(
deviceFiles.map(f => join(budgetPath, 'devices', f))
);
const yfullPath = join(budgetPath, deviceGUID, 'Budget.yfull');
let contents;
try {
contents = fs.readFileSync(yfullPath, 'utf8');
} catch (e) {
throw new Error('Error reading Budget.yfull file');
}
let data;
try {
data = JSON.parse(contents);
} catch (e) {
throw new Error('Error parsing Budget.yull file');
}
return actual.runImport(budgetName, () => doImport(data));
}
function findBudgetsInDir(dir) {
if (fs.existsSync(dir)) {
return fs
.readdirSync(dir)
.map(file => {
const name = getBudgetName(file);
if (name) {
return {
name,
filepath: join(dir, file)
};
}
})
.filter(x => x);
}
return [];
}
function findBudgets() {
return findBudgetsInDir(join(os.homedir(), 'Documents', 'YNAB')).concat(
findBudgetsInDir(join(os.homedir(), 'Dropbox', 'YNAB'))
);
}
module.exports = { findBudgetsInDir, findBudgets, importYNAB4 };