phetch 1.2.0

quick lil gopher client
Documentation
//! Bookmarks are enabled if you create a ~/.config/phetch/ directory
//! manually. They are stored as a simple Gophermap, `BOOKMARKS_FILE`,
//! in that directory.

use crate::phetchdir;
use std::io::{Read, Result};

/// Bookmarks only work if you've created a ~/.config/phetch/ manually.
const BOOKMARKS_FILE: &str = "bookmarks.gph";

macro_rules! dir_missing_fmt {
    () => {
        "i\r\ni\r
i\r\ni\x1b[91m{error}\x1b[0m
i\r\niBookmarks can only be saved if {dir} exists.
i\r\niRun this in your terminal to enable bookmarking:
i\r\nimkdir -p {dir}"
    };
}

/// Get all bookmarks in Gophermap format.
pub fn as_raw_menu() -> String {
    let path = phetchdir::path();
    if let Err(e) = path {
        return format!(dir_missing_fmt!(), error = e, dir = phetchdir::DIR);
    }

    let mut out = format!("i{}{}:\r\ni\r\n", phetchdir::DIR, BOOKMARKS_FILE);

    let path = path.unwrap().join(BOOKMARKS_FILE);
    if !path.exists() {
        out.push_str("iNo bookmarks yet.\r\ni\r\niUse <ctrl-s> to bookmark a page.\r\n");
        return out;
    }

    match phetchdir::load(BOOKMARKS_FILE) {
        Ok(mut reader) => {
            if let Err(e) = reader.read_to_string(&mut out) {
                out = format!("3{}", e);
            }
        }
        Err(e) => out = format!("3{}", e),
    }

    out
}

/// Save a single bookmark entry.
pub fn save(label: &str, url: &str) -> Result<()> {
    phetchdir::append(
        BOOKMARKS_FILE,
        label
            .trim_start_matches("gopher://")
            .trim_end_matches("/1/"),
        url,
    )
}