2018-03-10 00:58:04 -05:00
|
|
|
# ===============================================
|
|
|
|
# AUTHENTICATION
|
|
|
|
# ===============================================
|
|
|
|
|
2018-03-05 15:49:36 -05:00
|
|
|
extend type Query {
|
|
|
|
authentication: AuthenticationQuery
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Mutation {
|
|
|
|
authentication: AuthenticationMutation
|
|
|
|
}
|
|
|
|
|
2018-03-10 00:58:04 -05:00
|
|
|
# -----------------------------------------------
|
|
|
|
# QUERIES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
2018-03-05 15:49:36 -05:00
|
|
|
type AuthenticationQuery {
|
2020-02-22 17:38:06 -05:00
|
|
|
apiKeys: [AuthenticationApiKey] @auth(requires: ["manage:system", "manage:api"])
|
|
|
|
|
|
|
|
apiState: Boolean! @auth(requires: ["manage:system", "manage:api"])
|
|
|
|
|
2020-07-03 19:36:33 -04:00
|
|
|
strategies: [AuthenticationStrategy] @auth(requires: ["manage:system"])
|
|
|
|
activeStrategies: [AuthenticationActiveStrategy]
|
2018-03-05 15:49:36 -05:00
|
|
|
}
|
|
|
|
|
2018-03-10 00:58:04 -05:00
|
|
|
# -----------------------------------------------
|
|
|
|
# MUTATIONS
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
2018-03-05 20:53:24 -05:00
|
|
|
type AuthenticationMutation {
|
2020-02-22 17:38:06 -05:00
|
|
|
createApiKey(
|
|
|
|
name: String!
|
|
|
|
expiration: String!
|
|
|
|
fullAccess: Boolean!
|
|
|
|
group: Int
|
|
|
|
): AuthenticationCreateApiKeyResponse @auth(requires: ["manage:system", "manage:api"])
|
|
|
|
|
2018-03-10 00:58:04 -05:00
|
|
|
login(
|
|
|
|
username: String!
|
|
|
|
password: String!
|
2018-06-17 11:12:11 -04:00
|
|
|
strategy: String!
|
2019-02-15 16:36:13 -05:00
|
|
|
): AuthenticationLoginResponse @rateLimit(limit: 5, duration: 60)
|
2018-03-10 00:58:04 -05:00
|
|
|
|
|
|
|
loginTFA(
|
2019-08-24 22:19:35 -04:00
|
|
|
continuationToken: String!
|
2018-03-10 00:58:04 -05:00
|
|
|
securityCode: String!
|
2019-08-24 22:19:35 -04:00
|
|
|
): AuthenticationLoginResponse @rateLimit(limit: 5, duration: 60)
|
|
|
|
|
|
|
|
loginChangePassword(
|
|
|
|
continuationToken: String!
|
|
|
|
newPassword: String!
|
|
|
|
): AuthenticationLoginResponse @rateLimit(limit: 5, duration: 60)
|
2018-03-10 00:58:04 -05:00
|
|
|
|
2018-12-17 00:51:52 -05:00
|
|
|
register(
|
|
|
|
email: String!
|
|
|
|
password: String!
|
|
|
|
name: String!
|
|
|
|
): AuthenticationRegisterResponse
|
|
|
|
|
2020-02-22 17:38:06 -05:00
|
|
|
revokeApiKey(
|
|
|
|
id: Int!
|
|
|
|
): DefaultResponse @auth(requires: ["manage:system", "manage:api"])
|
|
|
|
|
|
|
|
setApiState(
|
|
|
|
enabled: Boolean!
|
|
|
|
): DefaultResponse @auth(requires: ["manage:system", "manage:api"])
|
|
|
|
|
2018-06-25 20:55:00 -04:00
|
|
|
updateStrategies(
|
2019-01-06 22:03:34 -05:00
|
|
|
strategies: [AuthenticationStrategyInput]!
|
2018-10-14 17:38:39 -04:00
|
|
|
): DefaultResponse @auth(requires: ["manage:system"])
|
2019-06-30 15:18:26 -04:00
|
|
|
|
|
|
|
regenerateCertificates: DefaultResponse @auth(requires: ["manage:system"])
|
2020-02-22 17:38:06 -05:00
|
|
|
|
2019-06-30 15:18:26 -04:00
|
|
|
resetGuestUser: DefaultResponse @auth(requires: ["manage:system"])
|
2018-03-05 20:53:24 -05:00
|
|
|
}
|
2018-03-05 15:49:36 -05:00
|
|
|
|
2018-03-10 00:58:04 -05:00
|
|
|
# -----------------------------------------------
|
|
|
|
# TYPES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
2018-06-04 00:41:29 -04:00
|
|
|
type AuthenticationStrategy {
|
2018-03-05 15:49:36 -05:00
|
|
|
key: String!
|
2020-07-03 19:36:33 -04:00
|
|
|
props: [KeyValuePair] @auth(requires: ["manage:system"])
|
2018-03-05 15:49:36 -05:00
|
|
|
title: String!
|
2018-08-04 17:27:55 -04:00
|
|
|
description: String
|
2019-04-20 20:49:05 -04:00
|
|
|
isAvailable: Boolean
|
2018-03-05 15:49:36 -05:00
|
|
|
useForm: Boolean!
|
2020-07-19 13:20:43 -04:00
|
|
|
usernameLabel: String
|
2018-08-04 17:27:55 -04:00
|
|
|
logo: String
|
2018-10-08 00:17:31 -04:00
|
|
|
color: String
|
2018-08-04 17:27:55 -04:00
|
|
|
website: String
|
2018-03-05 15:49:36 -05:00
|
|
|
icon: String
|
2020-07-03 19:36:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuthenticationActiveStrategy {
|
|
|
|
key: String!
|
|
|
|
strategy: AuthenticationStrategy!
|
|
|
|
displayName: String!
|
|
|
|
order: Int!
|
2018-10-08 00:17:31 -04:00
|
|
|
config: [KeyValuePair] @auth(requires: ["manage:system"])
|
2018-06-25 02:44:40 -04:00
|
|
|
selfRegistration: Boolean!
|
2018-10-08 00:17:31 -04:00
|
|
|
domainWhitelist: [String]! @auth(requires: ["manage:system"])
|
|
|
|
autoEnrollGroups: [Int]! @auth(requires: ["manage:system"])
|
2018-03-05 15:49:36 -05:00
|
|
|
}
|
2018-03-10 00:58:04 -05:00
|
|
|
|
|
|
|
type AuthenticationLoginResponse {
|
2018-03-24 22:35:47 -04:00
|
|
|
responseResult: ResponseStatus
|
2018-10-08 00:17:31 -04:00
|
|
|
jwt: String
|
2019-08-24 22:19:35 -04:00
|
|
|
mustChangePwd: Boolean
|
|
|
|
mustProvideTFA: Boolean
|
|
|
|
continuationToken: String
|
2020-07-19 15:13:35 -04:00
|
|
|
redirect: String
|
2018-03-10 00:58:04 -05:00
|
|
|
}
|
2018-06-25 20:55:00 -04:00
|
|
|
|
2018-12-17 00:51:52 -05:00
|
|
|
type AuthenticationRegisterResponse {
|
|
|
|
responseResult: ResponseStatus
|
|
|
|
jwt: String
|
|
|
|
}
|
|
|
|
|
2018-06-25 20:55:00 -04:00
|
|
|
input AuthenticationStrategyInput {
|
|
|
|
key: String!
|
2020-07-03 19:36:33 -04:00
|
|
|
strategyKey: String!
|
2018-06-25 20:55:00 -04:00
|
|
|
config: [KeyValuePairInput]
|
2020-07-03 19:36:33 -04:00
|
|
|
displayName: String!
|
|
|
|
order: Int!
|
2018-06-25 20:55:00 -04:00
|
|
|
selfRegistration: Boolean!
|
|
|
|
domainWhitelist: [String]!
|
|
|
|
autoEnrollGroups: [Int]!
|
|
|
|
}
|
2019-01-06 22:03:34 -05:00
|
|
|
|
2020-02-22 17:38:06 -05:00
|
|
|
type AuthenticationApiKey {
|
|
|
|
id: Int!
|
|
|
|
name: String!
|
|
|
|
keyShort: String!
|
|
|
|
expiration: Date!
|
|
|
|
createdAt: Date!
|
|
|
|
updatedAt: Date!
|
|
|
|
isRevoked: Boolean!
|
|
|
|
}
|
|
|
|
|
|
|
|
type AuthenticationCreateApiKeyResponse {
|
|
|
|
responseResult: ResponseStatus
|
|
|
|
key: String
|
|
|
|
}
|