storage.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. /*
  2. * This file is part of the storage node for the Joystream project.
  3. * Copyright (C) 2019 Joystream Contributors
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. 'use strict'
  19. const { Transform } = require('stream')
  20. const fs = require('fs')
  21. const debug = require('debug')('joystream:storage:storage')
  22. const Promise = require('bluebird')
  23. const Hash = require('ipfs-only-hash')
  24. Promise.config({
  25. cancellation: true,
  26. })
  27. const fileType = require('file-type')
  28. const ipfsClient = require('ipfs-http-client')
  29. const temp = require('temp').track()
  30. const _ = require('lodash')
  31. // Default request timeout; imposed on top of the IPFS client, because the
  32. // client doesn't seem to care.
  33. const DEFAULT_TIMEOUT = 30 * 1000
  34. // Default/dummy resolution implementation.
  35. const DEFAULT_RESOLVE_CONTENT_ID = async (original) => {
  36. debug('Warning: Default resolution returns original CID', original)
  37. return original
  38. }
  39. // Default file info if nothing could be detected.
  40. const DEFAULT_FILE_INFO = {
  41. mimeType: 'application/octet-stream',
  42. ext: 'bin',
  43. }
  44. /*
  45. * fileType is a weird name, because we're really looking at MIME types.
  46. * Also, the type field includes extension info, so we're going to call
  47. * it fileInfo { mimeType, ext } instead.
  48. * Nitpicking, but it also means we can add our default type if things
  49. * go wrong.
  50. */
  51. function fixFileInfo(info) {
  52. if (!info) {
  53. info = DEFAULT_FILE_INFO
  54. } else {
  55. info.mimeType = info.mime
  56. delete info.mime
  57. }
  58. return info
  59. }
  60. function fixFileInfoOnStream(stream) {
  61. const info = fixFileInfo(stream.fileType)
  62. delete stream.fileType
  63. stream.fileInfo = info
  64. return stream
  65. }
  66. /*
  67. * Internal Transform stream for helping write to a temporary location, adding
  68. * MIME type detection, and a commit() function.
  69. */
  70. class StorageWriteStream extends Transform {
  71. constructor(storage, options) {
  72. options = _.clone(options || {})
  73. super(options)
  74. this.storage = storage
  75. // Create temp target.
  76. this.temp = temp.createWriteStream()
  77. this.buf = Buffer.alloc(0)
  78. }
  79. _transform(chunk, encoding, callback) {
  80. // Deal with buffers only
  81. if (typeof chunk === 'string') {
  82. chunk = Buffer.from(chunk)
  83. }
  84. this.temp.write(chunk)
  85. // Try to detect file type during streaming.
  86. if (!this.fileInfo && this.buf.byteLength <= fileType.minimumBytes) {
  87. this.buf = Buffer.concat([this.buf, chunk])
  88. if (this.buf >= fileType.minimumBytes) {
  89. const info = fileType(this.buf)
  90. // No info? We will try again at the end of the stream.
  91. if (info) {
  92. this.fileInfo = fixFileInfo(info)
  93. this.emit('fileInfo', this.fileInfo)
  94. }
  95. }
  96. }
  97. callback(null)
  98. }
  99. _flush(callback) {
  100. debug('Flushing temporary stream:', this.temp.path)
  101. this.temp.end()
  102. callback(null)
  103. }
  104. /*
  105. * Get file info
  106. */
  107. async info() {
  108. if (!this.temp) {
  109. throw new Error('Cannot get info on temporary stream that does not exist. Did you call cleanup()?')
  110. }
  111. if (!this.fileInfo) {
  112. const read = fs.createReadStream(this.temp.path)
  113. const stream = await fileType.stream(read)
  114. this.fileInfo = fixFileInfoOnStream(stream).fileInfo
  115. }
  116. if (!this.hash) {
  117. const read = fs.createReadStream(this.temp.path)
  118. this.hash = await Hash.of(read)
  119. }
  120. this.emit('info', this.fileInfo, this.hash)
  121. return {
  122. info: this.fileInfo,
  123. hash: this.hash,
  124. }
  125. }
  126. /*
  127. * Commit this stream to the IPFS backend.
  128. */
  129. commit() {
  130. if (!this.temp) {
  131. throw new Error('Cannot commit a temporary stream that does not exist. Did you call cleanup()?')
  132. }
  133. debug('Committing temporary stream: ', this.temp.path)
  134. this.storage.ipfs
  135. .addFromFs(this.temp.path)
  136. .then(async (result) => {
  137. const hash = result[0].hash
  138. debug('Stream committed as', hash)
  139. this.emit('committed', hash)
  140. await this.storage.ipfs.pin.add(hash)
  141. this.cleanup()
  142. })
  143. .catch((err) => {
  144. debug('Error committing stream', err)
  145. this.emit('error', err)
  146. this.cleanup()
  147. })
  148. }
  149. /*
  150. * Clean up temporary data.
  151. */
  152. cleanup() {
  153. debug('Cleaning up temporary file: ', this.temp.path)
  154. fs.unlink(this.temp.path, () => {
  155. /* Ignore errors. */
  156. })
  157. delete this.temp
  158. }
  159. }
  160. /*
  161. * Manages the storage backend interaction. This provides a Promise-based API.
  162. *
  163. * Usage:
  164. *
  165. * const store = await Storage.create({ ... });
  166. * store.open(...);
  167. */
  168. class Storage {
  169. /*
  170. * Create a Storage instance. Options include:
  171. *
  172. * - an `ipfs` property, which is itself a hash containing
  173. * - `connect_options` to be passed to the IPFS client library for
  174. * connecting to an IPFS node.
  175. * - a `resolve_content_id` function, which translates Joystream
  176. * content IDs to IPFS content IDs or vice versa. The default is to
  177. * not perform any translation, which is not practical for a production
  178. * system, but serves its function during development and testing. The
  179. * function must be asynchronous.
  180. * - a `timeout` parameter, defaulting to DEFAULT_TIMEOUT. After this time,
  181. * requests to the IPFS backend time out.
  182. *
  183. * Functions in this class accept an optional timeout parameter. If the
  184. * timeout is given, it is used - otherwise, the `option.timeout` value
  185. * above is used.
  186. */
  187. static create(options) {
  188. const storage = new Storage()
  189. storage._init(options)
  190. return storage
  191. }
  192. _init(options) {
  193. this.options = _.clone(options || {})
  194. this.options.ipfs = this.options.ipfs || {}
  195. this._timeout = this.options.timeout || DEFAULT_TIMEOUT
  196. this._resolve_content_id = this.options.resolve_content_id || DEFAULT_RESOLVE_CONTENT_ID
  197. this.ipfs = ipfsClient(this.options.ipfsHost || 'localhost', '5001', { protocol: 'http' })
  198. this.pinned = {}
  199. this.pinning = {}
  200. this.ipfs.id((err, identity) => {
  201. if (err) {
  202. debug(`Warning IPFS daemon not running: ${err.message}`)
  203. } else {
  204. debug(`IPFS node is up with identity: ${identity.id}`)
  205. // TODO: wait for IPFS daemon to be online for this to be effective..?
  206. // set the IPFS HTTP Gateway config we desire.. operator might need
  207. // to restart their daemon if the config was changed.
  208. this.ipfs.config.set('Gateway.PublicGateways', { 'localhost': null })
  209. }
  210. })
  211. }
  212. /*
  213. * Uses bluebird's timeout mechanism to return a Promise that times out after
  214. * the given timeout interval, and tries to execute the given operation within
  215. * that time.
  216. */
  217. async withSpecifiedTimeout(timeout, operation) {
  218. // TODO: rewrite this method to async-await style
  219. // eslint-disable-next-line no-async-promise-executor
  220. return new Promise(async (resolve, reject) => {
  221. try {
  222. resolve(await new Promise(operation))
  223. } catch (err) {
  224. reject(err)
  225. }
  226. }).timeout(timeout || this._timeout)
  227. }
  228. /*
  229. * Resolve content ID with timeout.
  230. */
  231. async resolveContentIdWithTimeout(timeout, contentId) {
  232. return await this.withSpecifiedTimeout(timeout, async (resolve, reject) => {
  233. try {
  234. resolve(await this._resolve_content_id(contentId))
  235. } catch (err) {
  236. reject(err)
  237. }
  238. })
  239. }
  240. /*
  241. * Stat a content ID.
  242. */
  243. async stat(contentId, timeout) {
  244. const resolved = await this.resolveContentIdWithTimeout(timeout, contentId)
  245. return await this.withSpecifiedTimeout(timeout, (resolve, reject) => {
  246. this.ipfs.files.stat(`/ipfs/${resolved}`, { withLocal: true }, (err, res) => {
  247. if (err) {
  248. reject(err)
  249. return
  250. }
  251. resolve(res)
  252. })
  253. })
  254. }
  255. /*
  256. * Return the size of a content ID.
  257. */
  258. async size(contentId, timeout) {
  259. const stat = await this.stat(contentId, timeout)
  260. return stat.size
  261. }
  262. /*
  263. * Opens the specified content in read or write mode, and returns a Promise
  264. * with the stream.
  265. *
  266. * Read streams will contain a fileInfo property, with:
  267. * - a `mimeType` field providing the file's MIME type, or a default.
  268. * - an `ext` property, providing a file extension suggestion, or a default.
  269. *
  270. * Write streams have a slightly different flow, in order to allow for MIME
  271. * type detection and potential filtering. First off, they are written to a
  272. * temporary location, and only committed to the backend once their
  273. * `commit()` function is called.
  274. *
  275. * When the commit has finished, a `committed` event is emitted, which
  276. * contains the IPFS backend's content ID.
  277. *
  278. * Write streams also emit a `fileInfo` event during writing. It is passed
  279. * the `fileInfo` field as described above. Event listeners may now opt to
  280. * abort the write or continue and eventually `commit()` the file. There is
  281. * an explicit `cleanup()` function that removes temporary files as well,
  282. * in case comitting is not desired.
  283. */
  284. async open(contentId, mode, timeout) {
  285. if (mode !== 'r' && mode !== 'w') {
  286. throw Error('The only supported modes are "r", "w" and "a".')
  287. }
  288. // Write stream
  289. if (mode === 'w') {
  290. return await this.createWriteStream(contentId, timeout)
  291. }
  292. // Read stream - with file type detection
  293. return await this.createReadStream(contentId, timeout)
  294. }
  295. async createWriteStream() {
  296. // IPFS wants us to just dump a stream into its storage, then returns a
  297. // content ID (of its own).
  298. // We need to instead return a stream immediately, that we eventually
  299. // decorate with the content ID when that's available.
  300. return new Promise((resolve) => {
  301. const stream = new StorageWriteStream(this)
  302. resolve(stream)
  303. })
  304. }
  305. async createReadStream(contentId, timeout) {
  306. const resolved = await this.resolveContentIdWithTimeout(timeout, contentId)
  307. let found = false
  308. return await this.withSpecifiedTimeout(timeout, (resolve, reject) => {
  309. const ls = this.ipfs.getReadableStream(resolved)
  310. ls.on('data', async (result) => {
  311. if (result.path === resolved) {
  312. found = true
  313. const ftStream = await fileType.stream(result.content)
  314. resolve(fixFileInfoOnStream(ftStream))
  315. }
  316. })
  317. ls.on('error', (err) => {
  318. ls.end()
  319. debug(err)
  320. reject(err)
  321. })
  322. ls.on('end', () => {
  323. if (!found) {
  324. const err = new Error('No matching content found for', contentId)
  325. debug(err)
  326. reject(err)
  327. }
  328. })
  329. ls.resume()
  330. })
  331. }
  332. /*
  333. * Synchronize the given content ID
  334. */
  335. async synchronize(contentId, callback) {
  336. const resolved = await this.resolveContentIdWithTimeout(this._timeout, contentId)
  337. // TODO: validate resolved id is proper ipfs_cid, not null or empty string
  338. if (!this.pinning[resolved] && !this.pinned[resolved]) {
  339. debug(`Pinning hash: ${resolved} content-id: ${contentId}`)
  340. this.pinning[resolved] = true
  341. // Callback passed to add() will be called on error or when the entire file
  342. // is retrieved. So on success we consider the content synced.
  343. this.ipfs.pin.add(resolved, { quiet: true, pin: true }, (err) => {
  344. delete this.pinning[resolved]
  345. if (err) {
  346. debug(`Error Pinning: ${resolved}`)
  347. callback && callback(err)
  348. } else {
  349. debug(`Pinned ${resolved}`)
  350. this.pinned[resolved] = true
  351. callback && callback(null, this.syncStatus(resolved))
  352. }
  353. })
  354. } else {
  355. callback && callback(null, this.syncStatus(resolved))
  356. }
  357. }
  358. syncStatus(ipfsHash) {
  359. return {
  360. syncing: this.pinning[ipfsHash] === true,
  361. synced: this.pinned[ipfsHash] === true,
  362. }
  363. }
  364. }
  365. module.exports = {
  366. Storage,
  367. }