wrangler 1.21.0

Command-line interface for all things Cloudflare Workers
Documentation
extern crate serde_json;

use crate::commands::kv;
use crate::http;
use crate::kv::key::KeyList;
use crate::settings::global_user::GlobalUser;
use crate::settings::toml::Target;

use anyhow::Result;

// Note: this function only prints keys in json form, given that
// the number of entries in each json blob is variable (so csv and tsv
// representation won't make sense)
pub fn list(
    target: &Target,
    user: &GlobalUser,
    namespace_id: &str,
    prefix: Option<&str>,
) -> Result<()> {
    let client = http::cf_v4_client(user)?;
    let key_list = KeyList::new(target, client, namespace_id, prefix)?;

    print!("["); // Open json list bracket

    let mut first_key = true;

    for key_result in key_list {
        match key_result {
            Ok(key) => {
                if first_key {
                    first_key = false;
                } else {
                    print!(",");
                }

                print!("{}", serde_json::to_string(&key)?);
            }
            Err(e) => print!("{}", kv::format_error(e)),
        }
    }

    print!("]"); // Close json list bracket

    Ok(())
}