2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-11-02 06:47:44 +02:00
|
|
|
import App, { pack } from '../../../../models/app';
|
|
|
|
import define from '../../define';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2018-11-01 20:32:24 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
params: {
|
|
|
|
appId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchApp: {
|
|
|
|
message: 'No such app.',
|
|
|
|
code: 'NO_SUCH_APP',
|
|
|
|
id: 'dce83913-2dc6-4093-8a7b-71dbb11718a3'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
}
|
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user, app) => {
|
2018-11-01 20:32:24 +02:00
|
|
|
const isSecure = user != null && app == null;
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
// Lookup app
|
2018-11-01 20:32:24 +02:00
|
|
|
const ap = await App.findOne({ _id: ps.appId });
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-04-11 11:40:01 +03:00
|
|
|
if (ap === null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchApp);
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return await pack(ap, user, {
|
2018-11-01 02:19:22 +02:00
|
|
|
detail: true,
|
2018-04-11 11:40:01 +03:00
|
|
|
includeSecret: isSecure && ap.userId.equals(user._id)
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
|
|
|
});
|