Navigation Menu

Skip to content

Commit

Permalink
Full pass at inline API Docs
Browse files Browse the repository at this point in the history
closes #2622, ref #2125
  • Loading branch information
ErisDS committed Jun 3, 2014
1 parent 4b6f8ce commit 57a5b6a
Show file tree
Hide file tree
Showing 11 changed files with 223 additions and 33 deletions.
32 changes: 31 additions & 1 deletion core/server/api/db.js
@@ -1,3 +1,5 @@
// # DB API
// API for DB operations
var dataExport = require('../data/export'),
dataImport = require('../data/import'),
dataProvider = require('../models'),
Expand All @@ -11,10 +13,22 @@ var dataExport = require('../data/export'),
api = {},
db;

api.notifications = require('./notifications');
api.settings = require('./settings');

/**
* ## DB API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
db = {
/**
* ### Export Content
* Generate the JSON to export
*
* @public
* @param {{context}} options
* @returns {Promise} Ghost Export JSON format
*/
'exportContent': function (options) {
options = options || {};

Expand All @@ -29,6 +43,14 @@ db = {
return when.reject(new errors.NoPermissionError('You do not have permission to export data. (no rights)'));
});
},
/**
* ### Import Content
* Import posts, tags etc from a JSON blob
*
* @public
* @param {{context}} options
* @returns {Promise} Success
*/
'importContent': function (options) {
options = options || {};
var databaseVersion;
Expand Down Expand Up @@ -108,6 +130,14 @@ db = {
return when.reject(new errors.NoPermissionError('You do not have permission to export data. (no rights)'));
});
},
/**
* ### Delete All Content
* Remove all posts and tags
*
* @public
* @param {{context}} options
* @returns {Promise} Success
*/
'deleteAllContent': function (options) {
options = options || {};

Expand Down
24 changes: 23 additions & 1 deletion core/server/api/index.js
@@ -1,5 +1,8 @@
// # Ghost Data API
// Provides access to the data model
// Provides access from anywhere to the Ghost data layer.
//
// Ghost's JSON API is integral to the workings of Ghost, regardless of whether you want to access data internally,
// from a theme, an app, or from an external app, you'll use the Ghost JSON API to do so.

var _ = require('lodash'),
when = require('when'),
Expand Down Expand Up @@ -251,3 +254,22 @@ module.exports = {
users: users,
slugs: slugs
};

/**
* ## API Methods
*
* Most API methods follow the BREAD pattern, although not all BREAD methods are available for all resources.
* Most API methods have a similar signature, they either take just `options`, or both `object` and `options`.
* For RESTful resources `object` is always a model object of the correct type in the form `name: [{object}]`
* `options` is an object with several named properties, the possibilities are listed for each method.
*
* Read / Edit / Destroy routes expect some sort of identifier (id / slug / key) for which object they are handling
*
* All API methods take a context object as one of the options:
*
* @typedef context
* Context provides information for determining permissions. Usually a user, but sometimes an app, or the internal flag
* @param {Number} user (optional)
* @param {String} app (optional)
* @param {Boolean} internal (optional)
*/
44 changes: 31 additions & 13 deletions core/server/api/mail.js
@@ -1,33 +1,51 @@
// # Mail API
// API for sending Mail
var when = require("when"),
config = require('../config'),
errors = require('../errors'),
mail;

// ## Mail
/**
* ## Mail API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
* @typedef Mail
* @param mail
*/
mail = {

// #### Send
// **takes:** a json object representing an email.
send: function (postData) {
/**
* ### Send
* Send an email
*
* @public
* @param {Mail} object details of the email to send
* @returns {Promise}
*/
send: function (object) {
var mailer = require('../mail');

// **returns:** a promise from the mailer with the number of successfully sent emails
return mailer.send(postData.mail[0].message)
// TODO: permissions
return mailer.send(object.mail[0].message)
.then(function (data) {
delete postData.mail[0].options;
delete object.mail[0].options;
// Sendmail returns extra details we don't need and that don't convert to JSON
delete postData.mail[0].message.transport;
postData.mail[0].status = {
delete object.mail[0].message.transport;
object.mail[0].status = {
message: data.message
};
return postData;
return object;
})
.otherwise(function (error) {
return when.reject(new errors.EmailError(error.message));
});
},
// #### SendTest
// **takes:** nothing
/**
* ### SendTest
* Send a test email
*
* @public
* @returns {Promise}
*/
sendTest: function () {
var html = '<p><strong>Hello there!</strong></p>' +
'<p>Excellent!' +
Expand Down
29 changes: 26 additions & 3 deletions core/server/api/notifications.js
@@ -1,3 +1,5 @@
// # Notifications API
// RESTful API for creating notifications
var when = require('when'),
_ = require('lodash'),
errors = require('../errors'),
Expand All @@ -8,13 +10,29 @@ var when = require('when'),
notificationCounter = 0,
notifications;

// ## Notifications
/**
* ## Notification API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
notifications = {

/**
* ### Browse
* Fetch all notifications
* @returns {Promise(Notifications)}
*/
browse: function browse() {
return when({ 'notifications': notificationsStore });
},

/**
* ### Destroy
* Remove a specific notification
*
* @param {{id (required), context}} options
* @returns {Promise(Notifications)}
*/
destroy: function destroy(options) {
var notification = _.find(notificationsStore, function (element) {
return element.id === parseInt(options.id, 10);
Expand All @@ -33,10 +51,16 @@ notifications = {
notificationsStore = _.reject(notificationsStore, function (element) {
return element.id === parseInt(options.id, 10);
});
// **returns:** a promise for the deleted object
return when({notifications: [notification]});
},

/**
* ### DestroyAll
* Clear all notifications, used for tests
*
* @private Not exposed over HTTP
* @returns {Promise}
*/
destroyAll: function destroyAll() {
notificationsStore = [];
notificationCounter = 0;
Expand Down Expand Up @@ -73,7 +97,6 @@ notifications = {
});

notificationsStore.push(notification);
// **returns:** a promise of the new notification object
return when({ notifications: [notification]});
}
};
Expand Down
25 changes: 23 additions & 2 deletions core/server/api/posts.js
@@ -1,4 +1,5 @@
// # Posts API
// RESTful API for the Post resource
var when = require('when'),
_ = require('lodash'),
dataProvider = require('../models'),
Expand All @@ -24,19 +25,31 @@ function prepareInclude(include) {
return include;
}

// ## API Methods
/**
* ## Posts API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
posts = {

/**
* ### Browse
* Find a paginated set of posts
*
* Will only return published posts unless we have an authenticated user and an alternative status
* parameter.
*
* Will return without static pages unless told otherwise
*
* Can return posts for a particular tag by passing a tag slug in
*
* @public
* @param {{context, page, limit, status, staticPages, tag}} options (optional)
* @returns {Promise(Posts)} Posts Collection with Meta
*/
browse: function browse(options) {
options = options || {};

// only published posts if no user is present
if (!(options.context && options.context.user)) {
options.status = 'published';
}
Expand All @@ -51,6 +64,8 @@ posts = {
/**
* ### Read
* Find a post, by ID or Slug
*
* @public
* @param {{id_or_slug (required), context, status, include, ...}} options
* @return {Promise(Post)} Post
*/
Expand Down Expand Up @@ -81,6 +96,8 @@ posts = {
/**
* ### Edit
* Update properties of a post
*
* @public
* @param {Post} object Post or specific properties to update
* @param {{id (required), context, include,...}} options
* @return {Promise(Post)} Edited Post
Expand Down Expand Up @@ -114,6 +131,8 @@ posts = {
/**
* ### Add
* Create a new post along with any tags
*
* @public
* @param {Post} object
* @param {{context, include,...}} options
* @return {Promise(Post)} Created Post
Expand Down Expand Up @@ -146,6 +165,8 @@ posts = {
/**
* ### Destroy
* Delete a post, cleans up tag relations, but not unused tags
*
* @public
* @param {{id (required), context,...}} options
* @return {Promise(Post)} Deleted Post
*/
Expand Down
7 changes: 6 additions & 1 deletion core/server/api/settings.js
@@ -1,4 +1,5 @@
// # Settings API
// RESTful API for the Setting resource
var _ = require('lodash'),
dataProvider = require('../models'),
when = require('when'),
Expand Down Expand Up @@ -209,7 +210,11 @@ canEditAllSettings = function (settingsInfo, options) {
return when.all(checks);
};

// ## API Methods
/**
* ## Settings API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
settings = {

/**
Expand Down
22 changes: 14 additions & 8 deletions core/server/api/slugs.js
@@ -1,26 +1,32 @@
// # Slug API
// RESTful API for the Slug resource
var canThis = require('../permissions').canThis,
dataProvider = require('../models'),
errors = require('../errors'),
when = require('when'),

slugs,
// `allowedTypes` is used to define allowed slug types and map them against it's model class counterpart
// `allowedTypes` is used to define allowed slug types and map them against its model class counterpart
allowedTypes = {
post: dataProvider.Post,
tag: dataProvider.Tag
};

/**
* ## Generate Slug
* Create a unique slug for a given post title
* @param {{type (required), context}} options
* @param {{title (required), transacting}} options
* @returns {Promise(String)} Unique string
* ## Slugs API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
slugs = {

// #### Generate slug
// **takes:** a string to generate the slug from
/**
* ## Generate Slug
* Create a unique slug for a given post title
* TODO: make it generic for all objects: post, tag, user
*
* @param {{type (required), title (required), context, transacting}} options
* @returns {Promise(String)} Unique string
*/
generate: function (options) {
options = options || {};

Expand Down
13 changes: 12 additions & 1 deletion core/server/api/tags.js
@@ -1,8 +1,19 @@
// # Tag API
// RESTful API for the Tag resource
var dataProvider = require('../models'),
tags;


/**
* ## Tags API Methods
*
* **See:** [API Methods](index.js.html#api%20methods)
*/
tags = {
/**
* ### Browse
* @param {{context}} options
* @returns {Promise(Tags)}
*/
browse: function browse(options) {
return dataProvider.Tag.findAll(options).then(function (result) {
return { tags: result.toJSON() };
Expand Down

0 comments on commit 57a5b6a

Please sign in to comment.