User

Identity

Amity SDK's do not store or manage any user data. This means that you do not have to import or migrate existing user profiles into the system, user management should be handled by your application code. Instead, every user is simply represented by a unique userID, which can be any string that uniquely identifies the user and is immutable throughout its lifetime.

A database primary key would make an ideal userID. Conversely, something like username or emails is not recommended as those values may change over time.

If you wish to assign additional permissions for a user, for example, moderation privileges or different sending limits, you can provide an array of roles to assign to this user. Roles are defined in the admin panel and can be tied to an unlimited number of users. Once again, Amity does not store or manage any user data, which means you do not have to import or migrate existing users into the system. It also means that Amity cannot provide user management functionalities like list of users, or limit actions of certain users (e.g. user permissions). Instead, these functionalities should be handled by the rest of your application's capabilities and your server.

Description of Users

Name

Data Type

Description

Attributes

userId

string

The id of this user

roles

Array.<string>

A list of user's roles

displayName

string

The display name of the user

flagCount

integer

The number of users that have flagged this user

metadata

Object

The metadata of the user

hashFlag

Object

A hash for checking internally if this user was flagged by the user

createdAt

date

The date/time the user was created at

updatedAt

date

The date/time the user was updated at

isGlobalBan

Boolean

Flag that indicates if the user is globally banned. True means the user is globally banned.

Note: This is not yet supported for Typescript

avatarCustomUrl

String

Custom Url provided for this user avatar

isDeleted

Boolean

Flag that indicates if the user is deleted

Though the SDK does not store and should not be responsible for the handling User profile data for your application; We do provide tools to make some surface-level queries and searches for existing user accounts. With the help of our AmityUserRepository class, you will be able to list all the users, search for list of users whose display name matches your search query and get AmityUser object from user ID.

User Repository

Some SDKs keep the user methods in a UserRepository class. Before calling any User methods, you must first instantiate a repository instance.

Get User Details

Each user consists of a userId and displayName. The userId is immutable once the account is created, however the displayName can be updated at all times.

Each User consists of a userId and displayName. The userId is immutable once the account is created. However, the displayName can be updated at all times. AmityUserRepository provides a convenient method getUser(_:) which maps user id to a particular AmityUser object. It returns a live AmityObject<AmityUser> which you can observe too. It accepts one parameter userId which is the ID of the user.

let userObject = userRepository.getUser("some-user-id")
userObject.observe { (user, error) in
    // you can access AmityUser object as user.object here
}

Create User

Create a new user into the system by logging in as shown below.

Note:

  • When a user ID is created, it can be up to 50 characters in length.

  • When user edits / adds their display name, it can be up to 100 characters in length.

  1. If user doesn’t exist, it will be created upon calling this method.

  2. If displayName is passed, it will update the user directly.

  3. If displayName is passed, but secured mode is enabled, the values will be ignored.

For more details on connecting client such as secure mode, refer to the Getting Started session.

Delete User

When a user is deleted, the account cannot be reactivated in any case. There is no way to recover the data as it is permanently deleted.

Refer Delete User section for more information on what happens when a user is deleted.

Ban User

You can ban a user globally. When users are globally banned, they can no longer access Amity's network and will be forcibly removed from all their existing channels.

Refer global ban documentation for instructions on how to globally ban a user.

Search User

Note: If the user ID or display name you’re searching for contains special characters, you’ll need to enter the whole keyword in order for it to appear in the search results.

AmityUserRepository contains another convenient method searchUser(_:_:) which allows you to query for any particular user using their display name. It provides you with a collection of AmityUser whose display name matches with your search query. It accepts two parameters. The first one is the display name that you want to search for and the second one is sort option which is AmityUserSortOption enum.

Query Users

AmityUserRepository provides a convenient method getUsers(_:) to fetch all users. This method will return AmityCollection<AmityUser>. You can observe changes in collection, similar to message or channel. The method accepts AmityUserSortOption enum as a parameter. The list can be sorted by displayName, firstCreated or lastCreated.

The above code lists the users sorted by displayNameAmityUserRepository provides a convenient method getUsers() to fetch all users. You can observe for changes in collection, similar to message or channel. The method accepts AmityUserSortOption as an optional parameter.

Update User Information

You can update information related to current user such as display name, avatar, user description, metadata, etc. TheamityClient class contains updateCurrentUser: method which allows you to update the current user's information.

Avatars

You can upload an image and set it as an avatar for the current user.

First, you need to upload image using AmityFileRepository and then update the image info.

Step 1 — Upload an image:

Step 2 — Passing AmityImageData from step 1 into the builder, and call user update API.

If you have an avatar present in your current system/server and just want to integrate that existing avatar to AmitySDK, you can just set the URL for the avatar directly.

Note: getAvatarInfo provides the information associated with a particular Avatar

For more information please go to User & Content Management

Last updated