--- title: Web Activities slug: WebAPI/Web_Activities translation_of: Archive/B2G_OS/API/Web_Activities ---
{{ non-standard_header() }}
{{B2GOnlyHeader2('installed')}}
Atividades Web define um modo para as aplicações delegarem uma atividade para a outra (geralmente escolhida pelo usuário) aplicação.
Atividades Web estão atualmente habilitadas no Firefox OS apenas, e toda a especificação está disponível no WikiMo.
An activity is something a user wants to do: pick an image, send an e-mail, etc. App authors may want to define an app that can handle an activity or that can delegate to an activity.
App authors can build an app that will handle one or more activities. That means that the app will be callable by another app to perform some specific actions defined by the activity. For example, let's pretend we want to build a photo manager. It could be used by another application to pick a photo. As an activity handler our app will become part of the other application's workflow.
There is currently only one way to register an app as an activity handler: declaring it in the app manifest.
Note: Any application can register itself as an activity handler for any existing activity or create its own activity. In both cases it's done the same way within the app manifest. However, when creating a new activity, it is considered best practice to avoid activities' name collisions by prefixing the name of the new activity with a URL (e.g., example.org/myActivity or org.example.myActivity ).
We have to use the app manifest to express that our app is expected to handle an activity as in this example:
{ // Other App Manifest related stuff // Activity registration "activities": { // The name of the activity to handle (here "pick") "pick": { "href": "./pick.html", "disposition": "inline", "filters": { "type": ["image/*","image/jpeg","image/png"] }, "returnValue": true } } }
There are plans to let an app register itself dynamically by using the {{domxref("window.navigator","navigator")}} object. However, this API is not available yet. See {{bug("775181")}} to follow the work about that specific API.
href
disposition
property.
disposition
{{optional_inline()}}href
is presented when an activity is invoked. The value, if specified, must be one of the following (if omitted, defaults to window
):
window
- The page handling the activity is opened in a new "window" (on a mobile device this view will replace the original app that requested the activity). The page must call {{domxref("window.navigator.mozSetMessageHandler()","navigator.mozSetMessageHandler()")}} for each activity it supports and subsequently execute the activity for which it receives a message.inline
- The page that handles the activity will open in an overlay (on a mobile device this will be rendered in a popup over the original app that requested the activity). Subsequent behavior is exactly the same as if disposition
were window
.returnValue
{{optional_inline()}}filters
{{optional_inline()}}The way filters are handled depend on each filter value:
required
: A boolean that indicates if the corresponding {{domxref("MozActivityOptions.data")}} property must exist (true
) or not (false
).value
: A basic value or an array of basic value. The corresponding {{domxref("MozActivityOptions.data")}} property value must be equal to one of the values defined in the filter.min
: If the expected value is a number, the corresponding {{domxref("MozActivityOptions.data")}} property value must be greater than or equal to that value.max
: If the expected value is a number, the corresponding {{domxref("MozActivityOptions.data")}} property value must be lesser than or equal to that value.pattern
: A string pattern following the JavaScript regular expression syntax. The corresponding {{domxref("MozActivityOptions.data")}} property value must match that pattern. This is supported in Firefox OS from v1.2.patternFlags
: If the pattern
property is used, this property can be used to provide some extra regular expression flag such as i
or g
. This is supported in Firefox OS from v1.2.regexp
: A string containing a regexp litteral following the JavaScript regular expression syntax. The corresponding {{domxref("MozActivityOptions.data")}} property value must match that pattern. In contrary to the pattern flag, this can match only part of the value, therefore you must use the metacharacters ^ and $ to respectively match the start and the end of the string. This is supported in Firefox OS v1.0 and v1.1 only. Therefore you're advised to use both pattern
and regexp
.Once our application is declared as an activity handler, we have to make it concrete by performing some actions when receiving an activity request from another app.
To handle the activity, we have to register a function that will perform all the necessary actions. To do so, we need to set a message handler with {{domxref("window.navigator.mozSetMessageHandler()","navigator.mozSetMessageHandler()")}}, specifically assigned to the 'activity'
message (and not the name of the activity). A {{domxref("MozActivityRequestHandler")}} object is passed as an argument of the activity handler function.
navigator.mozSetMessageHandler('activity', function(activityRequest) { // Do something to handle the activity });
As the activity handler function is performing an action, it will use the activity request to retrieve information about the activity and to send back an answer if necessary.
The app that calls the activity has to provide some data (see below). This data can be reached through the request's {{domxref("MozActivityRequestHandler.source","source")}} properties which is a {{domxref("MozActivityOptions")}} object. This object provides the {{domxref("MozActivityOptions.name","name")}} of the activity call and the associated {{domxref("MozActivityOptions.data","data")}}.
navigator.mozSetMessageHandler('activity', function(activityRequest) { var option = activityRequest.source; if (option.name === "pick") { // Do something to handle the activity } });
Once we have performed all the actions to handle the activity, we can call the request's {{domxref("MozActivityRequestHandler.postResult()","postResult()")}} method to send the result back to the app that delegated the activity.
If something goes wrong we can call the request's {{domxref("MozActivityRequestHandler.postError()","postError()")}} method to send back an error message about the activity.
navigator.mozSetMessageHandler('activity', function(activityRequest) { var option = activityRequest.source; if (option.name === "pick") { // Do something to handle the activity ... // Send back the result if (picture) { activityRequest.postResult(picture); } else { activityRequest.postError("Unable to provide a picture"); } } });
Note: UA is expected to send an error anyway at some point if neither {{domxref("MozActivityRequestHandler.postError()","postError")}} nor {{domxref("MozActivityRequestHandler.postResult()","postResult()")}} are called--for example, if the user leaves the application (closes the tab on desktop or goes back to the home screen on a mobile device).
On the other side of Web Activities, there are apps that want to delegate an activity to our app. To perform such delegation, the apps have to call an activity by instantiating a {{domxref("MozActivity")}} object. Such objects are nothing less than {{domxref("DOMRequest")}} objects that allow to wait for any response from the activity handler. As soon as the object is constructed, the activity is started, and the UI is shown to the user as soon as possible.
var activity = new MozActivity({ // Ask for the "pick" activity name: "pick", // Provide the data required by the filters of the activity data: { type: "image/jpeg" } }); activity.onsuccess = function() { var picture = this.result; console.log("A picture has been retrieved"); }; activity.onerror = function() { console.log(this.error); };
Gaia, the native interface for Firefox OS, provides many built-in applications that define basic activities. Those activities are the following:
Name | Application | Expected Data (filters) | Comments |
---|---|---|---|
browse |
Gallery |
type: "photos" |
|
configure |
Settings |
target: "device" |
|
costcontrol/balance |
Costcontrol | None | |
costcontrol/data_usage |
Costcontrol | None | |
costcontrol/telephony |
Costcontrol | None | |
dial |
Communication |
type: "webtelephony/number", number: { regexp:/^[\\d\\s+#*().-]{0,50}$/ } |
Used when an app wants to pass a phone call. |
new |
Communication |
type: "webcontacts/contact" |
Used when an app wants to create a new contact entry. |
type: "mail" |
|||
SMS |
type: "websms/sms", number: { regexp:/^[\\w\\s+#*().-]{0,50}$/ } |
Used when an app wants to send an SMS. | |
open |
Communication |
type: "webcontacts/contact" |
|
Gallery |
type: [ "image/jpeg", "image/png", "image/gif", "image/bmp" ] |
||
Music |
type: [ "audio/mpeg", "audio/ogg", "audio/mp4" ] |
||
Video |
type: [ "video/webm", "video/mp4", "video/3gpp", "video/youtube" ] Also expect a |
Used when an app wants to display a video (the view activity allows to do the same). |
|
pick |
Camera, Gallery, Wallpaper |
type: ["image/*", "image/jpeg"] |
Used when an app wants to get a picture. |
Communication |
type: [ "webcontacts/contact", "webcontacts/email" ] |
Used when an app wants to retrieve some contact information or an e-mail. | |
record |
Camera |
type: ["photos", "videos"] |
Used when an app wants to record some video. |
save-bookmark |
Homescreen |
type: "url", url: { required:true, regexp:/^https?:/ } |
|
share |
Bluetooth |
number: 1 |
|
Email, Wallpaper |
type: "image/*" |
Used when an app wants to share an image. | |
view |
Browser |
type: "url" url: { required: true, regexp: /^https?:.{1,16384}$/ } |
Used when an app wants to open a URL. |
type: "url", url: { required:true, regexp:/^mailto:/ } |
|||
PDFs |
type: "application/pdf" |
Used when an app wants to display the content of a PDF document. | |
Video |
type: [ "video/webm", "video/mp4", "video/3gpp", "video/youtube" ] Also expect a |
Used when an app wants to display a video (the open activity allows to do the same). |
|
update |
Communication |
type: "webcontacts/contact" |
Used when an app wants to update a contact. |
Web Activities is not part of any specification. However, it has some overlap with the proposed Web Intents specification. Mozilla actually proposed Web Activities as a counter proposal to Web Intents. For more information about this, see discussion on the Web Intents Task Force ML.