This example describes the use of GAM - Auto-register anonymous users for developing an application for the users of a library. Its main functionalities include: showing books, novels, etc. by different criteria (date published, author, etc.), keeping record of lists of favorites, read or to be read, receiving different notifications and buying books. The idea is also to obtain information on the user profiles for informing statistics referred, among other things, to reading habits, preferences, etc.

Since applications that require a registry as the first step necessary are usually rejected, it was decided that the design would allow for all its functionalities to be totally anonymous (without registries) to the extent possible. Users must register only when it is absolutely necessary (such as in the case of purchases made).

The design guideline "anonymous user to the largest extent possible" implies a number of technical challenges. How could non-registered users subscribe to "monthly news", for example? or What or who is to be considered the subscriber?

The following example is based on the fact that the application will have, whenever necessary, access to a [19888] user identifier. The use of Auto-register anonymous user will guarantee this possibility.

Developing the solution

The first object in the application will be a dashboard with True value for Main program property (Main Dashboard), where different Action Items are defined to call each object in the application.
Also, there is a transaction like the one below that allows the possibility of relating a user to a book for which there is an interest for receiving news, reviews, etc.

SampleSubscriptionstrn

Note that the user is identified in the transaction with the GAMUserGUID attribute of the GAMGUID type.
There is a SD panel where the user can select preferences. This is the SubscribeNovel object containing a grid, which is loaded through the call to a dataprovider. What should be pointed out in the example is that a 'subscribe' event is invoked for each line selected from the grid, which calls a REST Web Services to perform the subscription (the entry in the table associated to the previously mentioned transaction).

SampleSubscribeNovel

The "SubscribeNovel" object is invoked from the application’s main menu (Dashboard1 object) shown below.

SampleAnonymousUserDashboard

Note that the value of Auto-register Anonymous User property in the dashboard object is True, to accept the access of "anonymous" users to the various options in the dashboard and the objects in the calls tree of such options.
Likewise, the dashboard includes a login option in case the user decides to perform actions that will require a non-anonymous user.

When the auto-registered user accesses the "SubscribeNovel" option, a record is created for that user in the GAM’s user table, with an assigned GUID.
The book preferences selection made by the "anonymous" user in the "SubscribeNovel" SD panel will be recorded in the "Subscriptions" table under the GUID assigned to the anonymous user.
Upon registering in the GAM (GAM - Registration), the user applies the same GUID of the anonymous user for the registered user, so the information entered by the previous one will be the same for this one.

To put it in other words, in the case of a SD panel with query regarding the subscriptions of the logged in user, the preferences declared by the anonymous user prior to registration will be the ones shown for the user registered.

We can see below how to view the user subscriptions.

Supposing that we have a SD panel called "MySubscriptions" like the one below, which loads on a grid the subscriptions of the user logged in.

SampleAnonymousUserMySubscriptions

Note that the grid has the "Authorized" value associated in the DataSelector property. It is a DataSelector containing a condition for filtering only the logged in users (see image below),

GAMUserGUID = GetUser()

where GAMUserGUID is one of the grid’s columns (the objective is to filter by that attribute).
GetUser is a procedure that returns the GUID of the user logged in:

&GamuserGUID = GAMUser.GetId()

SampleAnonymousUserDataSelector

Note

There are different ways for identifying the user that is logged in (see HowTo: Reference GAM users using the GAM API). Considering that users may access as anonymous, the most appropriate way is to obtain their GUID.