mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
Added initial ProductRepository implementation (#259)
refs https://github.com/TryGhost/Team/issues/616 WIP but needs to be released so we can start using it as a dependency
This commit is contained in:
parent
72e097cdc2
commit
6602928099
6
ghost/product-repository/.eslintrc.js
Normal file
6
ghost/product-repository/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: ['ghost'],
|
||||
extends: [
|
||||
'plugin:ghost/node'
|
||||
]
|
||||
};
|
21
ghost/product-repository/LICENSE
Normal file
21
ghost/product-repository/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013-2021 Ghost Foundation
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
195
ghost/product-repository/ProductRepository.js
Normal file
195
ghost/product-repository/ProductRepository.js
Normal file
@ -0,0 +1,195 @@
|
||||
/**
|
||||
* @typedef {object} ProductModel
|
||||
*/
|
||||
|
||||
class ProductRepository {
|
||||
/**
|
||||
* @param {object} deps
|
||||
* @param {any} deps.Product
|
||||
* @param {any} deps.StripeProduct
|
||||
* @param {any} deps.StripePrice
|
||||
* @param {import('@tryghost/members-api/lib/services/stripe-api')} deps.stripeAPIService
|
||||
*/
|
||||
constructor({
|
||||
Product,
|
||||
StripeProduct,
|
||||
StripePrice,
|
||||
stripeAPIService
|
||||
}) {
|
||||
this._Product = Product;
|
||||
this._StripeProduct = StripeProduct;
|
||||
this._StripePrice = StripePrice;
|
||||
this._stripeAPIService = stripeAPIService;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves a Product by either stripe_product_id, stripe_price_id, id or slug
|
||||
*
|
||||
* @param {{stripe_product_id: string} | {stripe_price_id: string} | {id: string} | {slug: string}} data
|
||||
* @param {object} options
|
||||
*
|
||||
* @returns {Promise<ProductModel>}
|
||||
*/
|
||||
async get(data, options) {
|
||||
if ('stripe_product_id' in data) {
|
||||
const stripeProduct = await this._StripeProduct.findOne({
|
||||
stripe_product_id: data.stripe_product_id
|
||||
}, options);
|
||||
|
||||
if (!stripeProduct) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return await stripeProduct.related('product').fetch(options);
|
||||
}
|
||||
|
||||
if ('stripe_price_id' in data) {
|
||||
const stripePrice = await this._StripePrice.findOne({
|
||||
stripe_price_id: data.stripe_price_id
|
||||
}, options);
|
||||
|
||||
if (!stripePrice) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const stripeProduct = await stripePrice.related('stripeProduct').fetch(options);
|
||||
|
||||
if (!stripeProduct) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return await stripeProduct.related('product').fetch(options);
|
||||
}
|
||||
|
||||
if ('id' in data) {
|
||||
return await this._Product.findOne({id: data.id}, options);
|
||||
}
|
||||
|
||||
if ('slug' in data) {
|
||||
return await this._Product.findOne({slug: data.slug}, options);
|
||||
}
|
||||
|
||||
throw new Error('Missing id, slug, stripe_product_id or stripe_price_id from data');
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a product from a name
|
||||
*
|
||||
* @param {object} data
|
||||
* @param {string} data.name
|
||||
*
|
||||
* @param {object} options
|
||||
*
|
||||
* @returns {Promise<ProductModel>}
|
||||
**/
|
||||
async create(data, options) {
|
||||
const productData = {
|
||||
name: data.name
|
||||
};
|
||||
|
||||
const product = await this._Product.add(productData, options);
|
||||
|
||||
if (this._stripeAPIService.configured) {
|
||||
const stripeProduct = await this._stripeAPIService.createProduct({
|
||||
name: productData.name
|
||||
});
|
||||
|
||||
await this._StripeProduct.add({
|
||||
product_id: product.id,
|
||||
stripe_product_id: stripeProduct.id
|
||||
}, options);
|
||||
|
||||
await product.related('stripeProducts').fetch(options);
|
||||
}
|
||||
|
||||
return product;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates a product by id
|
||||
*
|
||||
* @param {object} data
|
||||
* @param {string} data.id
|
||||
* @param {string} data.name
|
||||
*
|
||||
* @param {object} data.stripe_price
|
||||
* @param {string} data.stripe_price.nickname
|
||||
* @param {string} data.stripe_price.currency
|
||||
* @param {number} data.stripe_price.amount
|
||||
* @param {'recurring'|'one-time'} data.stripe_price.type
|
||||
* @param {string | null} data.stripe_price.interval
|
||||
* @param {string?} data.stripe_price.stripe_product_id
|
||||
*
|
||||
* @param {object} options
|
||||
*
|
||||
* @returns {Promise<ProductModel>}
|
||||
**/
|
||||
async update(data, options) {
|
||||
const productData = {
|
||||
name: data.name
|
||||
};
|
||||
|
||||
const product = await this._Product.edit(productData, {
|
||||
...options,
|
||||
id: data.id
|
||||
});
|
||||
|
||||
if (this._stripeAPIService.configured && data.stripe_price) {
|
||||
await product.related('stripeProducts').fetch(options);
|
||||
|
||||
if (!product.related('stripeProducts').first()) {
|
||||
const stripeProduct = await this._stripeAPIService.createProduct({
|
||||
name: productData.name
|
||||
});
|
||||
|
||||
await this._StripeProduct.add({
|
||||
product_id: product.id,
|
||||
stripe_product_id: stripeProduct.id
|
||||
}, options);
|
||||
|
||||
await product.related('stripeProducts').fetch(options);
|
||||
}
|
||||
|
||||
const defaultStripeProduct = product.related('stripeProducts').first();
|
||||
const productId = data.stripe_price.stripe_product_id;
|
||||
const stripeProduct = productId ?
|
||||
await this._StripeProduct.findOne({stripe_product_id: productId}, options) : defaultStripeProduct;
|
||||
|
||||
const price = await this._stripeAPIService.createPrice({
|
||||
product: defaultStripeProduct.stripe_product_id,
|
||||
active: true,
|
||||
nickname: data.stripe_price.nickname,
|
||||
currency: data.stripe_price.currency,
|
||||
amount: data.stripe_price.amount,
|
||||
type: data.stripe_price.type,
|
||||
interval: data.stripe_price.interval
|
||||
});
|
||||
|
||||
await this._StripePrice.add({
|
||||
stripe_price_id: price.id,
|
||||
stripe_product_id: stripeProduct.stripe_product_id
|
||||
}, options);
|
||||
|
||||
await product.related('stripePrices').fetch(options);
|
||||
}
|
||||
|
||||
return product;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a paginated list of Products
|
||||
*
|
||||
* @params {object} options
|
||||
*
|
||||
* @returns {Promise<{data: ProductModel[], meta: object}>}
|
||||
**/
|
||||
async list(options) {
|
||||
return this._Product.findPage(options);
|
||||
}
|
||||
|
||||
async destroy() {
|
||||
throw new Error('Cannot destroy products, yet...');
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ProductRepository;
|
3
ghost/product-repository/README.md
Normal file
3
ghost/product-repository/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Product Repository
|
||||
|
||||
This module is designed to be used inside the `@tryghost/members-api` module. It is not for public use.
|
26
ghost/product-repository/package.json
Normal file
26
ghost/product-repository/package.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "@tryghost/product-repository",
|
||||
"version": "0.1.0",
|
||||
"repository": "https://github.com/TryGhost/Members/tree/master/packages/product-repository",
|
||||
"author": "Ghost Foundation",
|
||||
"license": "MIT",
|
||||
"main": "ProductRespository.js",
|
||||
"scripts": {
|
||||
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
|
||||
"lint": "eslint . --ext .js --cache",
|
||||
"posttest": "yarn lint"
|
||||
},
|
||||
"files": [
|
||||
"ProductRepository.js"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/mocha": "^8.2.2",
|
||||
"mocha": "^8.3.2",
|
||||
"should": "^13.2.3",
|
||||
"typescript": "^4.2.4"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
6
ghost/product-repository/test/.eslintrc.js
Normal file
6
ghost/product-repository/test/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: ['ghost'],
|
||||
extends: [
|
||||
'plugin:ghost/test'
|
||||
]
|
||||
};
|
12
ghost/product-repository/test/ProductRepository.test.js
Normal file
12
ghost/product-repository/test/ProductRepository.test.js
Normal file
@ -0,0 +1,12 @@
|
||||
const should = require('should');
|
||||
const ProductRepository = require('../ProductRepository');
|
||||
|
||||
describe('ProductRespository', function () {
|
||||
it('Has create, update, get, list, destroy method', function () {
|
||||
should.exist(ProductRepository.prototype.create);
|
||||
should.exist(ProductRepository.prototype.update);
|
||||
should.exist(ProductRepository.prototype.get);
|
||||
should.exist(ProductRepository.prototype.list);
|
||||
should.exist(ProductRepository.prototype.destroy);
|
||||
});
|
||||
});
|
10
ghost/product-repository/tsconfig.json
Normal file
10
ghost/product-repository/tsconfig.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"include": ["index.js", "lib/**/*", "test/**/*"],
|
||||
"compilerOptions": {
|
||||
"checkJs": true,
|
||||
"allowJs": true,
|
||||
"declaration": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"outDir": "types"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user