mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* Initial pass at adding webhook controller and routes * Moving some objects around * Cleaning up comments * Fixing syntax, switching to using the docker sdk over building an http client * Adding delete and list functionality * Updating the handler to use the correct permissions. Updating some comments * Fixing some comments * Code cleanup per pull request comments * Cleanup per PR feedback. Syntax error fix * Initial creation of webhook app code * Moving ClientFactory creation out of handler code and instead using the one created by the main process. Removing webhookInspect method and updating the list function to use json filters * Delete now works on the webhook ID vs service ID * WIP - Service creates a webhook. Display will show an existing webhook URL. * Adding the webhook field to the service view. There is now the ability to add or remove a webhook from a service * Moving all api calls to be webhooks vs webhook * Code cleanup. Moving all api calls to be webhooks vs webhook * More conversion of webhook to webhooks? * Moving UI elements around. Starting function for copying to clipboard * Finalizing function for copying to clipboard. Adding button that calls function and copies webhook to clipboard. * Fixing UI issues. Hiding field entirely when there is no webhook * Moving URL crafting to a helper method. The edit pane for service now creates/deletes webhooks immidiately. * style(service-details): update webhook line * feat(api): strip sha when updating an image via the update webhook * Fixing up some copy. Only displying the port if it is not http or https * Fixing tooltip copy. Setting the forceupdate to be true to require an update to occur * Fixing code climate errors * Adding WebhookType field and setting to ServiceWebhook for new webhooks. Renaming ServiceID to resourceID so future work can add new types of webhooks in other resource areas. * Adding the webhook type to the payload to support more types of webhooks in the future. Setting the type correctly when creating one for a service * feat(webhooks): changes related to webhook management * API code cleanup, removing unneeded functions, and updating validation logic * Incorrectly ignoring the error that the webhook did not exist * Re-adding missing error handling. Changing error response to be a 404 vs 500 when token can't find an object * fix(webhooks): close Docker client after service webhook execution
101 lines
2.9 KiB
Go
101 lines
2.9 KiB
Go
package portainer
|
|
|
|
// General errors.
|
|
const (
|
|
ErrUnauthorized = Error("Unauthorized")
|
|
ErrResourceAccessDenied = Error("Access denied to resource")
|
|
ErrObjectNotFound = Error("Object not found inside the database")
|
|
ErrMissingSecurityContext = Error("Unable to find security details in request context")
|
|
)
|
|
|
|
// User errors.
|
|
const (
|
|
ErrUserAlreadyExists = Error("User already exists")
|
|
ErrInvalidUsername = Error("Invalid username. White spaces are not allowed")
|
|
ErrAdminAlreadyInitialized = Error("An administrator user already exists")
|
|
ErrAdminCannotRemoveSelf = Error("Cannot remove your own user account. Contact another administrator")
|
|
ErrCannotRemoveLastLocalAdmin = Error("Cannot remove the last local administrator account")
|
|
)
|
|
|
|
// Team errors.
|
|
const (
|
|
ErrTeamAlreadyExists = Error("Team already exists")
|
|
)
|
|
|
|
// TeamMembership errors.
|
|
const (
|
|
ErrTeamMembershipAlreadyExists = Error("Team membership already exists for this user and team")
|
|
)
|
|
|
|
// ResourceControl errors.
|
|
const (
|
|
ErrResourceControlAlreadyExists = Error("A resource control is already applied on this resource")
|
|
ErrInvalidResourceControlType = Error("Unsupported resource control type")
|
|
)
|
|
|
|
// Endpoint errors.
|
|
const (
|
|
ErrEndpointAccessDenied = Error("Access denied to endpoint")
|
|
)
|
|
|
|
// Azure environment errors
|
|
const (
|
|
ErrAzureInvalidCredentials = Error("Invalid Azure credentials")
|
|
)
|
|
|
|
// Endpoint group errors.
|
|
const (
|
|
ErrCannotRemoveDefaultGroup = Error("Cannot remove the default endpoint group")
|
|
)
|
|
|
|
// Registry errors.
|
|
const (
|
|
ErrRegistryAlreadyExists = Error("A registry is already defined for this URL")
|
|
)
|
|
|
|
// Stack errors
|
|
const (
|
|
ErrStackAlreadyExists = Error("A stack already exists with this name")
|
|
ErrComposeFileNotFoundInRepository = Error("Unable to find a Compose file in the repository")
|
|
ErrStackNotExternal = Error("Not an external stack")
|
|
)
|
|
|
|
// Tag errors
|
|
const (
|
|
ErrTagAlreadyExists = Error("A tag already exists with this name")
|
|
)
|
|
|
|
// Endpoint extensions error
|
|
const (
|
|
ErrEndpointExtensionNotSupported = Error("This extension is not supported")
|
|
ErrEndpointExtensionAlreadyAssociated = Error("This extension is already associated to the endpoint")
|
|
)
|
|
|
|
// Crypto errors.
|
|
const (
|
|
ErrCryptoHashFailure = Error("Unable to hash data")
|
|
)
|
|
|
|
// JWT errors.
|
|
const (
|
|
ErrSecretGeneration = Error("Unable to generate secret key")
|
|
ErrInvalidJWTToken = Error("Invalid JWT token")
|
|
ErrMissingContextData = Error("Unable to find JWT data in request context")
|
|
)
|
|
|
|
// File errors.
|
|
const (
|
|
ErrUndefinedTLSFileType = Error("Undefined TLS file type")
|
|
)
|
|
|
|
// Error represents an application error.
|
|
type Error string
|
|
|
|
// Error returns the error message.
|
|
func (e Error) Error() string { return string(e) }
|
|
|
|
// Webhook errors
|
|
const (
|
|
ErrWebhookAlreadyExists = Error("A webhook for this resource already exists")
|
|
ErrUnsupportedWebhookType = Error("Webhooks for this resource are not currently supported")
|
|
)
|