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.
5160 5161 5162 |
# File 'lib/kaltura_client.rb', line 5160 def initialize(client) super(client) end |
Instance Method Details
#get_uploaded_file_token_by_file_name(file_name) ⇒ KalturaUploadResponse
5165 5166 5167 5168 5169 5170 5171 5172 5173 |
# File 'lib/kaltura_client.rb', line 5165 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
5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 |
# File 'lib/kaltura_client.rb', line 5176 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 |