@@ -9244,7 +9244,7 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
9244
9244
return this.getUri() + "/teams/" + teamKey;
9245
9245
};
9246
9246
9247
- var chainable = this.getFactory().team(this.getPlatform (), this);
9247
+ var chainable = this.getFactory().team(this.getCluster (), this);
9248
9248
return this.chainGet(chainable, uriFunction);
9249
9249
},
9250
9250
@@ -9286,7 +9286,7 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
9286
9286
9287
9287
var self = this;
9288
9288
9289
- var chainable = this.getFactory().team(this.getPlatform (), this);
9289
+ var chainable = this.getFactory().team(this.getCluster (), this);
9290
9290
return this.chainPostResponse(chainable, uriFunction, {}, object).then(function() {
9291
9291
9292
9292
var chain = this;
@@ -11225,11 +11225,16 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
11225
11225
/**
11226
11226
* @returns {String} the type id of the job
11227
11227
*/
11228
- getType : function()
11228
+ getJobType : function()
11229
11229
{
11230
11230
return this.get("type");
11231
11231
},
11232
11232
11233
+ getType: function()
11234
+ {
11235
+ return Gitana.TypedIDConstants.TYPE_JOB;
11236
+ },
11237
+
11233
11238
/**
11234
11239
* @returns {String} the id of the principal that this job will run as
11235
11240
*/
@@ -17990,7 +17995,7 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
17990
17995
return this.getUri() + "/teams/" + teamKey;
17991
17996
};
17992
17997
17993
- var chainable = this.getFactory().team(this.getPlatform (), this);
17998
+ var chainable = this.getFactory().team(this.getCluster (), this);
17994
17999
return this.chainGet(chainable, uriFunction);
17995
18000
},
17996
18001
@@ -18038,7 +18043,7 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
18038
18043
18039
18044
var self = this;
18040
18045
18041
- var chainable = this.getFactory().team(this.getPlatform (), this);
18046
+ var chainable = this.getFactory().team(this.getCluster (), this);
18042
18047
return this.chainPostResponse(chainable, uriFunction, {}, object).then(function() {
18043
18048
18044
18049
var chain = this;
@@ -29925,6 +29930,40 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
29925
29930
"_docs": nodeIds
29926
29931
});
29927
29932
},
29933
+
29934
+ /**
29935
+ * Moves the nodes described by the given array to the configured target node
29936
+ *
29937
+ * @hcained branch
29938
+ *
29939
+ * @param sourceNodeIds array of nodes to delete
29940
+ * @param targetNodeId id of move target. Default is "root":
29941
+ * @param targetPath optional relative path to targetNodeId for moving to a relative subdirectory
29942
+ *
29943
+ * @returns Gitana.Branch
29944
+ */
29945
+ moveNodes: function(sourceNodeIds, targetNodeId, targetPath)
29946
+ {
29947
+ var self = this;
29948
+
29949
+ var uriFunction = function()
29950
+ {
29951
+ return self.getUri() + "/movenodes"
29952
+ }
29953
+
29954
+ if (!targetNodeId) targetNodeId = "root";
29955
+
29956
+ var payload = {};
29957
+ if (targetPath)
29958
+ {
29959
+ payload.targetPath = targetPath;
29960
+ }
29961
+
29962
+ payload.sourceNodeIds = sourceNodeIds;
29963
+ payload.targetNodeId = targetNodeId;
29964
+
29965
+ return this.chainPost(this, uriFunction, {}, payload);
29966
+ },
29928
29967
29929
29968
/**
29930
29969
* Performs a bulk check of permissions against permissioned objects of type node.
@@ -30960,6 +30999,35 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
30960
30999
return this.chainPostEmpty(null, uriFunction);
30961
31000
},
30962
31001
31002
+ /**
31003
+ * Starts a job to purge all deletions
31004
+ *
31005
+ * @param callback
31006
+ */
31007
+ startPurgeAllDeletions: function(callback)
31008
+ {
31009
+ var self = this;
31010
+
31011
+ if (typeof(options) === "function") {
31012
+ callback = options;
31013
+ options = null;
31014
+ }
31015
+
31016
+ var params = {};
31017
+
31018
+ var uriFunction = function()
31019
+ {
31020
+ return self.getUri() + "/deletions/purgeall/start";
31021
+ };
31022
+
31023
+ return this.chainPostResponse(this, uriFunction, params).then(function(response) {
31024
+
31025
+ var jobId = response._doc;
31026
+
31027
+ callback(jobId);
31028
+ });
31029
+ },
31030
+
30963
31031
/**
30964
31032
* Archives the branch.
30965
31033
*
@@ -31070,7 +31138,100 @@ Gitana.OAuth2Http.TOKEN_METHOD = "POST";
31070
31138
31071
31139
callback(jobId);
31072
31140
});
31073
- }
31141
+ },
31142
+
31143
+ //////////////////////////////////////////////////////////////////////////////////////////
31144
+ //
31145
+ // TEAMABLE
31146
+ //
31147
+ //////////////////////////////////////////////////////////////////////////////////////////
31148
+
31149
+ /**
31150
+ * Reads a team.
31151
+ *
31152
+ * @param teamKey
31153
+ *
31154
+ * @chainable team
31155
+ */
31156
+ readTeam: function(teamKey)
31157
+ {
31158
+ var uriFunction = function()
31159
+ {
31160
+ return this.getUri() + "/teams/" + teamKey;
31161
+ };
31162
+
31163
+ var chainable = this.getFactory().team(this.getCluster(), this);
31164
+ return this.chainGet(chainable, uriFunction);
31165
+ },
31166
+
31167
+ /**
31168
+ * Lists teams.
31169
+ *
31170
+ * @chainable map of teams
31171
+ */
31172
+ listTeams: function()
31173
+ {
31174
+ var uriFunction = function()
31175
+ {
31176
+ return this.getUri() + "/teams";
31177
+ };
31178
+
31179
+ var chainable = this.getFactory().teamMap(this.getCluster(), this);
31180
+ return this.chainGet(chainable, uriFunction);
31181
+ },
31182
+
31183
+ /**
31184
+ * Creates a team.
31185
+ *
31186
+ * @param teamKey
31187
+ * @param object
31188
+ *
31189
+ * @chainable team
31190
+ */
31191
+ createTeam: function(teamKey, object)
31192
+ {
31193
+ if (!object)
31194
+ {
31195
+ object = {};
31196
+ }
31197
+
31198
+ var uriFunction = function()
31199
+ {
31200
+ return this.getUri() + "/teams?key=" + teamKey;
31201
+ };
31202
+
31203
+ var self = this;
31204
+
31205
+ var chainable = this.getFactory().team(this.getCluster(), this);
31206
+ return this.chainPostResponse(chainable, uriFunction, {}, object).then(function() {
31207
+
31208
+ var chain = this;
31209
+
31210
+ Chain(self).readTeam(teamKey).then(function() {
31211
+ chain.handleResponse(this);
31212
+ chain.next();
31213
+ });
31214
+
31215
+ // we manually advance the chain
31216
+ return false;
31217
+ });
31218
+ },
31219
+
31220
+ /**
31221
+ * Gets the owners team
31222
+ *
31223
+ * @chained team
31224
+ */
31225
+ readOwnersTeam: function()
31226
+ {
31227
+ return this.readTeam("owners");
31228
+ },
31229
+
31230
+ //////////////////////////////////////////////////////////////////////////////////////////
31231
+ //
31232
+ // END OF TEAMABLE
31233
+ //
31234
+ //////////////////////////////////////////////////////////////////////////////////////////
31074
31235
31075
31236
});
31076
31237
0 commit comments