2016-04-16 10:17:20 -04:00
|
|
|
var Fastly = require('fastly');
|
|
|
|
|
2016-04-16 13:46:03 -04:00
|
|
|
/*
|
|
|
|
* Fastly library extended to allow configuration for a particular service
|
|
|
|
* and some helper methods.
|
|
|
|
*
|
|
|
|
* @param {string} API key
|
|
|
|
* @param {string} Service id
|
|
|
|
*/
|
2016-04-16 10:17:20 -04:00
|
|
|
module.exports = function (apiKey, serviceId) {
|
|
|
|
var fastly = Fastly(apiKey);
|
|
|
|
fastly.serviceId = serviceId;
|
|
|
|
|
2016-04-16 13:46:03 -04:00
|
|
|
/*
|
|
|
|
* Helper method for constructing Fastly API urls
|
2016-04-19 10:47:33 -04:00
|
|
|
*
|
2016-04-16 13:46:03 -04:00
|
|
|
* @param {string} Service id
|
|
|
|
* @param {number} Version
|
|
|
|
*
|
|
|
|
* @return {string}
|
|
|
|
*/
|
2016-04-16 10:17:20 -04:00
|
|
|
fastly.getFastlyAPIPrefix = function (serviceId, version) {
|
|
|
|
return '/service/' + encodeURIComponent(serviceId) + '/version/' + version;
|
|
|
|
};
|
|
|
|
|
2016-04-16 13:46:03 -04:00
|
|
|
/*
|
|
|
|
* getLatestVersion: Get the most recent version for the configured service
|
2016-04-19 10:47:33 -04:00
|
|
|
*
|
2016-04-16 13:46:03 -04:00
|
|
|
* @param {callback} Callback with signature *err, latestVersion)
|
|
|
|
*/
|
2016-04-16 10:17:20 -04:00
|
|
|
fastly.getLatestVersion = function (cb) {
|
2016-04-16 12:49:48 -04:00
|
|
|
if (!this.serviceId) {
|
2016-04-19 10:47:33 -04:00
|
|
|
return cb('Failed to get latest version. No serviceId configured');
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
2016-04-16 10:17:20 -04:00
|
|
|
var url = '/service/'+ encodeURIComponent(this.serviceId) +'/version';
|
|
|
|
this.request('GET', url, function (err, versions) {
|
2016-04-16 12:49:48 -04:00
|
|
|
if (err) {
|
2016-04-19 10:47:33 -04:00
|
|
|
return cb('Failed to fetch versions: ' + err);
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
2016-04-16 10:17:20 -04:00
|
|
|
var latestVersion = versions.reduce(function (latestVersion, version) {
|
|
|
|
if (!latestVersion) return version;
|
|
|
|
if (version.number > latestVersion.number) return version;
|
|
|
|
return latestVersion;
|
|
|
|
});
|
|
|
|
return cb(null, latestVersion);
|
2016-04-19 10:47:33 -04:00
|
|
|
});
|
2016-04-16 10:17:20 -04:00
|
|
|
};
|
|
|
|
|
2016-04-16 13:46:03 -04:00
|
|
|
/*
|
|
|
|
* setCondition: Upsert a Fastly condition entry
|
|
|
|
* Attempts to PUT and POSTs if the PUT request is a 404
|
2016-04-19 10:47:33 -04:00
|
|
|
*
|
2016-04-16 13:46:03 -04:00
|
|
|
* @param {number} Version number
|
|
|
|
* @param {object} Condition object sent to the API
|
|
|
|
* @param {callback} Callback for fastly.request
|
|
|
|
*/
|
2016-04-16 12:49:48 -04:00
|
|
|
fastly.setCondition = function (version, condition, cb) {
|
|
|
|
if (!this.serviceId) {
|
2016-04-19 10:47:33 -04:00
|
|
|
return cb('Failed to set condition. No serviceId configured');
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
var name = condition.name;
|
2016-04-16 10:17:20 -04:00
|
|
|
var putUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/condition/' + encodeURIComponent(name);
|
|
|
|
var postUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/condition';
|
|
|
|
return this.request('PUT', putUrl, condition, function (err, response) {
|
2016-04-16 12:49:48 -04:00
|
|
|
if (err && err.statusCode === 404) {
|
|
|
|
this.request('POST', postUrl, condition, function (err, response) {
|
|
|
|
if (err) {
|
2016-05-26 19:51:57 -04:00
|
|
|
return cb('Failed while inserting condition \"' + condition.statement + '\": ' + err);
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (err) {
|
2016-05-26 19:51:57 -04:00
|
|
|
return cb('Failed to update condition \"' + condition.statement + '\": ' + err);
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
return cb(null, response);
|
2016-04-16 10:17:20 -04:00
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
2016-04-16 13:46:03 -04:00
|
|
|
/*
|
|
|
|
* setFastlyHeader: Upsert a Fastly header entry
|
|
|
|
* Attempts to PUT and POSTs if the PUT request is a 404
|
2016-04-19 10:47:33 -04:00
|
|
|
*
|
2016-04-16 13:46:03 -04:00
|
|
|
* @param {number} Version number
|
|
|
|
* @param {object} Header object sent to the API
|
|
|
|
* @param {callback} Callback for fastly.request
|
|
|
|
*/
|
2016-04-16 12:49:48 -04:00
|
|
|
fastly.setFastlyHeader = function (version, header, cb) {
|
|
|
|
if (!this.serviceId) {
|
2016-04-19 10:47:33 -04:00
|
|
|
cb('Failed to set header. No serviceId configured');
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
var name = header.name;
|
2016-04-16 10:17:20 -04:00
|
|
|
var putUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/header/' + encodeURIComponent(name);
|
|
|
|
var postUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/header';
|
|
|
|
return this.request('PUT', putUrl, header, function (err, response) {
|
2016-04-16 12:49:48 -04:00
|
|
|
if (err && err.statusCode === 404) {
|
|
|
|
this.request('POST', postUrl, header, function (err, response) {
|
|
|
|
if (err) {
|
2016-04-19 10:47:33 -04:00
|
|
|
return cb('Failed to insert header: ' + err);
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (err) {
|
2016-04-19 10:47:33 -04:00
|
|
|
return cb('Failed to update header: ' + err);
|
2016-04-16 12:49:48 -04:00
|
|
|
}
|
|
|
|
return cb(null, response);
|
2016-04-16 10:17:20 -04:00
|
|
|
}.bind(this));
|
|
|
|
};
|
2016-04-19 13:04:45 -04:00
|
|
|
|
2016-04-19 18:42:03 -04:00
|
|
|
/*
|
|
|
|
* setResponseObject: Upsert a Fastly response object
|
|
|
|
* Attempts to PUT and POSTs if the PUT request is a 404
|
|
|
|
*
|
|
|
|
* @param {number} Version number
|
|
|
|
* @param {object} Response object sent to the API
|
|
|
|
* @param {callback} Callback for fastly.request
|
|
|
|
*/
|
|
|
|
fastly.setResponseObject = function (version, responseObj, cb) {
|
|
|
|
if (!this.serviceId) {
|
|
|
|
cb('Failed to set response object. No serviceId configured');
|
|
|
|
}
|
|
|
|
var name = responseObj.name;
|
|
|
|
var putUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/response_object/' + encodeURIComponent(name);
|
|
|
|
var postUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/response_object';
|
|
|
|
return this.request('PUT', putUrl, responseObj, function (err, response) {
|
|
|
|
if (err && err.statusCode === 404) {
|
|
|
|
this.request('POST', postUrl, responseObj, function (err, response) {
|
|
|
|
if (err) {
|
|
|
|
return cb('Failed to insert response object: ' + err);
|
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (err) {
|
|
|
|
return cb('Failed to update response object: ' + err);
|
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
2016-04-19 13:04:45 -04:00
|
|
|
/*
|
|
|
|
* cloneVersion: Clone a version to create a new version
|
|
|
|
*
|
|
|
|
* @param {number} Version to clone
|
|
|
|
* @param {callback} Callback for fastly.request
|
|
|
|
*/
|
|
|
|
fastly.cloneVersion = function (version, cb) {
|
|
|
|
if (!this.serviceId) return cb('Failed to clone version. No serviceId configured.');
|
|
|
|
var url = this.getFastlyAPIPrefix(this.serviceId, version) + '/clone';
|
|
|
|
this.request('PUT', url, cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* activateVersion: Activate a version
|
|
|
|
*
|
|
|
|
* @param {number} Version number
|
|
|
|
* @param {callback} Callback for fastly.request
|
|
|
|
*/
|
|
|
|
fastly.activateVersion = function (version, cb) {
|
|
|
|
if (!this.serviceId) return cb('Failed to activate version. No serviceId configured.');
|
|
|
|
var url = this.getFastlyAPIPrefix(this.serviceId, version) + '/activate';
|
|
|
|
this.request('PUT', url, cb);
|
|
|
|
};
|
|
|
|
|
2017-04-25 11:06:57 -04:00
|
|
|
/**
|
|
|
|
* Upsert a custom vcl file. Attempts a PUT, and falls back
|
|
|
|
* to POST if not there already.
|
|
|
|
*
|
|
|
|
* @param {number} version current version number for fastly service
|
|
|
|
* @param {string} name name of the custom vcl file to be upserted
|
|
|
|
* @param {string} vcl stringified custom vcl to be uploaded
|
|
|
|
* @param {Function} cb function that takes in two args: err, response
|
|
|
|
*/
|
|
|
|
fastly.setCustomVCL = function (version, name, vcl, cb) {
|
|
|
|
if (!this.serviceId) {
|
|
|
|
return cb('Failed to set response object. No serviceId configured');
|
|
|
|
}
|
|
|
|
|
|
|
|
var url = this.getFastlyAPIPrefix(this.serviceId, version) + '/vcl/' + name;
|
|
|
|
var postUrl = this.getFastlyAPIPrefix(this.serviceId, version) + '/vcl';
|
|
|
|
var content = {content: vcl};
|
|
|
|
return this.request('PUT', url, content, function (err, response) {
|
|
|
|
if (err && err.statusCode === 404) {
|
|
|
|
content.name = name;
|
|
|
|
this.request('POST', postUrl, content, function (err, response) {
|
|
|
|
if (err) {
|
|
|
|
return cb('Failed while adding custom vcl \"' + name + '\": ' + err);
|
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (err) {
|
|
|
|
return cb('Failed to update custom vcl \"' + name + '\": ' + err);
|
|
|
|
}
|
|
|
|
return cb(null, response);
|
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
2016-04-16 10:17:20 -04:00
|
|
|
return fastly;
|
|
|
|
};
|