Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 5x 5x 5x 5x 5x 5x 5x 5x 10x 10x 10x 10x 10x 3x 3x 3x 10x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 1x 1x 7x 10x 1x 1x 1x 1x 83x 83x 83x 83x 83x 83x 83x 83x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 83x 83x 83x 83x 83x 83x 83x 6x 6x 6x 6x 6x 6x 6x 6x 6x 5x 83x 83x 83x 83x 83x 83x 83x 83x 83x 12x 11x 11x 11x 12x 1x 1x 1x 10x 10x 10x 83x 83x 83x 83x 83x 83x 83x 10x 10x 10x 10x 10x 10x 10x 10x 10x 16x 10x 10x 10x 11x 10x 10x 10x 8x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 83x 11x 11x 11x 11x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 9x 9x 9x 11x 1x 1x 11x 83x 83x 83x 83x 83x 83x 83x 83x 83x 16x 16x 16x 3x 3x 3x 1x 1x 1x 1x 2x 2x 2x 13x 13x 13x 16x 1x 1x 16x 83x | import {iCloud} from '../icloud/icloud.js'; import {PhotosLibrary} from '../photos-library/photos-library.js'; import {Asset} from '../photos-library/model/asset.js'; import {Album, AlbumType} from '../photos-library/model/album.js'; import {PLibraryEntities, PLibraryProcessingQueues} from '../photos-library/model/photos-entity.js'; import {iCPSError} from '../../app/error/error.js'; import {SYNC_ERR} from '../../app/error/error-codes.js'; import {Resources} from '../resources/main.js'; import {SyncEngineHelper} from './helper.js'; import {iCPSEventRuntimeWarning, iCPSEventSyncEngine} from '../resources/events-types.js'; import {AxiosError} from 'axios'; /** * This class handles the photos sync */ export class SyncEngine { /** * The iCloud connection */ icloud: iCloud; /** * The local PhotosLibrary */ photosLibrary: PhotosLibrary; /** * Creates a new sync engine from the previously created objects and CLI options * @param icloud - The iCloud object * @param photosLibrary - The photos library object */ constructor(icloud: iCloud, photosLibrary: PhotosLibrary) { this.icloud = icloud; this.photosLibrary = photosLibrary; } /** * Performs the sync and handles all connections and retries * @returns A tuple consisting of assets and albums as fetched from the remote state. It can be assumed that this reflects the local state (given a warning free execution of the sync) * @throws An iCPSError, in case the sync could not be completed within the amount of allowed retries * @emits iCPSEventSyncEngine.START - When the sync starts * @emits iCPSEventSyncEngine.DONE - When the sync is done * @emits iCPSEventSyncEngine.RETRY - When the sync is retried - The first argument is the retry count, the second argument is the error that caused the retry * */ async sync(): Promise<[Asset[], Album[]]> { Resources.logger(this).info(`Starting sync`); Resources.emit(iCPSEventSyncEngine.START); let retryCount = 1; // Keeping track of all previous errors in case we reach retry limit const retryError = new iCPSError(SYNC_ERR.MAX_RETRY); while (Resources.manager().maxRetries >= retryCount) { Resources.logger(this).info(`Performing sync, try #${retryCount}`); try { const [remoteAssets, remoteAlbums, localAssets, localAlbums] = await this.fetchAndLoadState(); const [assetQueue, albumQueue] = await this.diffState(remoteAssets, remoteAlbums, localAssets, localAlbums); await this.writeState(assetQueue, albumQueue); Resources.logger(this).info(`Completed sync!`); Resources.emit(iCPSEventSyncEngine.DONE); return [remoteAssets, remoteAlbums]; } catch (err) { retryError.addContext(`error-try-${retryCount}`, err); retryCount++; Resources.emit(iCPSEventSyncEngine.RETRY, retryCount, (err as AxiosError).isAxiosError ? new iCPSError(SYNC_ERR.NETWORK).addCause(err) : new iCPSError(SYNC_ERR.UNKNOWN).addCause(err)); await Resources.network().settleCCYLimiter(); Resources.logger(this).debug(`Refreshing iCloud connection...`); const iCloudReady = this.icloud.getReady(); this.icloud.setupAccount(); if (!await iCloudReady) { return [[], []]; } } } // We'll only reach this, if we exceeded retryCount throw retryError.addMessage(`${retryCount}`); } /** * This function fetches the remote state and loads the local state from disk * @returns A promise that resolve once the fetch was completed, containing the remote & local state - remote album state is in order * @emits iCPSEventSyncEngine.FETCH_N_LOAD - When the fetch & load starts * @emits iCPSEventSyncEngine.FETCH_N_LOAD_COMPLETED - When the fetch & load is done - The first argument is the amount of remote assets, the second argument is the amount of remote albums, the third argument is the amount of local assets, the fourth argument is the amount of local albums */ async fetchAndLoadState(): Promise<[Asset[], Album[], PLibraryEntities<Asset>, PLibraryEntities<Album>]> { Resources.emit(iCPSEventSyncEngine.FETCH_N_LOAD); const [remoteAssets, remoteAlbums, localAssets, localAlbums] = await Promise.all([ this.icloud.photos.fetchAllCPLAssetsMasters() .then(([cplAssets, cplMasters]) => SyncEngineHelper.convertCPLAssets(cplAssets, cplMasters)), this.icloud.photos.fetchAllCPLAlbums() .then(cplAlbums => SyncEngineHelper.convertCPLAlbums(cplAlbums)), this.photosLibrary.loadAssets(), this.photosLibrary.loadAlbums(), ]); Resources.emit(iCPSEventSyncEngine.FETCH_N_LOAD_COMPLETED, remoteAssets.length, remoteAlbums.length, Object.keys(localAssets).length, Object.keys(localAlbums).length); return [remoteAssets, remoteAlbums, localAssets, localAlbums]; } /** * This function diffs the provided local state with the given remote state * @param remoteAssets - An array of all remote assets * @param remoteAlbums - An array of all remote albums * @param localAssets - A list of local assets * @param localAlbums - A list of local albums * @returns A promise that, once resolved, will contain processing queues that can be used in order to sync the remote state. * @emits iCPSEventSyncEngine.DIFF - When the diff starts * @emits iCPSEventSyncEngine.DIFF_COMPLETED - When the diff is done */ async diffState(remoteAssets: Asset[], remoteAlbums: Album[], localAssets: PLibraryEntities<Asset>, localAlbums: PLibraryEntities<Album>): Promise<[PLibraryProcessingQueues<Asset>, PLibraryProcessingQueues<Album>]> { Resources.emit(iCPSEventSyncEngine.DIFF); Resources.logger(this).info(`Diffing state`); const [assetQueue, albumQueue] = await Promise.all([ SyncEngineHelper.getProcessingQueues(remoteAssets, localAssets), SyncEngineHelper.getProcessingQueues(remoteAlbums, localAlbums), ]); const resolvedAlbumQueue = SyncEngineHelper.resolveHierarchicalDependencies(albumQueue, localAlbums); Resources.emit(iCPSEventSyncEngine.DIFF_COMPLETED); return [assetQueue, resolvedAlbumQueue]; } /** * Takes the processing queues and performs the necessary actions to write them to disk * @param assetQueue - The queue containing assets that need to be written to, or deleted from disk * @param albumQueue - The queue containing albums that need to be written to, or deleted from disk * @returns A promise that will settle, once the state has been written to disk * @emits iCPSEventSyncEngine.WRITE - When the write starts * @emits iCPSEventSyncEngine.WRITE_ASSETS - When the write of assets starts - The first argument is the amount of assets that need to be delete, the second argument is the amount of assets that need to be added, the third argument is the amount of assets that will be kept * @emits iCPSEventSyncEngine.WRITE_ASSETS_COMPLETED - When the write of assets is done * @emits iCPSEventSyncEngine.WRITE_ALBUMS - When the write of albums starts - The first argument is the amount of albums that need to be delete, the second argument is the amount of albums that need to be added, the third argument is the amount of albums that will be kept * @emits iCPSEventSyncEngine.WRITE_ALBUMS_COMPLETED - When the write of albums is done * @emits iCPSEventSyncEngine.WRITE_COMPLETED - When the write is done */ async writeState(assetQueue: PLibraryProcessingQueues<Asset>, albumQueue: PLibraryProcessingQueues<Album>) { Resources.emit(iCPSEventSyncEngine.WRITE); Resources.logger(this).info(`Writing state`); Resources.emit(iCPSEventSyncEngine.WRITE_ASSETS, assetQueue[0].length, assetQueue[1].length, assetQueue[2].length); await this.writeAssets(assetQueue); Resources.emit(iCPSEventSyncEngine.WRITE_ASSETS_COMPLETED); Resources.emit(iCPSEventSyncEngine.WRITE_ALBUMS, albumQueue[0].length, albumQueue[1].length, albumQueue[2].length); await this.writeAlbums(albumQueue); Resources.emit(iCPSEventSyncEngine.WRITE_ALBUMS_COMPLETED); Resources.emit(iCPSEventSyncEngine.WRITE_COMPLETED); } /** * Writes the asset changes defined in the processing queue to to disk (by downloading the asset or deleting it) * @param processingQueue - The asset processing queue * @returns A promise that settles, once all asset changes have been written to disk */ async writeAssets(processingQueue: PLibraryProcessingQueues<Asset>) { const toBeDeleted = processingQueue[0]; const toBeAdded = processingQueue[1]; // Initializing sync queue Resources.logger(this).debug(`Writing data by deleting ${toBeDeleted.length} assets and adding ${toBeAdded.length} assets`); // Deleting before downloading, in order to ensure no conflicts await Promise.all(toBeDeleted.map(asset => this.photosLibrary.deleteAsset(asset))); await Promise.all(toBeAdded.map(asset => this.addAsset(asset))); } /** * Downloads and stores a given asset, unless file is already present on disk * @param asset - The asset that needs to be downloaded * @returns A promise that resolves, once the file has been successfully written to disk * @emits iCPSEventSyncEngine.WRITE_ASSET_COMPLETED - When the asset has been written to disk - The first argument is the name of the asset * @emits iCPSEventRuntimeWarning.WRITE_ASSET_ERROR - When an error occurs while writing the asset to disk - The first argument is the error, the second argument is the asset */ async addAsset(asset: Asset) { await this.icloud.photos.downloadAsset(asset); try { await asset.verify(); } catch (err) { Resources.emit(iCPSEventRuntimeWarning.WRITE_ASSET_ERROR, err, asset); return; } Resources.emit(iCPSEventSyncEngine.WRITE_ASSET_COMPLETED, asset.getDisplayName()); } /** * Writes the album changes defined in the processing queue to to disk * @param processingQueue - The album processing queue, expected to have resolved all hierarchical dependencies * @returns A promise that settles, once all album changes have been written to disk */ async writeAlbums(processingQueue: PLibraryProcessingQueues<Album>) { Resources.logger(this).info(`Writing lib structure!`); // Making sure our queues are sorted const toBeDeleted: Album[] = SyncEngineHelper.sortQueue(processingQueue[0]); const toBeAdded: Album[] = SyncEngineHelper.sortQueue(processingQueue[1]); // Deletion before addition, in order to avoid duplicate folders // Reversing processing order, since we need to remove nested folders first toBeDeleted.reverse().forEach(album => { this.removeAlbum(album); }); toBeAdded.forEach(album => { this.addAlbum(album); }); await this.photosLibrary.cleanArchivedOrphans(); } /** * Writes the data structure of an album to disk. This includes: * * Create a hidden folder containing the UUID * * Create a link to the hidden folder, containing the real name of the album * * (If possible) link correct pictures from the assetFolder to the newly created album * @param album - The album, that should be written to disk * @throws An iCPSError, if an archived album could not be retrieved from the stash * @emits iCPSEventRuntimeWarning.WRITE_ALBUM_ERROR - When an error occurs while writing the album to disk - The first argument is the iCPSError, the second argument is the album */ addAlbum(album: Album) { // If albumType == Archive -> Check in 'archivedFolder' and move Resources.logger(this).debug(`Creating album ${album.getDisplayName()} with parent ${album.parentAlbumUUID}`); if (album.albumType === AlbumType.ARCHIVED) { try { this.photosLibrary.retrieveStashedAlbum(album); } catch (err) { throw new iCPSError(SYNC_ERR.STASH_RETRIEVE) .addMessage(album.getDisplayName()) .addCause(err); } return; } try { this.photosLibrary.writeAlbum(album); } catch (err) { Resources.emit(iCPSEventRuntimeWarning.WRITE_ALBUM_ERROR, new iCPSError(SYNC_ERR.ADD_ALBUM).addCause(err), album); } } /** * This will delete an album from disk and remove all associated symlinks * Deletion will only happen if the album is 'empty'. This means it only contains symlinks or 'safe' files. Any other folder or file will result in the folder not being deleted. * @param album - The album that needs to be deleted * @throws An iCPSError, if an archived album could not be stashed * @emits iCPSEventRuntimeWarning.WRITE_ALBUM_ERROR - When an error occurs while writing the album to disk - The first argument is the iCPSError, the second argument is the album */ removeAlbum(album: Album) { Resources.logger(this).debug(`Removing album ${album.getDisplayName()}`); if (album.albumType === AlbumType.ARCHIVED) { try { this.photosLibrary.stashArchivedAlbum(album); } catch (err) { throw new iCPSError(SYNC_ERR.STASH) .addMessage(album.getDisplayName()) .addCause(err); } return; } try { this.photosLibrary.deleteAlbum(album); } catch (err) { Resources.emit(iCPSEventRuntimeWarning.WRITE_ALBUM_ERROR, new iCPSError(SYNC_ERR.DELETE_ALBUM).addCause(err), album); } } } |