aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fav.rs
blob: 7b9cce6d533cc2bc7188583801566de4f470feba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use tw;
use ::Queryer;

use tw::TweetId;

use commands::Command;

use std::str::FromStr;

static FAV_TWEET_URL: &str = "https://api.twitter.com/1.1/favorites/create.json";
static UNFAV_TWEET_URL: &str = "https://api.twitter.com/1.1/favorites/destroy.json";

pub static UNFAV: Command = Command {
    keyword: "unfav",
    params: 1,
    exec: unfav
};

fn unfav(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    // TODO handle this unwrap
//    let inner_twid = u64::from_str(&line).unwrap();
    let maybe_id = TweetId::parse(line.to_owned());
    match maybe_id {
        Some(twid) => {
            let twete = tweeter.retrieve_tweet(&twid).unwrap();
            queryer.do_api_post(&format!("{}?id={}", UNFAV_TWEET_URL, twete.id));
        }
        None => {
            println!("Invalid id: {}", line);
        }
    }
}

pub static FAV: Command = Command {
    keyword: "fav",
    params: 1,
    exec: fav
};

fn fav(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    // TODO handle this unwrap
    let maybe_id = TweetId::parse(line.to_owned());
    match maybe_id {
        Some(twid) => {
            let twete = tweeter.retrieve_tweet(&twid).unwrap();
            queryer.do_api_post(&format!("{}?id={}", FAV_TWEET_URL, twete.id));
        }
        None => {
            println!("Invalid id: {}", line);
        }
    }
}