file.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. 'use strict'
  2. const _ = require('lodash')
  3. const assert = require('check-types').assert
  4. const OError = require('@overleaf/o-error')
  5. const FileData = require('./file_data')
  6. const HashFileData = require('./file_data/hash_file_data')
  7. const StringFileData = require('./file_data/string_file_data')
  8. /**
  9. * @typedef {import("./blob")} Blob
  10. * @typedef {import("./types").BlobStore} BlobStore
  11. * @typedef {import("./types").StringFileRawData} StringFileRawData
  12. * @typedef {import("./operation/text_operation")} TextOperation
  13. */
  14. /**
  15. * @template T
  16. * @typedef {import("bluebird")<T>} BPromise
  17. */
  18. class NotEditableError extends OError {
  19. constructor() {
  20. super('File is not editable')
  21. }
  22. }
  23. /**
  24. * A file in a {@link Snapshot}. A file has both data and metadata. There
  25. * are several classes of data that represent the various types of file
  26. * data that are supported, namely text and binary, and also the various
  27. * states that a file's data can be in, namely:
  28. *
  29. * 1. Hash only: all we know is the file's hash; this is how we encode file
  30. * content in long term storage.
  31. * 2. Lazily loaded: the hash of the file, its length, and its type are known,
  32. * but its content is not loaded. Operations are cached for application
  33. * later.
  34. * 3. Eagerly loaded: the content of a text file is fully loaded into memory
  35. * as a string.
  36. * 4. Hollow: only the byte and/or UTF-8 length of the file are known; this is
  37. * used to allow for validation of operations when editing collaboratively
  38. * without having to keep file data in memory on the server.
  39. */
  40. class File {
  41. /**
  42. * Blob hash for an empty file.
  43. *
  44. * @type {String}
  45. */
  46. static EMPTY_FILE_HASH = 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'
  47. static NotEditableError = NotEditableError
  48. /**
  49. * @param {FileData} data
  50. * @param {Object} [metadata]
  51. */
  52. constructor(data, metadata) {
  53. assert.instance(data, FileData, 'File: bad data')
  54. this.data = data
  55. this.setMetadata(metadata || {})
  56. }
  57. static fromRaw(raw) {
  58. if (!raw) return null
  59. return new File(FileData.fromRaw(raw), raw.metadata)
  60. }
  61. /**
  62. * @param {string} hash
  63. * @param {Object} [metadata]
  64. * @return {File}
  65. */
  66. static fromHash(hash, metadata) {
  67. return new File(new HashFileData(hash), metadata)
  68. }
  69. /**
  70. * @param {string} string
  71. * @param {Object} [metadata]
  72. * @return {File}
  73. */
  74. static fromString(string, metadata) {
  75. return new File(new StringFileData(string), metadata)
  76. }
  77. /**
  78. * @param {number} [byteLength]
  79. * @param {number} [stringLength]
  80. * @param {Object} [metadata]
  81. * @return {File}
  82. */
  83. static createHollow(byteLength, stringLength, metadata) {
  84. return new File(FileData.createHollow(byteLength, stringLength), metadata)
  85. }
  86. /**
  87. * @param {Blob} blob
  88. * @param {Object} [metadata]
  89. * @return {File}
  90. */
  91. static createLazyFromBlob(blob, metadata) {
  92. return new File(FileData.createLazyFromBlob(blob), metadata)
  93. }
  94. toRaw() {
  95. const rawFileData = this.data.toRaw()
  96. storeRawMetadata(this.metadata, rawFileData)
  97. return rawFileData
  98. }
  99. /**
  100. * Hexadecimal SHA-1 hash of the file's content, if known.
  101. *
  102. * @return {string | null | undefined}
  103. */
  104. getHash() {
  105. return this.data.getHash()
  106. }
  107. /**
  108. * The content of the file, if it is known and if this file has UTF-8 encoded
  109. * content.
  110. *
  111. * @return {string | null | undefined}
  112. */
  113. getContent() {
  114. return this.data.getContent()
  115. }
  116. /**
  117. * Whether this file has string content and is small enough to be edited using
  118. * {@link TextOperation}s.
  119. *
  120. * @return {boolean | null | undefined} null if it is not currently known
  121. */
  122. isEditable() {
  123. return this.data.isEditable()
  124. }
  125. /**
  126. * The length of the file's content in bytes, if known.
  127. *
  128. * @return {number | null | undefined}
  129. */
  130. getByteLength() {
  131. return this.data.getByteLength()
  132. }
  133. /**
  134. * The length of the file's content in characters, if known.
  135. *
  136. * @return {number | null | undefined}
  137. */
  138. getStringLength() {
  139. return this.data.getStringLength()
  140. }
  141. /**
  142. * Return the metadata object for this file.
  143. *
  144. * @return {Object}
  145. */
  146. getMetadata() {
  147. return this.metadata
  148. }
  149. /**
  150. * Set the metadata object for this file.
  151. *
  152. * @param {Object} metadata
  153. */
  154. setMetadata(metadata) {
  155. assert.object(metadata, 'File: bad metadata')
  156. this.metadata = metadata
  157. }
  158. /**
  159. * Edit this file, if possible.
  160. *
  161. * @param {TextOperation} textOperation
  162. */
  163. edit(textOperation) {
  164. if (!this.data.isEditable()) throw new File.NotEditableError()
  165. this.data.edit(textOperation)
  166. }
  167. /**
  168. * Clone a file.
  169. *
  170. * @return {File} a new object of the same type
  171. */
  172. clone() {
  173. return File.fromRaw(this.toRaw())
  174. }
  175. /**
  176. * Convert this file's data to the given kind. This may require us to load file
  177. * size or content from the given blob store, so this is an asynchronous
  178. * operation.
  179. *
  180. * @param {string} kind
  181. * @param {BlobStore} blobStore
  182. * @return {Promise.<File>} for this
  183. */
  184. load(kind, blobStore) {
  185. return this.data.load(kind, blobStore).then(data => {
  186. this.data = data
  187. return this
  188. })
  189. }
  190. /**
  191. * Store the file's content in the blob store and return a raw file with
  192. * the corresponding hash. As a side effect, make this object consistent with
  193. * the hash.
  194. *
  195. * @param {BlobStore} blobStore
  196. * @return {BPromise<Object>} a raw HashFile
  197. */
  198. store(blobStore) {
  199. return this.data.store(blobStore).then(raw => {
  200. storeRawMetadata(this.metadata, raw)
  201. return raw
  202. })
  203. }
  204. }
  205. function storeRawMetadata(metadata, raw) {
  206. if (!_.isEmpty(metadata)) {
  207. raw.metadata = _.cloneDeep(metadata)
  208. }
  209. }
  210. module.exports = File