You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			910 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			910 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /* eslint @typescript-eslint/no-unused-vars: 0, no-unused-vars: 0 */
 | |
| 
 | |
| import { ImportExportResult } from './types';
 | |
| 
 | |
| import Setting from '../../models/Setting';
 | |
| import shim from '../../shim';
 | |
| 
 | |
| export default class InteropService_Importer_Base {
 | |
| 
 | |
| 	private metadata_: any = null;
 | |
| 	protected sourcePath_ = '';
 | |
| 	protected options_: any = {};
 | |
| 
 | |
| 	public setMetadata(md: any) {
 | |
| 		this.metadata_ = md;
 | |
| 	}
 | |
| 
 | |
| 	public metadata() {
 | |
| 		return this.metadata_;
 | |
| 	}
 | |
| 
 | |
| 	public async init(sourcePath: string, options: any) {
 | |
| 		this.sourcePath_ = sourcePath;
 | |
| 		this.options_ = options;
 | |
| 	}
 | |
| 
 | |
| 	public async exec(_result: ImportExportResult): Promise<ImportExportResult> { return null; }
 | |
| 
 | |
| 	protected async temporaryDirectory_(createIt: boolean) {
 | |
| 		const md5 = require('md5');
 | |
| 		const tempDir = `${Setting.value('tempDir')}/${md5(Math.random() + Date.now())}`;
 | |
| 		if (createIt) await shim.fsDriver().mkdir(tempDir);
 | |
| 		return tempDir;
 | |
| 	}
 | |
| }
 |