Files
speckle-server/packages/server/modules/auth/graph/resolvers/apps.js
T
andrewwallacespeckle 76cbcef4e6 Feature - FE2 - Developer Settings (#1822)
* WIP Developer Settings

* Access Tokens

* scopes load fix

* mapping to correct struct

* Updates to Application

* Update to apps.js to fix scopes error

* Application table done

* Token confirmation done.

* Application Success

* Fix ts

* Darkmode fixes

* Responsive fix

* Fixes for PR

* Pass size prop to Editable Avatar

* Updates from PR comments

* Section Header - TS Types

* Add Typeguard to Delete Dialog

* Add Description to scopes query

* minor type guard fix

* edit application cache update fix

* Fix Dialog Expansion

* Rename mutations to correct casing

* Remove unneeded import for defineProps

---------

Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
2023-10-26 12:51:05 +01:00

93 lines
2.6 KiB
JavaScript

'use strict'
const { ForbiddenError } = require('apollo-server-express')
const {
getApp,
getAllPublicApps,
getAllAppsCreatedByUser,
getAllAppsAuthorizedByUser,
createApp,
updateApp,
deleteApp,
revokeExistingAppCredentialsForUser
} = require('../../services/apps')
const { Roles } = require('@speckle/shared')
module.exports = {
Query: {
async app(parent, args) {
const app = await getApp({ id: args.id })
return app
},
async apps() {
return await getAllPublicApps()
}
},
ServerApp: {
secret(parent, args, context) {
if (
context.auth &&
parent.author &&
parent.author.id &&
parent.author.id === context.userId
)
return parent.secret
return 'App secrets are only revealed to their author 😉'
},
async scopes(parent, args, context) {
if (parent.scopes?.length) return parent.scopes
return await context.loaders.apps.getAppScopes.load(parent.id)
}
},
User: {
async authorizedApps(parent, args, context) {
const res = await getAllAppsAuthorizedByUser({ userId: context.userId })
return res
},
async createdApps(parent, args, context) {
return await getAllAppsCreatedByUser({ userId: context.userId })
}
},
Mutation: {
async appCreate(parent, args, context) {
const { id } = await createApp({ ...args.app, authorId: context.userId })
return id
},
async appUpdate(parent, args, context) {
const app = await getApp({ id: args.app.id })
// only admins can update the default apps, generated by the server
if (!app.author && context.role !== Roles.Server.Admin)
throw new ForbiddenError('You are not authorized to edit this app.')
// only the author or an admin can update a 3rd party app
if (app.author.id !== context.userId && context.role !== Roles.Server.Admin)
throw new ForbiddenError('You are not authorized to edit this app.')
await updateApp({ app: args.app })
return true
},
async appDelete(parent, args, context) {
const app = await getApp({ id: args.appId })
if (!app.author && context.role !== Roles.Server.Admin)
throw new ForbiddenError('You are not authorized to edit this app.')
if (app.author.id !== context.userId && context.role !== Roles.Server.Admin)
throw new ForbiddenError('You are not authorized to edit this app.')
return (await deleteApp({ id: args.appId })) === 1
},
async appRevokeAccess(parent, args, context) {
return await revokeExistingAppCredentialsForUser({
appId: args.appId,
userId: context.userId
})
}
}
}