mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-02-07 11:26:16 +08:00
ffefd0caf2
implements: https://github.com/meilisearch/specifications/blob/develop/text/0085-api-keys.md - Add tests on API keys management route (meilisearch-http/tests/auth/api_keys.rs) - Add tests checking authorizations on each meilisearch routes (meilisearch-http/tests/auth/authorization.rs) - Implement API keys management routes (meilisearch-http/src/routes/api_key.rs) - Create module to manage API keys and authorizations (meilisearch-auth) - Reimplement GuardedData to extend authorizations (meilisearch-http/src/extractors/authentication/mod.rs) - Change X-MEILI-API-KEY by Authorization Bearer (meilisearch-http/src/extractors/authentication/mod.rs) - Change meilisearch routes to fit to the new authorization feature (meilisearch-http/src/routes/) - close #1867
34 lines
805 B
Rust
34 lines
805 B
Rust
use meilisearch_error::{internal_error, Code, ErrorCode};
|
|
use tokio::task::JoinError;
|
|
|
|
use crate::update_file_store::UpdateFileStoreError;
|
|
|
|
use super::task::TaskId;
|
|
|
|
pub type Result<T> = std::result::Result<T, TaskError>;
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
pub enum TaskError {
|
|
#[error("Task `{0}` not found.")]
|
|
UnexistingTask(TaskId),
|
|
#[error("Internal error: {0}")]
|
|
Internal(Box<dyn std::error::Error + Send + Sync + 'static>),
|
|
}
|
|
|
|
internal_error!(
|
|
TaskError: heed::Error,
|
|
JoinError,
|
|
std::io::Error,
|
|
serde_json::Error,
|
|
UpdateFileStoreError
|
|
);
|
|
|
|
impl ErrorCode for TaskError {
|
|
fn error_code(&self) -> Code {
|
|
match self {
|
|
TaskError::UnexistingTask(_) => Code::TaskNotFound,
|
|
TaskError::Internal(_) => Code::Internal,
|
|
}
|
|
}
|
|
}
|