summaryrefslogtreecommitdiffstats
path: root/services/cloudsync/docs/api.md
blob: bca3193a4debc50c51812d001b8030d900996914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
### Importing the JS module

````
Cu.import("resource://gre/modules/CloudSync.jsm");

let cloudSync = CloudSync();
console.log(cloudSync); // Module is imported
````

### cloudSync.local

#### id

Local device ID. Is unique.

````
let localId = cloudSync.local.id;
````

#### name

Local device name.

````
let localName = cloudSync.local.name;
````

### CloudSync.tabs

#### addEventListener(type, callback)

Add an event handler for Tabs events. Valid type is `change`. The callback receives no arguments.

````
function handleTabChange() {
  // Tabs have changed.
}

cloudSync.tabs.addEventListener("change", handleTabChange);
````

Change events are emitted when a tab is opened or closed, when a tab is selected, or when the page changes for an open tab.

#### removeEventListener(type, callback)

Remove an event handler. Pass the type and function that were passed to addEventListener.

````
cloudSync.tabs.removeEventListener("change", handleTabChange);
````

#### mergeRemoteTabs(client, tabs)

Merge remote tabs from upstream by updating existing items, adding new tabs, and deleting existing tabs. Accepts a client and a list of tabs. Returns a promise.

````
let remoteClient = {
  id: "fawe78",
  name: "My Firefox client",
};

let remoteTabs = [
    {title: "Google",
     url: "https://www.google.com",
     icon: "https://www.google.com/favicon.ico",
     lastUsed: 1400799296192},
    {title: "Reddit",
     url: "http://www.reddit.com",
     icon: "http://www.reddit.com/favicon.ico",
     lastUsed: 1400799296192
     deleted: true},
];

cloudSync.tabs.mergeRemoteTabs(client, tabs).then(
  function() {
    console.log("merge complete");
  }
);
````

#### getLocalTabs()

Returns a promise. Passes a list of local tabs when complete.

````
cloudSync.tabs.getLocalTabs().then(
  function(tabs) {
    console.log(JSON.stringify(tabs));
  }
);
````

#### clearRemoteTabs(client)

Clears all tabs for a remote client.

````
let remoteClient = {
  id: "fawe78",
  name: "My Firefox client",
};

cloudSync.tabs.clearRemoteTabs(client);
````

### cloudSync.bookmarks

#### getRootFolder(name)

Gets the named root folder, creating it if it doesn't exist. The root folder object has a number of methods (see the next section for details).

````
cloudSync.bookmarks.getRootFolder("My Bookmarks").then(
  function(rootFolder) {
    console.log(rootFolder);
  }
);
````

### cloudSync.bookmarks.RootFolder

This is a root folder object for bookmarks, created by `cloudSync.bookmarks.getRootFolder`.

#### BOOKMARK

Bookmark type. Used in results objects.

````
let bookmarkType = rootFolder.BOOKMARK;
````

#### FOLDER

Folder type. Used in results objects.

````
let folderType = rootFolder.FOLDER;
````

#### SEPARATOR

Separator type. Used in results objects.

````
let separatorType = rootFolder.SEPARATOR;
````

#### addEventListener(type, callback)

Add an event handler for Tabs events. Valid types are `add, remove, change, move`. The callback receives an ID corresponding to the target item.

````
function handleBoookmarkEvent(id) {
  console.log("event for id:", id);
}

rootFolder.addEventListener("add", handleBookmarkEvent);
rootFolder.addEventListener("remove", handleBookmarkEvent);
rootFolder.addEventListener("change", handleBookmarkEvent);
rootFolder.addEventListener("move", handleBookmarkEvent);
````

#### removeEventListener(type, callback)

Remove an event handler. Pass the type and function that were passed to addEventListener.

````
rootFolder.removeEventListener("add", handleBookmarkEvent);
rootFolder.removeEventListener("remove", handleBookmarkEvent);
rootFolder.removeEventListener("change", handleBookmarkEvent);
rootFolder.removeEventListener("move", handleBookmarkEvent);
````

#### getLocalItems()

Callback receives a list of items on the local client. Results have the following form:

````
{
  id: "faw8e7f", // item guid
  parent: "f7sydf87y", // parent folder guid
  dateAdded: 1400799296192, // timestamp
  lastModified: 1400799296192, // timestamp
  uri: "https://www.google.ca", // null for FOLDER and SEPARATOR
  title: "Google"
  type: rootFolder.BOOKMARK, // should be one of rootFolder.{BOOKMARK, FOLDER, SEPARATOR},
  index: 0 // must be unique among folder items
}
````

````
rootFolder.getLocalItems().then(
  function(items) {
    console.log(JSON.stringify(items));
  }
);
````

#### getLocalItemsById([...])

Callback receives a list of items, specified by ID, on the local client. Results have the same form as `getLocalItems()` above.

````
rootFolder.getLocalItemsById(["213r23f", "f22fy3f3"]).then(
  function(items) {
    console.log(JSON.stringify(items));
  }
);
````

#### mergeRemoteItems([...])

Merge remote items from upstream by updating existing items, adding new items, and deleting existing items. Folders are created first so that subsequent operations will succeed. Items have the same form as `getLocalItems()` above. Items that do not have an ID will have an ID generated for them. The results structure will contain this generated ID.

````
rootFolder.mergeRemoteItems([
        {
          id: 'f2398f23',
          type: rootFolder.FOLDER,
          title: 'Folder 1',
          parent: '9f8237f928'
        },
        {
          id: '9f8237f928',
          type: rootFolder.FOLDER,
          title: 'Folder 0',
        }
      ]).then(
  function(items) {
    console.log(items); // any generated IDs are filled in now
    console.log("merge completed");
  }
);
````