get update id

This commit is contained in:
mpostma 2021-01-28 17:20:51 +01:00
parent 4119ae8655
commit 60371b9dcf
No known key found for this signature in database
GPG Key ID: CBC8A7C1D7A28C3A
4 changed files with 47 additions and 38 deletions

View File

@ -52,10 +52,10 @@ impl Data {
Ok(update.into()) Ok(update.into())
} }
//#[inline] #[inline]
//pub fn get_update_status<S: AsRef<str>>(&self, _index: S, uid: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> { pub fn get_update_status<S: AsRef<str>>(&self, index: S, uid: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
//self.indexes.get_update_status(uid) self.index_controller.update_status(index, uid)
//} }
//pub fn get_updates_status(&self, _index: &str) -> anyhow::Result<Vec<UpdateStatus<UpdateMeta, UpdateResult, String>>> { //pub fn get_updates_status(&self, _index: &str) -> anyhow::Result<Vec<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
//let result = self.update_queue.iter_metas(|processing, processed, pending, aborted, failed| { //let result = self.update_queue.iter_metas(|processing, processed, pending, aborted, failed| {

View File

@ -8,6 +8,7 @@ use std::path::Path;
use std::sync::Arc; use std::sync::Arc;
use milli::Index; use milli::Index;
use anyhow::bail;
use crate::option::IndexerOpts; use crate::option::IndexerOpts;
use super::IndexController; use super::IndexController;
@ -73,4 +74,11 @@ impl IndexController for LocalIndexController {
let index = self.indexes.index(name)?.map(|(i, _)| i); let index = self.indexes.index(name)?.map(|(i, _)| i);
Ok(index) Ok(index)
} }
fn update_status(&self, index: impl AsRef<str>, id: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
match self.indexes.index(&index)? {
Some((_, update_store)) => Ok(update_store.meta(id)?),
None => bail!("index {:?} doesn't exist", index.as_ref()),
}
}
} }

View File

@ -135,4 +135,6 @@ pub trait IndexController {
/// Returns, if it exists, an `IndexView` to the requested index. /// Returns, if it exists, an `IndexView` to the requested index.
fn index(&self, uid: impl AsRef<str>) -> anyhow::Result<Option<Arc<Index>>>; fn index(&self, uid: impl AsRef<str>) -> anyhow::Result<Option<Arc<Index>>>;
fn update_status(&self, index: impl AsRef<str>, id: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>>;
} }

View File

@ -1,7 +1,7 @@
use actix_web::{delete, get, post, put}; use actix_web::{delete, get, post, put};
use actix_web::{web, HttpResponse}; use actix_web::{web, HttpResponse};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
//use log::error; use log::error;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use crate::Data; use crate::Data;
@ -94,8 +94,8 @@ async fn delete_index(
#[derive(Deserialize)] #[derive(Deserialize)]
struct UpdateParam { struct UpdateParam {
_index_uid: String, index_uid: String,
_update_id: u64, update_id: u64,
} }
#[get( #[get(
@ -103,24 +103,23 @@ struct UpdateParam {
wrap = "Authentication::Private" wrap = "Authentication::Private"
)] )]
async fn get_update_status( async fn get_update_status(
_data: web::Data<Data>, data: web::Data<Data>,
_path: web::Path<UpdateParam>, path: web::Path<UpdateParam>,
) -> Result<HttpResponse, ResponseError> { ) -> Result<HttpResponse, ResponseError> {
let result = data.get_update_status(&path.index_uid, path.update_id);
match result {
Ok(Some(meta)) => {
let json = serde_json::to_string(&meta).unwrap();
Ok(HttpResponse::Ok().body(json))
}
Ok(None) => {
todo!() todo!()
//let result = data.get_update_status(&path.index_uid, path.update_id); }
//match result { Err(e) => {
//Ok(Some(meta)) => { error!("{}", e);
//let json = serde_json::to_string(&meta).unwrap(); todo!()
//Ok(HttpResponse::Ok().body(json)) }
//} }
//Ok(None) => {
//todo!()
//}
//Err(e) => {
//error!("{}", e);
//todo!()
//}
//}
} }
#[get("/indexes/{index_uid}/updates", wrap = "Authentication::Private")] #[get("/indexes/{index_uid}/updates", wrap = "Authentication::Private")]