Module: Assets

Included in:
Content
Defined in:
lib/user/content/assets.rb

Instance Method Summary collapse

Instance Method Details

#create_asset_size(data) ⇒ Object

Create asset size.

Create an asset size by data.

Parameters

data

(Hash) – Data to be submited.

Example

 data = {
   "aspectRadio": "custom",
   "assetId": 23,
   "drawPosData": {
     "pos": {
       "sx": 100,
       "sy": 100,
       "swidth": 200,
       "sheight": 200
     }
   },
   "width": 100,
   "height": 100,
   "slug": "fuji_size_slug",
   "title": "fuji_size",
   "variationId": "original"
}
@data = @mints_user.create_asset_size(data.to_json)

180
181
182
# File 'lib/user/content/assets.rb', line 180

def create_asset_size(data)
    return @client.raw("post", "/content/assets/createSize", nil, data)
end

#delete_asset_sizeObject

Delete asset size.


194
195
196
# File 'lib/user/content/assets.rb', line 194

def delete_asset_size #TODO: Not tested
    return @client.raw("get", "/content/assets/deleteSize") #DELETE OR GET?
end

#delete_asset_variationObject

Delete asset variation.


244
245
246
# File 'lib/user/content/assets.rb', line 244

def delete_asset_variation #TODO: Not tested
    return @client.raw("get", "/content/assets/deleteVariation") #DELETE OR GET?
end

#download_asset(id) ⇒ Object

Download asset.

Get information of an asset.

Parameters

id

(Integer) – Asset id.

Example

@data = @mints_user.download_asset(2)

32
33
34
# File 'lib/user/content/assets.rb', line 32

def download_asset(id) #FIXME: File not found at path, error in result but method works
    return @client.raw("get", "/content/assets/download/#{id}")
end

#edit_asset_size(data) ⇒ Object

Edit asset size.

Edit an asset size.

Parameters

data

(Hash) – Data to be submited.


189
190
191
# File 'lib/user/content/assets.rb', line 189

def edit_asset_size(data) #TODO: Not tested
    return @client.raw("post", "/content/assets/editSize", nil, data)
end

#generate_asset_variation(data) ⇒ Object

Generate asset variation.

Create an asset variation of an existing asset.

Parameters

data

(Hash) – Data to be submited.


223
224
225
# File 'lib/user/content/assets.rb', line 223

def generate_asset_variation(data) #FIXME: Trying to get property 'width' of non-object
    return @client.raw("post", "/content/assets/generateAssetVariations", nil, data)
end

#get_asset_doc_typesObject

Get asset doc types.

Get doc types of assets.


62
63
64
# File 'lib/user/content/assets.rb', line 62

def get_asset_doc_types
    return @client.raw("get", "/content/assets/docTypes")
end

#get_asset_info(options) ⇒ Object

Get asset info.

Get info of an asset. TODO: Research if is an asset or many assets

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.


56
57
58
# File 'lib/user/content/assets.rb', line 56

def get_asset_info(options)
    return @client.raw("get", "/content/assets/getAssetInfo", options)
end

Get asset link info.

Get information of an asset by url.

Parameters

data

(Hash) – Data to be submited.

Example

data = { 
  "link": "https://www.example.com/img/img.jpg"
}
@data = @mints_user.get_asset_link_info(data.to_json)

20
21
22
# File 'lib/user/content/assets.rb', line 20

def get_asset_link_info(data)
    return @client.raw("post", "/content/assets/getLinkInfo", nil, data)
end

#get_asset_public_routeObject

Get asset public route.

Get public route of assets.


68
69
70
# File 'lib/user/content/assets.rb', line 68

def get_asset_public_route
    return @client.raw("get", "/content/assets/publicRoute")
end

#get_asset_sizes(id) ⇒ Object

Get asset sizes.

Get sizes of an asset.

Parameters

id

(Integer) Asset id.

Example

@data = @mints_user.get_asset_sizes(2)

139
140
141
# File 'lib/user/content/assets.rb', line 139

def get_asset_sizes(options)
    return @client.raw("get", "/content/assets/getSizes", options)
end

#get_asset_usage(options) ⇒ Object

Get asset usage.

Get usage of an asset.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.


46
47
48
# File 'lib/user/content/assets.rb', line 46

def get_asset_usage(options) #get, le mandas el asset id para saber donde lo has puesto 
    return @client.raw("get", "/content/assets/usage", options)
end

#get_asset_variation(id) ⇒ Object

Get asset variation.

Get variation of an asset.

Parameters

id

(Integer) Asset variation id. #TODO: Research if is an asset id or an variation id

Example

@data = @mints_user.get_asset_sizes(2)

212
213
214
215
216
# File 'lib/user/content/assets.rb', line 212

def get_asset_variation(id)
    #FIXME: Id 1 and 4: Trying to get property 'path' of non-object maybe json convertion is bad
    #FIXME: Id 2 and 3: File not found at path maybe doesnt exist
    return @client.raw("get", "/content/assets/variation/#{id}")
end

#get_original_asset(id) ⇒ Object

Get original asset.

Parameters

id

(Integer) Asset id.


256
257
258
# File 'lib/user/content/assets.rb', line 256

def get_original_asset(id) #FIXME: Doesn't return JSON
    return @client.raw("get", "/content/assets/original/#{id}")
end

#update_asset_variation(id, data) ⇒ Object

Update asset variation.

Parameters

data

(Hash) – Data to be submited.


239
240
241
# File 'lib/user/content/assets.rb', line 239

def update_asset_variation(id, data) #TODO:
    return @client.raw("post", "/content/assets/updateVariation/#{id}", nil, data)
end

#upload_asset(data) ⇒ Object

Upload asset.

Upload an asset. It can be images, documents and videos.

Parameters

data

(Hash) – Data to be submited.

First Example (with files)

Second Example (with urls)

data = {
  "title": "asset title",
  "description": "asset description",
  "link": "https://link/example",
  "url-type": "url-image",
  "slug": "slug",
  "type": "link",
  "father_id": 1
}
@data = @mints_user.upload_asset(data.to_json)

Third Example (with video)

data = {
  "title": "Video Title",
  "fileType": "video/mp4",
  "type": "video",
  "slug": "video-slug",
  "status": "not-uploaded",
  "ext": "mp4",
  "size": 29605264,
  "access_token": "access_token",
  "name": "Video Title",
  "videoData": {
    "id": 80313307,
    "name": "Video Title",
    "type": "video",
    "created": "2021-10-19T19:18:17+00:00",
    "updated": "2021-10-19T19:18:17+00:00",
    "duration": 191.936133,
    "hashed_id": "hashed_id",
    "progress": 0.14285714285714285,
    "status": "queued",
    "thumbnail": {
      "url": "https://www.example.com/img/img.jpg",
      "width": 200,
      "height": 120
    },
    "account_id": 1234567
  }
}
@data = @mints_user.upload_asset(data.to_json)

123
124
125
# File 'lib/user/content/assets.rb', line 123

def upload_asset(data) #TODO: Research a way to upload a File accross sdk
    return @client.raw("post", "/content/assets/upload", nil, data)
end

#upload_asset_variation(data) ⇒ Object

Upload asset variation.

Parameters

data

(Hash) – Data to be submited.


231
232
233
# File 'lib/user/content/assets.rb', line 231

def upload_asset_variation(data) #FIXME: Call to a member function guessClientExtension() on null
    return @client.raw("post", "/content/assets/uploadVariation", nil, data)
end