Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
As a System Admin or Shop Owner, I want to see farmer locations on a map.
Table of Contents |
---|
Lesson Outcomes
By the end of this lesson you should:
- Know how to use the
<map>
widget - Know how to restrict which data a user is allowed to see by using the
@Restrict
object annotation
Scenario
Suppose we want to enable system administrators and shop owners to see the location of farmers, but with different requirements for the two user roles viewing the data:
- System administrators should be allowed to see the locations of all farmers.
- Shop owners should be allowed to see the locations of all farmers except those residing in the state of Inland, for the state government of Inland has decreed that private location data about its residents should no longer be available to persons below the level of tutorial system administrator.
New & Modified App Files
./web-app/images/Globe.png
./web-app/lang/en.lang
./web-app/presenters/user_managment/FarmerMap.mez
./web-app/views/user_management/FarmerMap.vxml
Placing Restriction Rules on Objects
Instead of effecting viewing restrictions in presenter function logic, it may seem the safer option to mark the persistent object itself as restricted in a particular way. We do this by adding the @Restrict
annotation to the object. According to the requirements mentioned in the Scenario section, the Farmer
object needs to be changed as follows:
Code Block | ||||
---|---|---|---|---|
| ||||
@Restrict("System Admin", all()) @Restrict("Shop Owner", notEquals(state, STATES.Inland)) @Role("Farmer") persistent object Farmer {...} |
Note that the role being restricted - the first parameter for @Restrict
- is specified using the role name (e.g. "System Admin"
), and not the object name (e.g. "SystemAdmin"
). The second parameter for the @Restrict
annotation can be any of the Selector built-in functions (see Quick Reference), or combination thereof, used in the same way as you would when reading from the persistence layer. The above says that system administrators will be allowed to see all farmers, but shop owners will only be able to see farmers whose state is not "Inland".
You will have noticed that objects were, throughout the tutorial thus far, universally visible without adding an all()
restriction anywhere. Indeed, the first line in the snippet above is completely redundant and can be safely removed.
Info |
---|
Despite the apparent redundancy of using |
Testing the New Restriction Using the Map Widget
Create a view accessible to system administrators as well as shop owners. Add a <map>
widget by adding the following to the view:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<map lat="latitude" long="longitude" refreshIntervalSeconds="30"> <collectionSource function="getFarmers"/> <markerTitle value="getMarkerTitle"/> <markerIcon value="getMarkerIcon"/> <markerDesc value="getMarkerDescription"/> </map> |
The above says the map will be populated using a collection returned by getFarmers
, and that an object from this collection has latitude
and longitude
attributes that should be used to determine its placement on the map. The refreshIntervalSeconds
widget attribute is optional.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
string getMarkerTitle(Farmer farmer) { return String:concat(farmer.firstName, " ", farmer.lastName); } string getMarkerDescription(Farmer farmer) { return farmer.farmAddress; } string getMarkerIcon(Farmer farmer) { return null; } Farmer[] getFarmers() { return Farmer:equals(deleted, false); } |
Note that, while the <markerIcon>
child element is required, we can have its value as null
to fall back to the default pin icon. Clicking on the icon opens a pop-up bearing the specified title and description.
Create some farmers residing in the Inland state, and some others residing in any of the other states. Also be sure to invite yourself as a "Shop Owner"
. If you navigate to your new view as a "System Admin"
, you should now see all the farmers on the map, but switch to using your app as a "Shop Owner"
and look at the map again, and you should only see those not from the state of Inland.
As "System Admin"
:
As "Shop Owner"
:
Info |
---|
The older map attributes |
Lesson Source Code