iceshrimp-legacy/src/api/endpoints/app/name_id/available.ts

61 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2017-03-05 04:00:39 +01:00
import it from 'cafy';
2016-12-28 23:49:51 +01:00
import App from '../../../models/app';
2017-03-03 11:48:00 +01:00
import { isValidNameId } from '../../../models/app';
2016-12-28 23:49:51 +01:00
2017-01-06 09:45:04 +01:00
/**
* @swagger
* /app/name_id/available:
* post:
* summary: Check available name_id on creation an application
* parameters:
* -
* name: name_id
* description: Application unique name
* in: formData
* required: true
* type: string
2017-03-01 09:37:01 +01:00
*
2017-01-06 09:45:04 +01:00
* responses:
* 200:
* description: Success
* schema:
* type: object
* properties:
* available:
* description: Whether name_id is available
* type: boolean
2017-03-01 09:37:01 +01:00
*
2017-01-06 09:45:04 +01:00
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 23:49:51 +01:00
/**
* Check available name_id of app
*
2017-03-01 09:37:01 +01:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 23:49:51 +01:00
*/
2017-03-03 20:28:38 +01:00
module.exports = async (params) => new Promise(async (res, rej) => {
2016-12-28 23:49:51 +01:00
// Get 'name_id' parameter
2017-03-05 04:00:39 +01:00
const [nameId, nameIdErr] = it(params.name_id).expect.string().required().validate(isValidNameId).get();
2017-03-03 11:48:00 +01:00
if (nameIdErr) return rej('invalid name_id param');
2016-12-28 23:49:51 +01:00
// Get exist
const exist = await App
.count({
name_id_lower: nameId.toLowerCase()
}, {
limit: 1
});
// Reply
res({
available: exist === 0
});
});