diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 17:53:28 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 17:57:32 -0700 | 
| commit | a82cffed703665496913d9ca0155e888ec35716b (patch) | |
| tree | d04bb9242e1333fc7e671a645bd97ae528c21459 /rust/fatcat-api/examples/server_lib | |
| parent | f4064c19ec140987e15c64e80a3bf0c70025b31b (diff) | |
| download | fatcat-a82cffed703665496913d9ca0155e888ec35716b.tar.gz fatcat-a82cffed703665496913d9ca0155e888ec35716b.zip | |
add remaining history endpoints
Diffstat (limited to 'rust/fatcat-api/examples/server_lib')
| -rw-r--r-- | rust/fatcat-api/examples/server_lib/server.rs | 49 | 
1 files changed, 47 insertions, 2 deletions
| diff --git a/rust/fatcat-api/examples/server_lib/server.rs b/rust/fatcat-api/examples/server_lib/server.rs index 0155782b..062fca02 100644 --- a/rust/fatcat-api/examples/server_lib/server.rs +++ b/rust/fatcat-api/examples/server_lib/server.rs @@ -12,8 +12,9 @@ use swagger;  use fatcat::models;  use fatcat::{AcceptEditgroupResponse, Api, ApiError, Context, CreateContainerBatchResponse, CreateContainerResponse, CreateCreatorBatchResponse, CreateCreatorResponse, CreateEditgroupResponse,               CreateFileBatchResponse, CreateFileResponse, CreateReleaseBatchResponse, CreateReleaseResponse, CreateWorkBatchResponse, CreateWorkResponse, GetContainerHistoryResponse, -             GetContainerResponse, GetCreatorReleasesResponse, GetCreatorResponse, GetEditgroupResponse, GetEditorChangelogResponse, GetEditorResponse, GetFileResponse, GetReleaseFilesResponse, -             GetReleaseResponse, GetStatsResponse, GetWorkReleasesResponse, GetWorkResponse, LookupContainerResponse, LookupCreatorResponse, LookupFileResponse, LookupReleaseResponse}; +             GetContainerResponse, GetCreatorHistoryResponse, GetCreatorReleasesResponse, GetCreatorResponse, GetEditgroupResponse, GetEditorChangelogResponse, GetEditorResponse, +             GetFileHistoryResponse, GetFileResponse, GetReleaseFilesResponse, GetReleaseHistoryResponse, GetReleaseResponse, GetStatsResponse, GetWorkHistoryResponse, GetWorkReleasesResponse, +             GetWorkResponse, LookupContainerResponse, LookupCreatorResponse, LookupFileResponse, LookupReleaseResponse};  #[derive(Copy, Clone)]  pub struct Server; @@ -118,6 +119,17 @@ impl Api for Server {          Box::new(futures::failed("Generic failure".into()))      } +    fn get_creator_history(&self, id: String, limit: Option<i64>, context: &Context) -> Box<Future<Item = GetCreatorHistoryResponse, Error = ApiError> + Send> { +        let context = context.clone(); +        println!( +            "get_creator_history(\"{}\", {:?}) - X-Span-ID: {:?}", +            id, +            limit, +            context.x_span_id.unwrap_or(String::from("<none>")).clone() +        ); +        Box::new(futures::failed("Generic failure".into())) +    } +      fn get_creator_releases(&self, id: String, context: &Context) -> Box<Future<Item = GetCreatorReleasesResponse, Error = ApiError> + Send> {          let context = context.clone();          println!("get_creator_releases(\"{}\") - X-Span-ID: {:?}", id, context.x_span_id.unwrap_or(String::from("<none>")).clone()); @@ -148,6 +160,17 @@ impl Api for Server {          Box::new(futures::failed("Generic failure".into()))      } +    fn get_file_history(&self, id: String, limit: Option<i64>, context: &Context) -> Box<Future<Item = GetFileHistoryResponse, Error = ApiError> + Send> { +        let context = context.clone(); +        println!( +            "get_file_history(\"{}\", {:?}) - X-Span-ID: {:?}", +            id, +            limit, +            context.x_span_id.unwrap_or(String::from("<none>")).clone() +        ); +        Box::new(futures::failed("Generic failure".into())) +    } +      fn get_release(&self, id: String, context: &Context) -> Box<Future<Item = GetReleaseResponse, Error = ApiError> + Send> {          let context = context.clone();          println!("get_release(\"{}\") - X-Span-ID: {:?}", id, context.x_span_id.unwrap_or(String::from("<none>")).clone()); @@ -160,6 +183,17 @@ impl Api for Server {          Box::new(futures::failed("Generic failure".into()))      } +    fn get_release_history(&self, id: String, limit: Option<i64>, context: &Context) -> Box<Future<Item = GetReleaseHistoryResponse, Error = ApiError> + Send> { +        let context = context.clone(); +        println!( +            "get_release_history(\"{}\", {:?}) - X-Span-ID: {:?}", +            id, +            limit, +            context.x_span_id.unwrap_or(String::from("<none>")).clone() +        ); +        Box::new(futures::failed("Generic failure".into())) +    } +      fn get_stats(&self, more: Option<String>, context: &Context) -> Box<Future<Item = GetStatsResponse, Error = ApiError> + Send> {          let context = context.clone();          println!("get_stats({:?}) - X-Span-ID: {:?}", more, context.x_span_id.unwrap_or(String::from("<none>")).clone()); @@ -172,6 +206,17 @@ impl Api for Server {          Box::new(futures::failed("Generic failure".into()))      } +    fn get_work_history(&self, id: String, limit: Option<i64>, context: &Context) -> Box<Future<Item = GetWorkHistoryResponse, Error = ApiError> + Send> { +        let context = context.clone(); +        println!( +            "get_work_history(\"{}\", {:?}) - X-Span-ID: {:?}", +            id, +            limit, +            context.x_span_id.unwrap_or(String::from("<none>")).clone() +        ); +        Box::new(futures::failed("Generic failure".into())) +    } +      fn get_work_releases(&self, id: String, context: &Context) -> Box<Future<Item = GetWorkReleasesResponse, Error = ApiError> + Send> {          let context = context.clone();          println!("get_work_releases(\"{}\") - X-Span-ID: {:?}", id, context.x_span_id.unwrap_or(String::from("<none>")).clone()); | 
