Permission Service

From WebOS-Ports
Revision as of 14:25, 9 November 2015 by DougReeder (talk | contribs) (added System UI)
Jump to navigation Jump to search

Rationale

Permissions in webOS were fragmented. Some were granted via the app manifest, others at run time. There was no mechanism for a user to revoke them.


Service

A new service would manage all app permissions. A service like geolocation could query the permission service, which would check the DB. If the permission had been previously granted, the permission service would immediately return that. If previously denied, immediately return that. If no permission value was stored, the permissions service would put up a system popup asking whether to grant the permission once, always, never, or just close (the dialog).

  • once: return true, nothing stored in DB
  • always: return true, store true in DB
  • never: return false, store false in DB
  • close: return false, nothing stored in DB


Database

The system permissions database would be managed solely by the permissions service. This would be a kind in DB8 with fields for

  • the service that would actually do the thing, such as geolocation
  • privilege (what the permisson is for, such as location),
  • client app/service ID
  • value: typically true/false. If needed, it could have numerical values (for example, quota or string constants) but that would require additional API.


System UI

In addition to the system popups mentioned above, there should be a pane for each app, evoked from the Launcher via a tap-and-hold or double-tap. The pane would list all permissions, and which are granted. The user could grant or revoke permissions.


Best Practice Use

Best practice to to ask in a context where the relationship between the permission and the user’s goal is clear; *not* at install time. For example, in Serene Notes running in a web browser, when the user first enables the application preference “Tag new notes with location”, it makes a call to geolocation and the browser opens a permissions dialog. (Serene Notes doesn't actually *need* location at that point in time, but that triggers the system dialog.)