mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 01:33:09 +02:00
414f1d1158
* move truncate function to separate file to reuse it * truncate image descriptions * show image description limit in UI * correctly treat null Co-authored-by: nullobsi <me@nullob.si> * make truncate Unicode-aware The strings that truncate returns should now be valid Unicode. PostgreSQL also counts Unicode Code Points instead of bytes so this should be correct. * move truncate to internal, validate in API Truncating could also be done in src/services/drive/add-file.ts or src/services/drive/upload-from-url.ts but those would also affect local images. But local images should result in a hard error if the image comment is too long. * avoid overwriting Co-authored-by: nullobsi <me@nullob.si>
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
|
|
// If you change DB_* values, you must also change the DB schema.
|
|
|
|
/**
|
|
* Maximum note text length that can be stored in DB.
|
|
* Surrogate pairs count as one
|
|
*/
|
|
export const DB_MAX_NOTE_TEXT_LENGTH = 8192;
|
|
|
|
/**
|
|
* Maximum image description length that can be stored in DB.
|
|
* Surrogate pairs count as one
|
|
*/
|
|
export const DB_MAX_IMAGE_COMMENT_LENGTH = 512;
|