mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| const sourceIdService = require('../services/source_id');
 | |
| const sql = require('../services/sql');
 | |
| const attributeService = require('../services/attributes');
 | |
| const config = require('../services/config');
 | |
| const optionService = require('../services/options');
 | |
| const log = require('../services/log');
 | |
| const env = require('../services/env');
 | |
| 
 | |
| async function index(req, res) {
 | |
|     const options = await optionService.getOptionsMap();
 | |
| 
 | |
|     const view = req.cookies['trilium-device'] === 'mobile' ? 'mobile' : 'desktop';
 | |
| 
 | |
|     const csrfToken = req.csrfToken();
 | |
|     log.info(`Generated CSRF token ${csrfToken} with secret ${res.getHeader('set-cookie')}`);
 | |
| 
 | |
|     res.render(view, {
 | |
|         csrfToken: csrfToken,
 | |
|         theme: options.theme,
 | |
|         mainFontSize: parseInt(options.mainFontSize),
 | |
|         treeFontSize: parseInt(options.treeFontSize),
 | |
|         detailFontSize: parseInt(options.detailFontSize),
 | |
|         sourceId: await sourceIdService.generateSourceId(),
 | |
|         maxSyncIdAtLoad: await sql.getValue("SELECT MAX(id) FROM sync"),
 | |
|         instanceName: config.General ? config.General.instanceName : null,
 | |
|         appCssNoteIds: await getAppCssNoteIds(),
 | |
|         isDev: env.isDev()
 | |
|     });
 | |
| }
 | |
| 
 | |
| async function getAppCssNoteIds() {
 | |
|     return (await attributeService.getNotesWithLabels(['appCss', 'appTheme']))
 | |
|         .map(note => note.noteId);
 | |
| }
 | |
| 
 | |
| module.exports = {
 | |
|     index
 | |
| };
 |