feat(nextcloud): add commnad 'nextcloud deck get'
This commit is contained in:
parent
8bc8852528
commit
32e489dec4
6 changed files with 216 additions and 56 deletions
|
@ -74,7 +74,7 @@ As part of building the import server, the following commands exercise each oper
|
|||
- [x] trello card get - includes list of attachments
|
||||
- [x] trello attachment get - includes download url
|
||||
- [x] trello attachment save - saves to disk
|
||||
- [ ] nextcloud deck get (was board list)
|
||||
- [x] nextcloud deck get - includes list of boards
|
||||
- [ ] nextcloud board get (was stack list)
|
||||
- [ ] nextcloud stack get (was card list)
|
||||
- [x] nextcloud card create
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
//
|
||||
use clap::Parser;
|
||||
|
||||
use crate::execute::Execute;
|
||||
use crate::{p, FullCtx};
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
pub(crate) enum NextcloudBoardCommand {
|
||||
List {
|
||||
#[clap(long, action = clap::ArgAction::SetTrue)]
|
||||
dump: bool,
|
||||
},
|
||||
}
|
||||
|
||||
impl Execute for NextcloudBoardCommand {
|
||||
async fn execute(self, ctx: FullCtx) -> color_eyre::Result<()> {
|
||||
match self {
|
||||
Self::List { dump } => list(&ctx, dump).await,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) async fn list(ctx: &FullCtx, dump: bool) -> color_eyre::Result<()> {
|
||||
let api_result = ctx.deck_client().get_boards().await;
|
||||
if dump {
|
||||
p!(ctx.prt, "{}", api_result.text);
|
||||
} else {
|
||||
let mut boards = api_result.result?;
|
||||
boards.sort_by_key(|stack| stack.title.clone());
|
||||
boards
|
||||
.iter()
|
||||
.for_each(|stack| p!(ctx.prt, "{}:{}", stack.id, stack.title));
|
||||
}
|
||||
Ok(())
|
||||
}
|
33
src/nextcloud/deck.rs
Normal file
33
src/nextcloud/deck.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
//
|
||||
use clap::Parser;
|
||||
|
||||
use crate::execute::Execute;
|
||||
use crate::{p, FullCtx};
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
pub(crate) enum NextcloudDeckCommand {
|
||||
Get {
|
||||
#[clap(long, action = clap::ArgAction::SetTrue)]
|
||||
dump: bool,
|
||||
},
|
||||
}
|
||||
|
||||
impl Execute for NextcloudDeckCommand {
|
||||
async fn execute(self, ctx: FullCtx) -> color_eyre::Result<()> {
|
||||
match self {
|
||||
Self::Get { dump } => {
|
||||
let api_result = ctx.deck_client().get_boards().await;
|
||||
if dump {
|
||||
p!(ctx.prt, "{}", api_result.text);
|
||||
} else {
|
||||
let mut boards = api_result.result?;
|
||||
boards.sort_by_key(|stack| stack.title.clone());
|
||||
boards
|
||||
.iter()
|
||||
.for_each(|stack| p!(ctx.prt, "{}:{}", stack.id, stack.title));
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
use bytes::Bytes;
|
||||
//
|
||||
use bytes::Bytes;
|
||||
use clap::Parser;
|
||||
use kxio::net::{Net, ReqBuilder};
|
||||
|
||||
|
@ -8,9 +8,8 @@ use crate::{
|
|||
execute::Execute,
|
||||
f,
|
||||
nextcloud::{
|
||||
board::NextcloudBoardCommand,
|
||||
card::Create,
|
||||
card::NextcloudCardCommand,
|
||||
card::{Create, NextcloudCardCommand},
|
||||
deck::NextcloudDeckCommand,
|
||||
model::{
|
||||
Board, Card, NextcloudBoardId, NextcloudHostname, NextcloudPassword, NextcloudStackId,
|
||||
NextcloudUsername, Stack,
|
||||
|
@ -20,9 +19,9 @@ use crate::{
|
|||
FullCtx,
|
||||
};
|
||||
|
||||
mod board;
|
||||
pub(crate) mod card;
|
||||
pub(crate) mod client;
|
||||
pub(crate) mod deck;
|
||||
pub(crate) mod model;
|
||||
mod stack;
|
||||
|
||||
|
@ -166,7 +165,7 @@ impl<'ctx> DeckClient<'ctx> {
|
|||
#[derive(Parser, Debug)]
|
||||
pub(crate) enum NextcloudCommand {
|
||||
#[clap(subcommand)]
|
||||
Board(NextcloudBoardCommand),
|
||||
Deck(NextcloudDeckCommand),
|
||||
#[clap(subcommand)]
|
||||
Stack(NextcloudStackCommand),
|
||||
#[clap(subcommand)]
|
||||
|
@ -175,7 +174,7 @@ pub(crate) enum NextcloudCommand {
|
|||
impl Execute for NextcloudCommand {
|
||||
async fn execute(self, ctx: FullCtx) -> color_eyre::Result<()> {
|
||||
match self {
|
||||
NextcloudCommand::Board(cmd) => cmd.execute(ctx).await,
|
||||
NextcloudCommand::Deck(cmd) => cmd.execute(ctx).await,
|
||||
NextcloudCommand::Stack(cmd) => cmd.execute(ctx).await,
|
||||
NextcloudCommand::Card(cmd) => cmd.execute(ctx).await,
|
||||
}
|
||||
|
|
|
@ -3,20 +3,16 @@ use kxio::net::StatusCode;
|
|||
use serde_json::json;
|
||||
|
||||
use crate::{
|
||||
execute::Execute,
|
||||
nextcloud::{
|
||||
board::NextcloudBoardCommand,
|
||||
card::{AddLabel, Create},
|
||||
model::{
|
||||
Card, Label, NextcloudBoardId, NextcloudCardId, NextcloudCardTitle, NextcloudETag,
|
||||
NextcloudHostname, NextcloudLabelId, NextcloudOrder, NextcloudPassword,
|
||||
NextcloudStackId, NextcloudStackTitle, NextcloudUsername, Stack,
|
||||
},
|
||||
NextcloudCommand, NextcloudConfig,
|
||||
}, NextcloudConfig,
|
||||
},
|
||||
s,
|
||||
tests::given,
|
||||
Command,
|
||||
};
|
||||
|
||||
mod config {
|
||||
|
@ -102,11 +98,15 @@ mod config {
|
|||
mod commands {
|
||||
use super::*;
|
||||
|
||||
mod board {
|
||||
mod deck {
|
||||
use super::*;
|
||||
use crate::execute::Execute;
|
||||
use crate::nextcloud::deck::NextcloudDeckCommand;
|
||||
use crate::nextcloud::NextcloudCommand;
|
||||
use crate::Command;
|
||||
|
||||
#[tokio::test]
|
||||
async fn list_dump() {
|
||||
async fn get_dump() {
|
||||
//given
|
||||
let mock_net = kxio::net::mock();
|
||||
|
||||
|
@ -115,7 +115,7 @@ mod commands {
|
|||
.get("https://host-name/index.php/apps/deck/api/v1.0/boards")
|
||||
.basic_auth("username", Some("password"))
|
||||
.respond(StatusCode::OK)
|
||||
.body(include_str!("../tests/responses/nextcloud-board-list.json"))
|
||||
.body(include_str!("../tests/responses/nextcloud-deck-get.json"))
|
||||
.expect("mock request");
|
||||
|
||||
let fs = given::a_filesystem();
|
||||
|
@ -124,22 +124,23 @@ mod commands {
|
|||
let prt = prt.as_test().unwrap();
|
||||
|
||||
//when
|
||||
Command::Nextcloud(NextcloudCommand::Board(NextcloudBoardCommand::List {
|
||||
Command::Nextcloud(NextcloudCommand::Deck(NextcloudDeckCommand::Get {
|
||||
dump: true,
|
||||
}))
|
||||
.execute(ctx)
|
||||
.await
|
||||
.expect("execute");
|
||||
|
||||
//then
|
||||
let output = prt.output();
|
||||
assert_eq!(
|
||||
output.trim(),
|
||||
include_str!("../tests/responses/nextcloud-board-list.json").trim()
|
||||
include_str!("../tests/responses/nextcloud-deck-get.json").trim()
|
||||
);
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn list_no_dump() {
|
||||
async fn get_no_dump() {
|
||||
//given
|
||||
let mock_net = kxio::net::mock();
|
||||
|
||||
|
@ -148,7 +149,7 @@ mod commands {
|
|||
.get("https://host-name/index.php/apps/deck/api/v1.0/boards")
|
||||
.basic_auth("username", Some("password"))
|
||||
.respond(StatusCode::OK)
|
||||
.body(include_str!("../tests/responses/nextcloud-board-list.json"))
|
||||
.body(include_str!("../tests/responses/nextcloud-deck-get.json"))
|
||||
.expect("mock request");
|
||||
|
||||
let fs = given::a_filesystem();
|
||||
|
@ -157,13 +158,14 @@ mod commands {
|
|||
let prt = prt.as_test().unwrap();
|
||||
|
||||
//when
|
||||
Command::Nextcloud(NextcloudCommand::Board(NextcloudBoardCommand::List {
|
||||
Command::Nextcloud(NextcloudCommand::Deck(NextcloudDeckCommand::Get {
|
||||
dump: false,
|
||||
}))
|
||||
.execute(ctx)
|
||||
.await
|
||||
.expect("execute");
|
||||
|
||||
//then
|
||||
let output = prt.output();
|
||||
assert_eq!(
|
||||
output.trim(),
|
||||
|
@ -177,6 +179,81 @@ mod commands {
|
|||
}
|
||||
}
|
||||
|
||||
// mod board {
|
||||
// use super::*;
|
||||
//
|
||||
// #[tokio::test]
|
||||
// async fn list_dump() {
|
||||
// //given
|
||||
// let mock_net = kxio::net::mock();
|
||||
//
|
||||
// mock_net
|
||||
// .on()
|
||||
// .get("https://host-name/index.php/apps/deck/api/v1.0/boards")
|
||||
// .basic_auth("username", Some("password"))
|
||||
// .respond(StatusCode::OK)
|
||||
// .body(include_str!("../tests/responses/nextcloud-board-list.json"))
|
||||
// .expect("mock request");
|
||||
//
|
||||
// let fs = given::a_filesystem();
|
||||
// let ctx = given::a_full_context(mock_net, fs);
|
||||
// let prt = ctx.prt.clone();
|
||||
// let prt = prt.as_test().unwrap();
|
||||
//
|
||||
// //when
|
||||
// Command::Nextcloud(NextcloudCommand::Board(NextcloudBoardCommand::List {
|
||||
// dump: true,
|
||||
// }))
|
||||
// .execute(ctx)
|
||||
// .await
|
||||
// .expect("execute");
|
||||
//
|
||||
// let output = prt.output();
|
||||
// assert_eq!(
|
||||
// output.trim(),
|
||||
// include_str!("../tests/responses/nextcloud-board-list.json").trim()
|
||||
// );
|
||||
// }
|
||||
//
|
||||
// #[tokio::test]
|
||||
// async fn list_no_dump() {
|
||||
// //given
|
||||
// let mock_net = kxio::net::mock();
|
||||
//
|
||||
// mock_net
|
||||
// .on()
|
||||
// .get("https://host-name/index.php/apps/deck/api/v1.0/boards")
|
||||
// .basic_auth("username", Some("password"))
|
||||
// .respond(StatusCode::OK)
|
||||
// .body(include_str!("../tests/responses/nextcloud-board-list.json"))
|
||||
// .expect("mock request");
|
||||
//
|
||||
// let fs = given::a_filesystem();
|
||||
// let ctx = given::a_full_context(mock_net, fs);
|
||||
// let prt = ctx.prt.clone();
|
||||
// let prt = prt.as_test().unwrap();
|
||||
//
|
||||
// //when
|
||||
// Command::Nextcloud(NextcloudCommand::Board(NextcloudBoardCommand::List {
|
||||
// dump: false,
|
||||
// }))
|
||||
// .execute(ctx)
|
||||
// .await
|
||||
// .expect("execute");
|
||||
//
|
||||
// let output = prt.output();
|
||||
// assert_eq!(
|
||||
// output.trim(),
|
||||
// [
|
||||
// "4:4 Published: Cossmass Infinities",
|
||||
// "5:Fulfilment: Cossmass Infinities",
|
||||
// "1:Personal Board"
|
||||
// ]
|
||||
// .join("\n")
|
||||
// );
|
||||
// }
|
||||
// }
|
||||
|
||||
mod stack {
|
||||
use super::*;
|
||||
|
||||
|
|
86
src/tests/responses/nextcloud-deck-get.json
Normal file
86
src/tests/responses/nextcloud-deck-get.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
[
|
||||
{
|
||||
"id": 1,
|
||||
"title": "Personal Board",
|
||||
"owner": {
|
||||
"primaryKey": "pcampbell",
|
||||
"uid": "pcampbell",
|
||||
"displayname": "Paul Campbell",
|
||||
"type": 0
|
||||
},
|
||||
"color": "0087C5",
|
||||
"archived": false,
|
||||
"labels": [],
|
||||
"acl": [],
|
||||
"permissions": {
|
||||
"PERMISSION_READ": true,
|
||||
"PERMISSION_EDIT": true,
|
||||
"PERMISSION_MANAGE": true,
|
||||
"PERMISSION_SHARE": true
|
||||
},
|
||||
"users": [],
|
||||
"shared": 0,
|
||||
"stacks": [],
|
||||
"activeSessions": [],
|
||||
"deletedAt": 0,
|
||||
"lastModified": 1733695323,
|
||||
"settings": [],
|
||||
"ETag": "9de45fc7d68507f1eaef462e90e6414c"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "4 Published: Cossmass Infinities",
|
||||
"owner": {
|
||||
"primaryKey": "pcampbell",
|
||||
"uid": "pcampbell",
|
||||
"displayname": "Paul Campbell",
|
||||
"type": 0
|
||||
},
|
||||
"color": "ff0000",
|
||||
"archived": true,
|
||||
"labels": [],
|
||||
"acl": [],
|
||||
"permissions": {
|
||||
"PERMISSION_READ": true,
|
||||
"PERMISSION_EDIT": true,
|
||||
"PERMISSION_MANAGE": true,
|
||||
"PERMISSION_SHARE": true
|
||||
},
|
||||
"users": [],
|
||||
"shared": 0,
|
||||
"stacks": [],
|
||||
"activeSessions": [],
|
||||
"deletedAt": 0,
|
||||
"lastModified": 1699798570,
|
||||
"settings": [],
|
||||
"ETag": "5e0fe035f3b95672da3cba633086be37"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"title": "Fulfilment: Cossmass Infinities",
|
||||
"owner": {
|
||||
"primaryKey": "pcampbell",
|
||||
"uid": "pcampbell",
|
||||
"displayname": "Paul Campbell",
|
||||
"type": 0
|
||||
},
|
||||
"color": "ff0000",
|
||||
"archived": true,
|
||||
"labels": [],
|
||||
"acl": [],
|
||||
"permissions": {
|
||||
"PERMISSION_READ": true,
|
||||
"PERMISSION_EDIT": true,
|
||||
"PERMISSION_MANAGE": true,
|
||||
"PERMISSION_SHARE": true
|
||||
},
|
||||
"users": [],
|
||||
"shared": 0,
|
||||
"stacks": [],
|
||||
"activeSessions": [],
|
||||
"deletedAt": 0,
|
||||
"lastModified": 1699798567,
|
||||
"settings": [],
|
||||
"ETag": "90e2f9d53c5f6ec83088425d4486e54d"
|
||||
}
|
||||
]
|
Loading…
Reference in a new issue