forked from Redth/WshLst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Azure-Table-Scripts.js
127 lines (99 loc) · 2.63 KB
/
Azure-Table-Scripts.js
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
/*
* AZURE MOBILE SERVICES - Data Table Scripts
*
* From the dashboard of your mobile service, go to the DATA tab
* Create each of the following tables, open each table and go to
* the SCRIPT tab of each table.
*
* In each table's script section, paste and save the following
* scripts which correspond to each table operation
*
*/
//-----------------
// TABLE: WishList
//-----------------
//READ
// NO CHANGE from Default
//INSERT
function insert(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//UPDATE
function update(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//DELETE
function del(id, user, request) {
//Need to delete any associated Entries to the list being deleted
var entryTable = tables.getTable('Entry');
entryTable.where({ListId: id}).read({
success: function(results) {
if (results.length > 0) {
for (var i = 0; i < results.length; i++) {
entryTable.del(results[i].id);
}
}
//Finally, allow the delete of the actual list
request.execute();
}
});
}
//-----------------
// TABLE: Entry
//-----------------
//READ
// NO CHANGE from Default
//INSERT
function insert(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//UPDATE
function update(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//DELETE
function del(id, user, request) {
var entryTable = tables.getTable('Entry');
entryTable.where({Id: id}).read({
success: function(results) {
if (results.length > 0) {
if (results[0].imageGuid) {
var imageGuid = results[0].imageGuid;
deleteEntryImage(id, user, request, imageGuid);
}
}
}
});
request.execute();
}
//Deletes a leftover EntryImage for the specified ImageGuid
function deleteEntryImage(id, user, request, imageGuid) {
var entryImageTable = tables.getTable('EntryImage');
entryImageTable.where({ImageGuid: imageGuid}).read({
success: function(results) {
if (results.length > 0)
entryImageTable.del(results[0].id);
}
});
}
//--------------------
// TABLE: EntryImage
//--------------------
//READ
// NO CHANGE from Default
//INSERT
function insert(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//UPDATE
function update(item, user, request) {
item.UserId = user.userId;
request.execute();
}
//DELETE
// NO CHANGE from Default