mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-12-05 03:25:06 +08:00
a30e02c18c
implements: https://github.com/meilisearch/specifications/blob/develop/text/0060-refashion-updates-apis.md linked PR: - #1889 - #1891 - #1892 - #1902 - #1906 - #1911 - #1914 - #1915 - #1916 - #1918 - #1924 - #1925 - #1926 - #1930 - #1936 - #1937 - #1942 - #1944 - #1945 - #1946 - #1947 - #1950 - #1951 - #1957 - #1959 - #1960 - #1961 - #1962 - #1964 - https://github.com/meilisearch/milli/pull/414 - https://github.com/meilisearch/milli/pull/409 - https://github.com/meilisearch/milli/pull/406 - https://github.com/meilisearch/milli/pull/418 - close #1687 - close #1786 - close #1940 - close #1948 - close #1949 - close #1932 - close #1956
77 lines
2.1 KiB
Rust
77 lines
2.1 KiB
Rust
use actix_web::{web, HttpRequest, HttpResponse};
|
|
use chrono::{DateTime, Utc};
|
|
use log::debug;
|
|
use meilisearch_error::ResponseError;
|
|
use meilisearch_lib::MeiliSearch;
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_json::json;
|
|
|
|
use crate::analytics::Analytics;
|
|
use crate::extractors::authentication::{policies::*, GuardedData};
|
|
use crate::task::{TaskListView, TaskView};
|
|
|
|
pub fn configure(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(web::resource("").route(web::get().to(get_all_tasks_status)))
|
|
.service(web::resource("{task_id}").route(web::get().to(get_task_status)));
|
|
}
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct UpdateIndexResponse {
|
|
name: String,
|
|
uid: String,
|
|
created_at: DateTime<Utc>,
|
|
updated_at: DateTime<Utc>,
|
|
primary_key: Option<String>,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct UpdateParam {
|
|
index_uid: String,
|
|
task_id: u64,
|
|
}
|
|
|
|
pub async fn get_task_status(
|
|
meilisearch: GuardedData<Private, MeiliSearch>,
|
|
index_uid: web::Path<UpdateParam>,
|
|
req: HttpRequest,
|
|
analytics: web::Data<dyn Analytics>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
analytics.publish(
|
|
"Index Tasks Seen".to_string(),
|
|
json!({ "per_task_uid": true }),
|
|
Some(&req),
|
|
);
|
|
|
|
let UpdateParam { index_uid, task_id } = index_uid.into_inner();
|
|
|
|
let task: TaskView = meilisearch.get_index_task(index_uid, task_id).await?.into();
|
|
|
|
debug!("returns: {:?}", task);
|
|
Ok(HttpResponse::Ok().json(task))
|
|
}
|
|
|
|
pub async fn get_all_tasks_status(
|
|
meilisearch: GuardedData<Private, MeiliSearch>,
|
|
index_uid: web::Path<String>,
|
|
req: HttpRequest,
|
|
analytics: web::Data<dyn Analytics>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
analytics.publish(
|
|
"Index Tasks Seen".to_string(),
|
|
json!({ "per_task_uid": false }),
|
|
Some(&req),
|
|
);
|
|
|
|
let tasks: TaskListView = meilisearch
|
|
.list_index_task(index_uid.into_inner(), None, None)
|
|
.await?
|
|
.into_iter()
|
|
.map(TaskView::from)
|
|
.collect::<Vec<_>>()
|
|
.into();
|
|
|
|
debug!("returns: {:?}", tasks);
|
|
Ok(HttpResponse::Ok().json(tasks))
|
|
}
|