Class: Kaltura::KalturaUploadService
- Inherits:
-
KalturaServiceBase
- Object
- KalturaServiceBase
- Kaltura::KalturaUploadService
- Defined in:
- lib/kaltura_client.rb
Instance Attribute Summary
Attributes inherited from KalturaServiceBase
Instance Method Summary collapse
- #get_uploaded_file_token_by_file_name(file_name) ⇒ KalturaUploadResponse
-
#initialize(client) ⇒ KalturaUploadService
constructor
A new instance of KalturaUploadService.
- #upload(file_data) ⇒ string
Constructor Details
#initialize(client) ⇒ KalturaUploadService
Returns a new instance of KalturaUploadService.
5199 5200 5201 |
# File 'lib/kaltura_client.rb', line 5199 def initialize(client) super(client) end |
Instance Method Details
#get_uploaded_file_token_by_file_name(file_name) ⇒ KalturaUploadResponse
5204 5205 5206 5207 5208 5209 5210 5211 5212 |
# File 'lib/kaltura_client.rb', line 5204 def get_uploaded_file_token_by_file_name(file_name) kparams = {} client.add_param(kparams, 'fileName', file_name) client.queue_service_action_call('upload', 'getUploadedFileTokenByFileName', 'KalturaUploadResponse', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#upload(file_data) ⇒ string
5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 |
# File 'lib/kaltura_client.rb', line 5215 def upload(file_data) kparams = {} kfiles = {} client.add_param(kfiles, 'fileData', file_data) client.queue_service_action_call('upload', 'upload', 'string', kparams, kfiles) if (client.is_multirequest) return nil end return client.do_queue() end |