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