2020-05-11 17:55:49 +02:00
|
|
|
/*
|
2020-06-18 16:13:24 +02:00
|
|
|
Copyright 2020 Docker, Inc.
|
2020-05-11 17:55:49 +02:00
|
|
|
|
2020-06-18 16:13:24 +02:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2020-05-11 17:55:49 +02:00
|
|
|
|
2020-06-18 16:13:24 +02:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2020-05-11 17:55:49 +02:00
|
|
|
|
2020-06-18 16:13:24 +02:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2020-05-11 17:55:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package errdefs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2020-07-02 13:52:57 +02:00
|
|
|
const (
|
|
|
|
//ExitCodeLoginRequired exit code when command cannot execute because it requires cloud login
|
|
|
|
// This will be used by VSCode to detect when creating context if the user needs to login first
|
|
|
|
ExitCodeLoginRequired = 5
|
|
|
|
)
|
|
|
|
|
2020-05-11 17:55:49 +02:00
|
|
|
var (
|
|
|
|
// ErrNotFound is returned when an object is not found
|
|
|
|
ErrNotFound = errors.New("not found")
|
|
|
|
// ErrAlreadyExists is returned when an object already exists
|
|
|
|
ErrAlreadyExists = errors.New("already exists")
|
2020-05-14 09:53:49 +02:00
|
|
|
// ErrForbidden is returned when an operation is not permitted
|
|
|
|
ErrForbidden = errors.New("forbidden")
|
2020-05-11 17:55:49 +02:00
|
|
|
// ErrUnknown is returned when the error type is unmapped
|
|
|
|
ErrUnknown = errors.New("unknown")
|
2020-05-12 17:26:11 +02:00
|
|
|
// ErrLoginFailed is returned when login failed
|
|
|
|
ErrLoginFailed = errors.New("login failed")
|
2020-07-02 13:52:57 +02:00
|
|
|
// ErrLoginRequired is returned when login is required for a specific action
|
|
|
|
ErrLoginRequired = errors.New("login required")
|
2020-05-18 12:02:04 +02:00
|
|
|
// ErrNotImplemented is returned when a backend doesn't implement
|
|
|
|
// an action
|
|
|
|
ErrNotImplemented = errors.New("not implemented")
|
2020-05-19 20:03:53 +02:00
|
|
|
// ErrParsingFailed is returned when a string cannot be parsed
|
2020-05-19 15:50:57 +02:00
|
|
|
ErrParsingFailed = errors.New("parsing failed")
|
Change the way a context is stored
Initially we stored the context data in the `Metadata` of the context
but in hindsight this data would be better of in the `Endpoints` because
that's what it is used for.
Before:
```json
{
"Name": "aci",
"Metadata": {
"Type": "aci",
"Data": {
"key": "value"
}
},
"Endpoints": {
"docker": {}
}
}
```
After:
```json
{
"Name": "aci",
"Type": "aci",
"Metadata": {},
"Endpoints": {
"aci": {
"key": "value"
},
"docker": {}
}
}
```
With this change the contexts that we create are more in line with the contexts the docker cli creates.
It also makes the code less complicated since we don't need to marsal twice any more. The API is nicer too:
```go
// Get a context:
c, err := store.Get(contextName)
// Get the stored endpoint:
var aciContext store.AciContext
if err := contextStore.GetEndpoint(currentContext, &aciContext); err != nil {
return nil, err
}
```
2020-05-22 11:16:01 +02:00
|
|
|
// ErrWrongContextType is returned when the caller tries to get a context
|
|
|
|
// with the wrong type
|
|
|
|
ErrWrongContextType = errors.New("wrong context type")
|
2020-05-11 17:55:49 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// IsNotFoundError returns true if the unwrapped error is ErrNotFound
|
|
|
|
func IsNotFoundError(err error) bool {
|
|
|
|
return errors.Is(err, ErrNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsAlreadyExistsError returns true if the unwrapped error is ErrAlreadyExists
|
|
|
|
func IsAlreadyExistsError(err error) bool {
|
|
|
|
return errors.Is(err, ErrAlreadyExists)
|
|
|
|
}
|
|
|
|
|
2020-05-14 09:53:49 +02:00
|
|
|
// IsForbiddenError returns true if the unwrapped error is ErrForbidden
|
|
|
|
func IsForbiddenError(err error) bool {
|
|
|
|
return errors.Is(err, ErrForbidden)
|
|
|
|
}
|
|
|
|
|
2020-05-11 17:55:49 +02:00
|
|
|
// IsUnknownError returns true if the unwrapped error is ErrUnknown
|
|
|
|
func IsUnknownError(err error) bool {
|
|
|
|
return errors.Is(err, ErrUnknown)
|
|
|
|
}
|
2020-05-18 12:02:04 +02:00
|
|
|
|
|
|
|
// IsErrNotImplemented returns true if the unwrapped error is ErrNotImplemented
|
|
|
|
func IsErrNotImplemented(err error) bool {
|
|
|
|
return errors.Is(err, ErrNotImplemented)
|
|
|
|
}
|
2020-05-19 19:45:03 +02:00
|
|
|
|
2020-05-19 20:03:53 +02:00
|
|
|
// IsErrParsingFailed returns true if the unwrapped error is ErrParsingFailed
|
2020-05-19 19:45:03 +02:00
|
|
|
func IsErrParsingFailed(err error) bool {
|
|
|
|
return errors.Is(err, ErrParsingFailed)
|
|
|
|
}
|