2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved.
|
2019-10-16 22:52:29 +02:00
|
|
|
//
|
|
|
|
// This file is part of Vikunja.
|
|
|
|
//
|
|
|
|
// Vikunja is free software: you can redistribute it and/or modify
|
2020-12-23 16:41:52 +01:00
|
|
|
// it under the terms of the GNU Affero General Public Licensee as published by
|
2019-10-16 22:52:29 +02:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Vikunja is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2020-12-23 16:41:52 +01:00
|
|
|
// GNU Affero General Public Licensee for more details.
|
2019-10-16 22:52:29 +02:00
|
|
|
//
|
2020-12-23 16:41:52 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public Licensee
|
2019-10-16 22:52:29 +02:00
|
|
|
// along with Vikunja. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package files
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// ErrFileDoesNotExist defines an error where a file does not exist in the db
|
|
|
|
type ErrFileDoesNotExist struct {
|
|
|
|
FileID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error is the error implementation of ErrFileDoesNotExist
|
|
|
|
func (err ErrFileDoesNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("file %d does not exist", err.FileID)
|
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
// IsErrFileDoesNotExist checks if an error is ErrFileDoesNotExist
|
2019-10-16 22:52:29 +02:00
|
|
|
func IsErrFileDoesNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrFileDoesNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrFileIsTooLarge defines an error where a file is larger than the configured limit
|
|
|
|
type ErrFileIsTooLarge struct {
|
2019-10-18 17:30:25 +02:00
|
|
|
Size uint64
|
2019-10-16 22:52:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error is the error implementation of ErrFileIsTooLarge
|
|
|
|
func (err ErrFileIsTooLarge) Error() string {
|
|
|
|
return fmt.Sprintf("file is too large [Size: %d]", err.Size)
|
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
// IsErrFileIsTooLarge checks if an error is ErrFileIsTooLarge
|
2019-10-16 22:52:29 +02:00
|
|
|
func IsErrFileIsTooLarge(err error) bool {
|
|
|
|
_, ok := err.(ErrFileIsTooLarge)
|
|
|
|
return ok
|
|
|
|
}
|
2020-05-26 22:07:55 +02:00
|
|
|
|
|
|
|
// ErrFileIsNotUnsplashFile defines an error where a file is not downloaded from unsplash.
|
|
|
|
// Used in cases whenever unsplash information about a file is requested, but the file was not downloaded from unsplash.
|
|
|
|
type ErrFileIsNotUnsplashFile struct {
|
|
|
|
FileID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error is the error implementation of ErrFileIsNotUnsplashFile
|
|
|
|
func (err ErrFileIsNotUnsplashFile) Error() string {
|
|
|
|
return fmt.Sprintf("file was not downloaded from unsplash [FileID: %d]", err.FileID)
|
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
// IsErrFileIsNotUnsplashFile checks if an error is ErrFileIsNotUnsplashFile
|
2020-05-26 22:07:55 +02:00
|
|
|
func IsErrFileIsNotUnsplashFile(err error) bool {
|
|
|
|
_, ok := err.(ErrFileIsNotUnsplashFile)
|
|
|
|
return ok
|
|
|
|
}
|