Source

lib/asset/uploadItem.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. const getVerification = require('../util/getVerification.js').func
  4. // Args
  5. exports.required = ['name', 'assetType', 'file']
  6. exports.optional = ['groupId', 'jar']
  7. // Docs
  8. /**
  9. * 🔐 Upload an item.
  10. * @category Asset
  11. * @alias uploadItem
  12. * @param {string} name - The name of the asset.
  13. * @param {number} assetType - The [id for the asset type]{@link https://developer.roblox.com/en-us/api-reference/enum/AssetType}.
  14. * @param {ReadStream} file - The read stream for the asset being uploaded.
  15. * @param {number=} groupId - The group to upload the asset to.
  16. * @returns {Promise<UploadItemResponse>}
  17. * @example const noblox = require("noblox.js")
  18. * const fs = require("fs")
  19. * // Login using your cookie
  20. * await noblox.uploadItem("A cool decal.", 13, fs.createReadStream("./Image.png"))
  21. **/
  22. // Define
  23. function uploadItem (jar, file, name, assetType, groupId) {
  24. return new Promise((resolve, reject) => {
  25. return getVerification({
  26. url: 'https://www.roblox.com/build/upload',
  27. options: {
  28. jar
  29. }
  30. }).then(function (ver) {
  31. const data = {
  32. name,
  33. assetTypeId: assetType,
  34. groupId: groupId || '',
  35. __RequestVerificationToken: ver.inputs.__RequestVerificationToken,
  36. file: {
  37. value: file,
  38. options: {
  39. filename: 'Image.png',
  40. contentType: 'image/png'
  41. }
  42. }
  43. }
  44. return http({
  45. url: '//www.roblox.com/build/upload',
  46. options: {
  47. method: 'POST',
  48. verification: ver.header,
  49. formData: data,
  50. resolveWithFullResponse: true,
  51. jar
  52. }
  53. }).then(function (res) {
  54. if (res.statusCode === 302) {
  55. const location = res.headers.location
  56. const errMsg = location.match('uploadedId=(.*)$')
  57. const match = location.match(/\d+$/)
  58. if (match) {
  59. const id = parseInt(match[0], 10)
  60. if (location.indexOf('/build/upload') === -1) {
  61. reject(new Error('Unknown redirect: ' + location))
  62. }
  63. resolve(id)
  64. } else if (errMsg) {
  65. reject(new Error('Upload error: ' + decodeURI(errMsg[1])))
  66. } else {
  67. reject(new Error('Match error. Original: ' + location))
  68. }
  69. } else {
  70. reject(new Error('Unknown upload error'))
  71. }
  72. })
  73. })
  74. .catch(error => reject(error))
  75. })
  76. }
  77. exports.func = function (args) {
  78. return uploadItem(args.jar, args.file, args.name, args.assetType, args.groupId)
  79. }