Class: Kaltura::KalturaUserService
- Inherits:
-
KalturaServiceBase
- Object
- KalturaServiceBase
- Kaltura::KalturaUserService
- Defined in:
- lib/kaltura_client.rb
Overview
Manage partner users on Kaltura’s side
The userId in kaltura is the unique ID in the partner's system, and the [partnerId,Id] couple are unique key in kaltura's DB
Instance Attribute Summary
Attributes inherited from KalturaServiceBase
Instance Method Summary collapse
-
#add(user) ⇒ KalturaUser
Adds a new user to an existing account in the Kaltura database.
- #add_from_bulk_upload(file_data, bulk_upload_data = KalturaNotImplemented, bulk_upload_user_data = KalturaNotImplemented) ⇒ KalturaBulkUpload
-
#check_login_data_exists(filter) ⇒ bool
Action which checks whther user login.
-
#delete(user_id) ⇒ KalturaUser
Deletes a user from a partner account.
-
#disable_login(user_id = KalturaNotImplemented, login_id = KalturaNotImplemented) ⇒ KalturaUser
Disables a user’s ability to log into a partner account using an email address and a password.
-
#enable_login(user_id, login_id, password = KalturaNotImplemented) ⇒ KalturaUser
Enables a user to log into a partner account using an email address and a password.
-
#export_to_csv(filter = KalturaNotImplemented, metadata_profile_id = KalturaNotImplemented, additional_fields = KalturaNotImplemented) ⇒ string
Creates a batch job that sends an email with a link to download a CSV containing a list of users.
-
#generate_qr_code(hash_key) ⇒ string
get QR image content.
-
#get(user_id = KalturaNotImplemented) ⇒ KalturaUser
Retrieves a user object for a specified user ID.
-
#get_by_login_id(login_id) ⇒ KalturaUser
Retrieves a user object for a user’s login ID and partner ID.
-
#index(id, should_update = true) ⇒ string
Index an entry by id.
-
#initialize(client) ⇒ KalturaUserService
constructor
A new instance of KalturaUserService.
-
#list(filter = KalturaNotImplemented, pager = KalturaNotImplemented) ⇒ KalturaUserListResponse
Lists user objects that are associated with an account.
-
#login(partner_id, user_id, password, expiry = 86400, privileges = '*') ⇒ string
Logs a user into a partner account with a partner ID, a partner user ID (puser), and a user password.
-
#login_by_ks(requested_partner_id) ⇒ KalturaSessionResponse
Logs a user to the destination account provided the KS’ user ID is associated with the destination account and the loginData ID matches.
-
#login_by_login_id(login_id, password, partner_id = KalturaNotImplemented, expiry = 86400, privileges = '*', otp = KalturaNotImplemented) ⇒ string
Logs a user into a partner account with a user login ID and a user password.
-
#notify_ban(user_id) ⇒ Object
Notifies that a user is banned from an account.
-
#reset_password(email) ⇒ Object
Reset user’s password and send the user an email to generate a new one.
-
#serve_csv(id) ⇒ string
Will serve a requested CSV.
-
#set_initial_password(hash_key, new_password) ⇒ KalturaAuthentication
Set initial user password.
-
#update(user_id, user) ⇒ KalturaUser
Updates an existing user object.
-
#update_login_data(old_login_id, password, new_login_id = '', new_password = '', new_first_name = KalturaNotImplemented, new_last_name = KalturaNotImplemented, otp = KalturaNotImplemented) ⇒ Object
Updates a user’s login data: email, password, name.
Constructor Details
#initialize(client) ⇒ KalturaUserService
Returns a new instance of KalturaUserService.
5481 5482 5483 |
# File 'lib/kaltura_client.rb', line 5481 def initialize(client) super(client) end |
Instance Method Details
#add(user) ⇒ KalturaUser
Adds a new user to an existing account in the Kaltura database. Input param $id is the unique identifier in the partner’s system.
5488 5489 5490 5491 5492 5493 5494 5495 5496 |
# File 'lib/kaltura_client.rb', line 5488 def add(user) kparams = {} client.add_param(kparams, 'user', user) client.queue_service_action_call('user', 'add', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#add_from_bulk_upload(file_data, bulk_upload_data = KalturaNotImplemented, bulk_upload_user_data = KalturaNotImplemented) ⇒ KalturaBulkUpload
5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 |
# File 'lib/kaltura_client.rb', line 5499 def add_from_bulk_upload(file_data, bulk_upload_data=KalturaNotImplemented, bulk_upload_user_data=KalturaNotImplemented) kparams = {} kfiles = {} client.add_param(kfiles, 'fileData', file_data) client.add_param(kparams, 'bulkUploadData', bulk_upload_data) client.add_param(kparams, 'bulkUploadUserData', bulk_upload_user_data) client.queue_service_action_call('user', 'addFromBulkUpload', 'KalturaBulkUpload', kparams, kfiles) if (client.is_multirequest) return nil end return client.do_queue() end |
#check_login_data_exists(filter) ⇒ bool
Action which checks whther user login
5514 5515 5516 5517 5518 5519 5520 5521 5522 |
# File 'lib/kaltura_client.rb', line 5514 def check_login_data_exists(filter) kparams = {} client.add_param(kparams, 'filter', filter) client.queue_service_action_call('user', 'checkLoginDataExists', 'bool', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#delete(user_id) ⇒ KalturaUser
Deletes a user from a partner account.
5526 5527 5528 5529 5530 5531 5532 5533 5534 |
# File 'lib/kaltura_client.rb', line 5526 def delete(user_id) kparams = {} client.add_param(kparams, 'userId', user_id) client.queue_service_action_call('user', 'delete', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#disable_login(user_id = KalturaNotImplemented, login_id = KalturaNotImplemented) ⇒ KalturaUser
Disables a user’s ability to log into a partner account using an email address and a password. You may use either a userId or a loginId parameter for this action.
5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 |
# File 'lib/kaltura_client.rb', line 5539 def disable_login(user_id=KalturaNotImplemented, login_id=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'userId', user_id) client.add_param(kparams, 'loginId', login_id) client.queue_service_action_call('user', 'disableLogin', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#enable_login(user_id, login_id, password = KalturaNotImplemented) ⇒ KalturaUser
Enables a user to log into a partner account using an email address and a password
5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 |
# File 'lib/kaltura_client.rb', line 5552 def enable_login(user_id, login_id, password=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'userId', user_id) client.add_param(kparams, 'loginId', login_id) client.add_param(kparams, 'password', password) client.queue_service_action_call('user', 'enableLogin', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#export_to_csv(filter = KalturaNotImplemented, metadata_profile_id = KalturaNotImplemented, additional_fields = KalturaNotImplemented) ⇒ string
Creates a batch job that sends an email with a link to download a CSV containing a list of users
5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 |
# File 'lib/kaltura_client.rb', line 5566 def export_to_csv(filter=KalturaNotImplemented, =KalturaNotImplemented, additional_fields=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'filter', filter) client.add_param(kparams, 'metadataProfileId', ) client.add_param(kparams, 'additionalFields', additional_fields) client.queue_service_action_call('user', 'exportToCsv', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#generate_qr_code(hash_key) ⇒ string
get QR image content
5580 5581 5582 5583 5584 5585 5586 5587 5588 |
# File 'lib/kaltura_client.rb', line 5580 def generate_qr_code(hash_key) kparams = {} client.add_param(kparams, 'hashKey', hash_key) client.queue_service_action_call('user', 'generateQrCode', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#get(user_id = KalturaNotImplemented) ⇒ KalturaUser
Retrieves a user object for a specified user ID.
5592 5593 5594 5595 5596 5597 5598 5599 5600 |
# File 'lib/kaltura_client.rb', line 5592 def get(user_id=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'userId', user_id) client.queue_service_action_call('user', 'get', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#get_by_login_id(login_id) ⇒ KalturaUser
Retrieves a user object for a user’s login ID and partner ID. A login ID is the email address used by a user to log into the system.
5605 5606 5607 5608 5609 5610 5611 5612 5613 |
# File 'lib/kaltura_client.rb', line 5605 def get_by_login_id(login_id) kparams = {} client.add_param(kparams, 'loginId', login_id) client.queue_service_action_call('user', 'getByLoginId', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#index(id, should_update = true) ⇒ string
Index an entry by id.
5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 |
# File 'lib/kaltura_client.rb', line 5617 def index(id, should_update=true) kparams = {} client.add_param(kparams, 'id', id) client.add_param(kparams, 'shouldUpdate', should_update) client.queue_service_action_call('user', 'index', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#list(filter = KalturaNotImplemented, pager = KalturaNotImplemented) ⇒ KalturaUserListResponse
Lists user objects that are associated with an account. Blocked users are listed unless you use a filter to exclude them. Deleted users are not listed unless you use a filter to include them.
5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 |
# File 'lib/kaltura_client.rb', line 5632 def list(filter=KalturaNotImplemented, pager=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'filter', filter) client.add_param(kparams, 'pager', pager) client.queue_service_action_call('user', 'list', 'KalturaUserListResponse', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#login(partner_id, user_id, password, expiry = 86400, privileges = '*') ⇒ string
Logs a user into a partner account with a partner ID, a partner user ID (puser), and a user password.
5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 |
# File 'lib/kaltura_client.rb', line 5645 def login(partner_id, user_id, password, expiry=86400, privileges='*') kparams = {} client.add_param(kparams, 'partnerId', partner_id) client.add_param(kparams, 'userId', user_id) client.add_param(kparams, 'password', password) client.add_param(kparams, 'expiry', expiry) client.add_param(kparams, 'privileges', privileges) client.queue_service_action_call('user', 'login', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#login_by_ks(requested_partner_id) ⇒ KalturaSessionResponse
Logs a user to the destination account provided the KS’ user ID is associated with the destination account and the loginData ID matches
5661 5662 5663 5664 5665 5666 5667 5668 5669 |
# File 'lib/kaltura_client.rb', line 5661 def login_by_ks(requested_partner_id) kparams = {} client.add_param(kparams, 'requestedPartnerId', requested_partner_id) client.queue_service_action_call('user', 'loginByKs', 'KalturaSessionResponse', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#login_by_login_id(login_id, password, partner_id = KalturaNotImplemented, expiry = 86400, privileges = '*', otp = KalturaNotImplemented) ⇒ string
Logs a user into a partner account with a user login ID and a user password.
5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 |
# File 'lib/kaltura_client.rb', line 5673 def login_by_login_id(login_id, password, partner_id=KalturaNotImplemented, expiry=86400, privileges='*', otp=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'loginId', login_id) client.add_param(kparams, 'password', password) client.add_param(kparams, 'partnerId', partner_id) client.add_param(kparams, 'expiry', expiry) client.add_param(kparams, 'privileges', privileges) client.add_param(kparams, 'otp', otp) client.queue_service_action_call('user', 'loginByLoginId', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#notify_ban(user_id) ⇒ Object
Notifies that a user is banned from an account.
5690 5691 5692 5693 5694 5695 5696 5697 5698 |
# File 'lib/kaltura_client.rb', line 5690 def notify_ban(user_id) kparams = {} client.add_param(kparams, 'userId', user_id) client.queue_service_action_call('user', 'notifyBan', '', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#reset_password(email) ⇒ Object
Reset user’s password and send the user an email to generate a new one.
5702 5703 5704 5705 5706 5707 5708 5709 5710 |
# File 'lib/kaltura_client.rb', line 5702 def reset_password(email) kparams = {} client.add_param(kparams, 'email', email) client.queue_service_action_call('user', 'resetPassword', '', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#serve_csv(id) ⇒ string
Will serve a requested CSV
5714 5715 5716 5717 5718 5719 5720 5721 5722 |
# File 'lib/kaltura_client.rb', line 5714 def serve_csv(id) kparams = {} client.add_param(kparams, 'id', id) client.queue_service_action_call('user', 'serveCsv', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#set_initial_password(hash_key, new_password) ⇒ KalturaAuthentication
Set initial user password
5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 |
# File 'lib/kaltura_client.rb', line 5726 def set_initial_password(hash_key, new_password) kparams = {} client.add_param(kparams, 'hashKey', hash_key) client.add_param(kparams, 'newPassword', new_password) client.queue_service_action_call('user', 'setInitialPassword', 'KalturaAuthentication', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#update(user_id, user) ⇒ KalturaUser
Updates an existing user object. You can also use this action to update the userId.
5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 |
# File 'lib/kaltura_client.rb', line 5740 def update(user_id, user) kparams = {} client.add_param(kparams, 'userId', user_id) client.add_param(kparams, 'user', user) client.queue_service_action_call('user', 'update', 'KalturaUser', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#update_login_data(old_login_id, password, new_login_id = '', new_password = '', new_first_name = KalturaNotImplemented, new_last_name = KalturaNotImplemented, otp = KalturaNotImplemented) ⇒ Object
Updates a user’s login data: email, password, name.
5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 |
# File 'lib/kaltura_client.rb', line 5753 def update_login_data(old_login_id, password, new_login_id='', new_password='', new_first_name=KalturaNotImplemented, new_last_name=KalturaNotImplemented, otp=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'oldLoginId', old_login_id) client.add_param(kparams, 'password', password) client.add_param(kparams, 'newLoginId', new_login_id) client.add_param(kparams, 'newPassword', new_password) client.add_param(kparams, 'newFirstName', new_first_name) client.add_param(kparams, 'newLastName', new_last_name) client.add_param(kparams, 'otp', otp) client.queue_service_action_call('user', 'updateLoginData', '', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |