# =================================================================================================== # _ __ _ _ # | |/ /__ _| | |_ _ _ _ _ __ _ # | ' . # # @ignore # =================================================================================================== require 'kaltura_client.rb' module Kaltura class KalturaTag < KalturaObjectBase attr_accessor :id attr_accessor :tag attr_accessor :tagged_object_type attr_accessor :partner_id attr_accessor :instance_count attr_accessor :created_at attr_accessor :updated_at def id=(val) @id = val.to_i end def partner_id=(val) @partner_id = val.to_i end def instance_count=(val) @instance_count = val.to_i end def created_at=(val) @created_at = val.to_i end def updated_at=(val) @updated_at = val.to_i end end class KalturaTagListResponse < KalturaObjectBase attr_accessor :objects attr_accessor :total_count def total_count=(val) @total_count = val.to_i end end class KalturaIndexTagsByPrivacyContextJobData < KalturaJobData attr_accessor :changed_category_id attr_accessor :deleted_privacy_contexts attr_accessor :added_privacy_contexts def changed_category_id=(val) @changed_category_id = val.to_i end end class KalturaTagFilter < KalturaFilter attr_accessor :object_type_equal attr_accessor :tag_equal attr_accessor :tag_starts_with attr_accessor :instance_count_equal attr_accessor :instance_count_in def instance_count_equal=(val) @instance_count_equal = val.to_i end def instance_count_in=(val) @instance_count_in = val.to_i end end # Search object tags # class KalturaTagService < KalturaServiceBase def initialize(client) super(client) end def search(tag_filter, pager=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'tagFilter', tag_filter); client.add_param(kparams, 'pager', pager); client.queue_service_action_call('tagsearch_tag', 'search', kparams); if (client.is_multirequest) return nil; end return client.do_queue(); end # Action goes over all tags with instanceCount==0 and checks whether they need to be removed from the DB. Returns number of removed tags. # def delete_pending() kparams = {} client.queue_service_action_call('tagsearch_tag', 'deletePending', kparams); if (client.is_multirequest) return nil; end return client.do_queue(); end def index_category_entry_tags(category_id, pc_to_decrement, pc_to_increment) kparams = {} client.add_param(kparams, 'categoryId', category_id); client.add_param(kparams, 'pcToDecrement', pc_to_decrement); client.add_param(kparams, 'pcToIncrement', pc_to_increment); client.queue_service_action_call('tagsearch_tag', 'indexCategoryEntryTags', kparams); if (client.is_multirequest) return nil; end return client.do_queue(); end end class KalturaClient < KalturaClientBase attr_reader :tag_service def tag_service if (@tag_service == nil) @tag_service = KalturaTagService.new(self) end return @tag_service end end end