123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862 |
- const log = require('./log')
- const path = require('path')
- const sqlite3 = require('sqlite3')
- const bplist = require('bplist-parser')
- const fs = require('fs')
- const plist = require('plist')
- // Cookie Parser
- const cookieParser = require('./cookies.js')
- // Normalize mac addresses in wifi output
- const macParse = require('./mac_address_parse')
- // Derive filenames based on domain + file path
- const fileHash = require('./backup_filehash')
- // Manifest.mbdb parser
- const manifestMBDBParse = require('./manifest_mbdb_parse')
- // Pushstore bplist parser
- const pushstoreParse = require('./pushstore_parse')
- const databases = {
- SMS: fileHash('Library/SMS/sms.db'),
- Contacts: fileHash('Library/AddressBook/AddressBook.sqlitedb'),
- Calendar: fileHash('Library/Calendar/Calendar.sqlitedb'),
- Reminders: fileHash('Library/Calendar/Calendar.sqlitedb'),
- Notes: fileHash('Library/Notes/notes.sqlite'),
- Notes2: fileHash('NoteStore.sqlite', 'AppDomainGroup-group.com.apple.notes'),
- AddressBook: fileHash('Library/AddressBook/AddressBook.sqlitedb'),
- AddressBookImages: fileHash('Library/AddressBook/AddressBookImages.sqlitedb'),
- 'Cookies.binarycookies': '69b1865768101bacde5b77ccc44445cea9ce1261',
- Calls: '2b2b0084a1bc3a5ac8c27afdf14afb42c61a19ca',
- Calls2: fileHash('Library/CallHistoryDB/CallHistory.storedata'),
- Locations: fileHash('Library/Caches/locationd/consolidated.db', 'RootDomain'),
- WebHistory: fileHash('Library/Safari/History.db', 'AppDomain-com.apple.mobilesafari'),
- Photos: fileHash('Media/PhotoData/Photos.sqlite', 'CameraRollDomain'),
- WiFi: fileHash('SystemConfiguration/com.apple.wifi.plist', 'SystemPreferencesDomain'),
- Voicemail: fileHash('Library/Voicemail/voicemail.db'),
- SafariBookmarks: fileHash('Library/Safari/Bookmarks.db')
- }
- var cache = {}
- class IPhoneBackup {
- constructor (id, status, info, manifest, base) {
- this.id = id
- this.status = status
- this.info = info
- this.manifest = manifest
- this.base = base
- }
- // Open a backup with a specified ID
- // base is optional and will be computed if not used.
- static fromID (id, base) {
- // Get the path of the folder.
- if (base) {
- base = path.join(base, id)
- } else {
- base = path.join(process.env.HOME, '/Library/Application Support/MobileSync/Backup/', id)
- }
- // Parse manifest bplist files
- try {
- log.verbose('parsing status', base)
- var status = bplist.parseBuffer(fs.readFileSync(path.join(base, 'Status.plist')))[0]
- } catch (e) {
- log.error('Cannot open Status.plist', e)
- }
- try {
- log.verbose('parsing manifest', base)
- var manifest = bplist.parseBuffer(fs.readFileSync(path.join(base, 'Manifest.plist')))[0]
- } catch (e) {
- log.error('Cannot open Manifest.plist', e)
- }
- try {
- log.verbose('parsing status', base)
- var info = plist.parse(fs.readFileSync(path.join(base, 'Info.plist'), 'utf8'))
- } catch (e) {
- log.error('Cannot open Info.plist', e)
- }
- return new IPhoneBackup(id, status, info, manifest, base)
- }
- get iOSVersion () {
- return this.manifest.Lockdown.ProductVersion
- }
- getFileName (fileID, isAbsoulte) {
- isAbsoulte = isAbsoulte || false
- // const base = path.join(process.env.HOME, '/Library/Application Support/MobileSync/Backup/', this.id)
- // Return v2 filename
- if (this.status.Version < 3 || isAbsoulte) {
- return path.join(this.base, fileID)
- } else {
- // v3 has folders
- return path.join(this.base, fileID.substr(0, 2), fileID)
- }
- }
- openDatabase (fileID, isAbsoulte) {
- return new Promise((resolve, reject) => {
- isAbsoulte = isAbsoulte || false
- // Get the backup folder
- // Return v2 filename
- if (this.status.Version < 3 || isAbsoulte) {
- let db = new sqlite3.Database(path.join(this.base, fileID), sqlite3.OPEN_READONLY, (err) => {
- if (err) {
- return reject(err)
- }
- resolve(db)
- })
- } else {
- // v3 has folders
- let db = new sqlite3.Database(path.join(this.base, fileID.substr(0, 2), fileID), sqlite3.OPEN_READONLY, (err) => {
- if (err) {
- return reject(err)
- }
- resolve(db)
- })
- }
- })
- }
- /// This is deprecated. Use openDatabase Instead.
- getDatabase (fileID, isAbsoulte) {
- isAbsoulte = isAbsoulte || false
- // Get the backup folder
- // Return v2 filename
- if (this.status.Version < 3 || isAbsoulte) {
- return new sqlite3.Database(path.join(this.base, fileID), sqlite3.OPEN_READONLY, (err) => {
- if (err) {
- log.error('PANIC::', err)
- process.exit(1)
- }
- })
- } else {
- // v3 has folders
- return new sqlite3.Database(path.join(this.base, fileID.substr(0, 2), fileID), sqlite3.OPEN_READONLY, (err) => {
- if (err) {
- log.error('PANIC::', err)
- process.exit(1)
- }
- })
- }
- }
- queryDatabase (databaseID, sql) {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databaseID)
- messagedb.all(sql, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getName (messageDest) {
- return new Promise((resolve, reject) => {
- if (messageDest.indexOf('@') === -1) {
- messageDest = messageDest.replace(/[\s+\-()]*/g, '')
- if (messageDest.length === 11 && messageDest[0] === '1') {
- messageDest = messageDest.substring(1)
- }
- }
- if (cache[messageDest] !== undefined) {
- return resolve(cache[messageDest])
- }
- var contactdb = this.getDatabase(databases.Contacts)
- contactdb.get(`SELECT
- c0First as first,
- c1Last as last,
- c2Middle as middle,
- c15Phone as phones
- from ABPersonFullTextSearch_content WHERE c15Phone like '%${messageDest}%'`,
- (err, row) => {
- if (err) return resolve()
- if (!row) return resolve()
- var result = {
- name: [row.first, row.middle, row.last].filter(el => el != null).join(' '),
- phones: row.phones.split(' '),
- query: messageDest
- }
- if (row) cache[messageDest] = result
- resolve(result)
- })
- })
- }
- getMessagesiOS9 (chatId) {
- var backup = this
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.SMS)
- messagedb.all(`
- SELECT
- message.*,
- handle.id as sender_name,
- datetime(date + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING
- FROM chat_message_join
- INNER JOIN message
- ON message.rowid = chat_message_join.message_id
- INNER JOIN handle
- ON handle.rowid = message.handle_id
- WHERE chat_message_join.chat_id = ?`, [parseInt(chatId)],
- async function (err, chats) {
- if (err) return reject(err)
- chats = chats || []
- // Compute the user's name
- for (var i in chats) {
- var el = chats[i]
- el.x_sender = el.is_from_me ? 'Me' : el.sender_name
- if (!el.is_from_me) {
- var contact = await backup.getName(el.sender_name)
- if (contact) {
- el.x_sender = `${contact.name} <${contact.query}>`
- }
- }
- }
- resolve(chats)
- })
- })
- }
- getMessagesiOS10iOS11 (chatId) {
- var backup = this
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.SMS)
- messagedb.all(`
- SELECT
- message.*,
- handle.id as sender_name,
- datetime(date / 1000000000 + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING
- FROM chat_message_join
- INNER JOIN message
- ON message.rowid = chat_message_join.message_id
- INNER JOIN handle
- ON handle.rowid = message.handle_id
- WHERE chat_message_join.chat_id = ?`, [parseInt(chatId)],
- async function (err, chats) {
- if (err) return reject(err)
- chats = chats || []
- // Compute the user's name
- for (var i in chats) {
- var el = chats[i]
- el.x_sender = el.is_from_me ? 'Me' : el.sender_name
- if (!el.is_from_me) {
- var contact = await backup.getName(el.sender_name)
- if (contact) {
- el.x_sender = `${contact.name} <${contact.query}>`
- }
- }
- }
- resolve(chats)
- })
- })
- }
- getMessages (chatId) {
- if (parseInt(this.manifest.Lockdown.BuildVersion) <= 13) {
- return this.getMessagesiOS9(chatId)
- } else {
- return this.getMessagesiOS10iOS11(chatId)
- }
- }
- getMessageAttachments (messageId) {
- var backup = this
- return new Promise((resolve, reject) => {
- const messagedb = this.getDatabase(databases.SMS)
- const query = `
- SELECT
- attachment.*
- FROM message_attachment_join
- INNER JOIN attachment
- ON attachment.ROWID = message_attachment_join.attachment_id
- WHERE message_attachment_join.message_id = ${parseInt(messageId)}
- `
- messagedb.all(query,
- async function (err, attachments) {
- if (err) return reject(err)
- attachments = attachments || []
- resolve(attachments)
- })
- })
- }
- getConversationsiOS9 () {
- var backup = this
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.SMS)
- messagedb.all(`SELECT * FROM chat ORDER BY ROWID ASC`, async function (err, rows) {
- if (err) return reject(err)
- rows = rows || []
- // We need to do some manual parsing of these records.
- // The timestamp information is stored in a binary blob named `properties`
- // Which is formatted as a binary PLIST.
- for (var el of rows) {
- if (el.properties) el.properties = bplist.parseBuffer(el.properties)[0]
- // Interestingly, some of these do not have dates attached.
- if (el.properties) {
- el.date = new Date(el.properties.CKChatWatermarkTime * 1000)
- } else {
- el.date = new Date(0)
- }
- var contact = await backup.getName(el.chat_identifier)
- if (contact) {
- el.display_name = `${contact.name} <${contact.query}>`
- }
- // Format as YY-MM-DD HH:MM:SS
- try {
- el.XFORMATTEDDATESTRING = el.date.toISOString()
- .split('T')
- .join(' ')
- .split('Z')
- .join(' ')
- .split('.')[0]
- .trim()
- } catch (e) {
- el.XFORMATTEDDATESTRING = ''
- }
- }
- // Sort by the date.
- rows = rows.sort(function (a, b) {
- return (a.date.getTime() || 0) - (b.date.getTime() || 0)
- })
- resolve(rows)
- })
- })
- }
- getConversationsiOS10iOS11 () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.SMS)
- messagedb.all(`SELECT *, datetime(last_read_message_timestamp / 1000000000 + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING FROM chat ORDER BY last_read_message_timestamp ASC`, async function (err, rows) {
- if (err) return reject(err)
- rows = rows || []
- resolve(rows)
- })
- })
- }
- getConversations () {
- if (parseInt(this.manifest.Lockdown.BuildVersion) <= 14) {
- return this.getConversationsiOS9()
- } else {
- return this.getConversationsiOS10iOS11()
- }
- }
- getFileManifest () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase('Manifest.db', true)
- messagedb.all('SELECT * from FILES', async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getOldFileManifest () {
- return new Promise((resolve, reject) => {
- let mbdbPath = this.getFileName('Manifest.mbdb', true)
- manifestMBDBParse.process(mbdbPath, resolve, reject)
- })
- }
- getOldNotes () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Notes)
- messagedb.all(`SELECT *, datetime(ZCREATIONDATE + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING from ZNOTE LEFT JOIN ZNOTEBODY ON ZBODY = ZNOTEBODY.Z_PK`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getNewNotesiOS9 () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Notes2)
- messagedb.all(`SELECT *, datetime(ZCREATIONDATE + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING FROM ZICCLOUDSYNCINGOBJECT`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getNewNotesiOS10iOS11 () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Notes2)
- messagedb.all(`SELECT *, datetime(ZCREATIONDATE + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING, datetime(ZCREATIONDATE1 + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING1 FROM ZICCLOUDSYNCINGOBJECT`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getNotes () {
- if (parseInt(this.manifest.Lockdown.BuildVersion) <= 13) {
- // Legacy iOS 9 support
- // May work for earlier but I haven't tested it
- return this.getNewNotesiOS9()
- } else {
- return this.getNewNotesiOS10iOS11()
- }
- }
- getWebHistory () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.WebHistory)
- messagedb.all(`SELECT *, datetime(visit_time + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING from history_visits LEFT JOIN history_items ON history_items.ROWID = history_visits.history_item`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getPhotoLocationHistory () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Photos)
- messagedb.all(`SELECT ZDATECREATED, ZLATITUDE, ZLONGITUDE, ZFILENAME, datetime(ZDATECREATED + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING FROM ZGENERICASSET ORDER BY ZDATECREATED ASC`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getGeofencesList () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Locations)
- messagedb.all(`SELECT datetime(Timestamp + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING, Latitude, Longitude, Distance FROM Fences ORDER BY Timestamp ASC`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getCallsStatisticsiOS7 () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Calls)
- messagedb.all(`SELECT * from _SqliteDatabaseProperties`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getCallsStatistics () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Calls2)
- messagedb.all(`SELECT * from ZCALLDBPROPERTIES`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getCallsList () {
- if (parseInt(this.manifest.Lockdown.BuildVersion) <= 13) {
- // Legacy iOS 9 support
- // May work for earlier but I haven't tested it
- return this.getCallsListiOS7()
- } else {
- return this.getCallsListLater()
- }
- }
- getCallsListiOS7 () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Calls)
- messagedb.all(`SELECT
- ROWID as Z_PK,
- datetime(date, 'unixepoch') AS XFORMATTEDDATESTRING,
- answered as ZANSWERED,
- duration as ZDURATION,
- address as ZADDRESS,
- country_code as ZISO_COUNTRY_CODE,
- country_code as ZISO_COUNTRY_CODE,
- * from call ORDER BY date ASC`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getCallsListLater () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Calls2)
- messagedb.all(`SELECT *, datetime(ZDATE + 978307200, 'unixepoch') AS XFORMATTEDDATESTRING from ZCALLRECORD ORDER BY ZDATE ASC`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getVoicemailsList () {
- return new Promise((resolve, reject) => {
- var messagedb = this.getDatabase(databases.Voicemail)
- messagedb.all(`SELECT *, datetime(date, 'unixepoch') AS XFORMATTEDDATESTRING from voicemail ORDER BY date ASC`, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- })
- }
- getVoicemailFileList () {
- return new Promise((resolve, reject) => {
- this.openDatabase('Manifest.db', true)
- .then(manifestdb => {
- manifestdb.all(`SELECT * from FILES where relativePath like 'Library/Voicemail/%.amr'`, async (err, rows) => {
- if (err) reject(err)
- resolve(rows)
- })
- })
- .catch(reject)
- })
- }
- getWifiList () {
- return new Promise((resolve, reject) => {
- var filename = this.getFileName(databases.WiFi)
- try {
- let wifiList = bplist.parseBuffer(fs.readFileSync(filename))[0]
- wifiList['List of known networks'] = wifiList['List of known networks']
- .map(el => {
- if (el.BSSID) {
- el.BSSID = macParse.pad_zeros(el.BSSID) + ''
- }
- return el
- })
- resolve(wifiList)
- } catch (e) {
- reject(e)
- }
- })
- }
- getCookies () {
- return new Promise(async (resolve, reject) => {
- this.openDatabase('Manifest.db', true)
- .then(manifestdb => {
- manifestdb.all(`SELECT fileID,domain,relativePath from FILES where relativePath like 'Library/Cookies/Cookies.binarycookies'`, async (err, rows) => {
- if (err) return reject(err)
- let cookiesResult = []
- const iterateElements = (elements, index, callback) => {
- if (index === elements.length) { return callback() }
- // do parse call with element
- var ele = elements[index]
- cookieParser.parse(this.getFileName(ele.fileID))
- .then(cookies => {
- // Map to include domain
- let formatted = cookies.map(el => { return { domain: ele.domain, cookie: el } })
- // Append result
- cookiesResult = [...cookiesResult, ...formatted]
- // Next file.
- iterateElements(elements, index + 1, callback)
- })
- }
- iterateElements(rows, 0, () => {
- resolve(cookiesResult)
- })
- })
- })
- .catch(reject)
- })
- }
- getAddressBook () {
- return new Promise((resolve, reject) => {
- let addressbookdb = this.getDatabase(databases.AddressBook)
- const self = this
- try {
- // Query basic Address Book fields
- const query = `
- select ABPerson.ROWID
- , ABPerson.first
- , ABPerson.middle
- , ABPerson.last
- , ABPerson.Organization as organization
- , ABPerson.Department as department
- , ABPerson.Birthday as birthday
- , ABPerson.JobTitle as jobtitle
- , datetime(ABPerson.CreationDate + 978307200, 'unixepoch') as created_date
- , datetime(ABPerson.ModificationDate + 978307200, 'unixepoch') as updated_date
- , (select value from ABMultiValue where property = 3 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = '_$!<Work>!$_')) as phone_work
- , (select value from ABMultiValue where property = 3 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = '_$!<Mobile>!$_')) as phone_mobile
- , (select value from ABMultiValue where property = 3 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = '_$!<Home>!$_')) as phone_home
- , (select value from ABMultiValue where property = 4 and record_id = ABPerson.ROWID) as email
-
- , (select value from ABMultiValueEntry where parent_id in (select ROWID from ABMultiValue where record_id = ABPerson.ROWID) and key = (select ROWID from ABMultiValueEntryKey where lower(value) = 'street')) as address
- , (select value from ABMultiValueEntry where parent_id in (select ROWID from ABMultiValue where record_id = ABPerson.ROWID) and key = (select ROWID from ABMultiValueEntryKey where lower(value) = 'city')) as city
- , ABPerson.Note as note
- from ABPerson
- order by ABPerson.ROWID
- `
- addressbookdb.all(query, async function (err, rows) {
- if (err) reject(err)
- const iterateElements = (elements, index, callback) => {
- if (index === elements.length) { return callback() }
- // do parse call with element
- let ele = elements[index]
- //Query username and profile links for other services (facebook etc)
- const query = `
- select (select value from ABMultiValue where property = 22 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = 'PROFILE')) as google_profile
- , (select value from ABMultiValue where property = 22 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = 'profile')) as google_profile1
- , (select value from ABMultiValue where property = 4 and record_id = ABPerson.ROWID and label = (select ROWID from ABMultiValueLabel where value = 'iCloud')) as icloud
-
- , (select value from ABMultiValueEntry where parent_id in (select ROWID from ABMultiValue where record_id = ABPerson.ROWID) and key = (select ROWID from ABMultiValueEntryKey where lower(value) = 'service')) as service
- , (select value from ABMultiValueEntry where parent_id in (select ROWID from ABMultiValue where record_id = ABPerson.ROWID) and key = (select ROWID from ABMultiValueEntryKey where lower(value) = 'username')) as username
- , (select value from ABMultiValueEntry where parent_id in (select ROWID from ABMultiValue where record_id = ABPerson.ROWID) and key = (select ROWID from ABMultiValueEntryKey where lower(value) = 'url')) as url
- from ABPerson
- where ABPerson.ROWID = ${ele.ROWID}
- order by ABPerson.ROWID
- `
- addressbookdb.all(query, async function (err, rows1) {
- if (err) reject(err)
- rows1[0].google_profile = rows1[0].google_profile || rows1[0].google_profile1
- delete rows1[0].google_profile1
- ele.services = rows1[0]
-
- const addressbookimagesdb = self.getDatabase(databases.AddressBookImages)
- //Query profile picture extraction from /Library/AddressBook/AddressBookImages.sqlitedb
- const query = `
- select data
- from ABFullSizeImage
- where ABFullSizeImage.record_id = ${ele.ROWID}
- `
- addressbookimagesdb.get(query, async function (err, row) {
- if (err) reject(err)
- ele.profile_picture = null
- if (row) {
- ele.profile_picture = row.data.toString('base64')
- }
- iterateElements(elements, index + 1, callback)
- })
-
- })
- }
- iterateElements(rows, 0, () => {
- resolve(rows)
- })
- })
- } catch (e) {
- reject(e)
- }
- })
- }
- getSafariBookmarks () {
- return new Promise((resolve, reject) => {
- var bookmarksdb = this.getDatabase(databases.SafariBookmarks)
- try {
- const query = `
- select bookmarks.id
- , bookmarks.title
- , bookmarks.url
- , bookmarks.parent as parent_id
- , bookmarks.special_id
- , bookmarks.type
- , bookmarks.num_children
- , bookmarks.editable
- , bookmarks.deletable
- , bookmarks.hidden
- , bookmarks.hidden_ancestor_count
- , bookmarks.order_index
- , bookmarks.external_uuid
- , bookmarks.read
- , bookmarks.last_modified
- , bookmarks.server_id
- , bookmarks.sync_key
- , bookmarks.added
- , bookmarks.deleted
- , bookmarks.fetched_icon
- , bookmarks.dav_generation
- , bookmarks.locally_added
- , bookmarks.archive_status
- , bookmarks.syncable
- , bookmarks.web_filter_status
- , bookmarks.modified_attributes
- , parent_bookmarks.title as parent_title
- from bookmarks
- left join bookmarks as parent_bookmarks on parent_bookmarks.id = bookmarks.parent
- where bookmarks.type = 0
- order by bookmarks.id
- `
- bookmarksdb.all(query, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- } catch (e) {
- reject(e)
- }
- })
- }
- getSafariBookmarksiOS7 () {
- return new Promise((resolve, reject) => {
- var bookmarksdb = this.getDatabase(databases.SafariBookmarks)
- try {
- const query = `
- select bookmarks.id
- , bookmarks.special_id
- , bookmarks.parent as parent_id
- , bookmarks.type
- , bookmarks.title
- , bookmarks.url
- , bookmarks.num_children
- , bookmarks.editable
- , bookmarks.deletable
- , bookmarks.hidden
- , bookmarks.hidden_ancestor_count
- , bookmarks.order_index
- , bookmarks.external_uuid
- , bookmarks.read
- , bookmarks.last_modified
- , bookmarks.server_id
- , bookmarks.sync_key
- , bookmarks.sync_data
- , bookmarks.added
- , bookmarks.deleted
- , bookmarks.extra_attributes
- , bookmarks.local_attributes
- , bookmarks.fetched_icon
- , bookmarks.icon
- , bookmarks.dav_generation
- , bookmarks.locally_added
- , bookmarks.archive_status
- , bookmarks.syncable
- , bookmarks.web_filter_status
- , parent_bookmarks.title as parent_title
- from bookmarks
- left join bookmarks as parent_bookmarks on parent_bookmarks.id = bookmarks.parent
- where bookmarks.type = 0
- order by bookmarks.id
- `
- bookmarksdb.all(query, async function (err, rows) {
- if (err) reject(err)
- resolve(rows)
- })
- } catch (e) {
- reject(e)
- }
- })
- }
- getPushstore () {
- return new Promise((resolve, reject) => {
- this.getFileManifest().then((manifest) => {
- try {
- let files = manifest.filter((file) => {
- if (file.relativePath)
- return ~file.relativePath.indexOf("Library/SpringBoard/PushStore/")
- return false
- })
- const pushstores = []
- files.forEach((file) => {
- let plist = bplist.parseBuffer(fs.readFileSync(this.getFileName(file.fileID)))[0]
- pushstores.push(...pushstoreParse.run(plist))
- })
- resolve(pushstores)
- } catch (e) {
- reject(e)
- }
- })
- })
- }
-
- getOldPushstore () {
- return new Promise((resolve, reject) => {
- this.getOldFileManifest().then((manifest) => {
- try {
- let files = manifest.filter((file) => {
- if (file.filename) {
- return ~file.filename.indexOf("Library/SpringBoard/PushStore/")
- }
- return false
- })
- let pushstores = []
- files.forEach((file) => {
- let plist = bplist.parseBuffer(fs.readFileSync(this.getFileName(file.fileID)))[0]
- pushstores.push(...pushstoreParse.run(plist))
- })
- resolve(pushstores)
- } catch (e) {
- reject(e)
- }
- })
- })
- }
- }
- module.exports.availableBackups = function () {
- const base = path.join(process.env.HOME, '/Library/Application Support/MobileSync/Backup/')
- return new Promise((resolve, reject) => {
- resolve(fs.readdirSync(base, {
- encoding: 'utf8'
- })
- .map(file => IPhoneBackup.fromID(file)))
- })
- }
- module.exports.iPhoneBackup = IPhoneBackup
- module.exports.IPhoneBackup = IPhoneBackup
|