aboutsummaryrefslogtreecommitdiff
path: root/src/commands/twete.rs
blob: 9f5cb0d5f5c2026d0bced156581636d24628c348 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
use tw;
use ::Queryer;

use tw::TweetId;

use commands::Command;

use std::str::FromStr;

static DEL_TWEET_URL: &str = "https://api.twitter.com/1.1/statuses/destroy";
static RT_TWEET_URL: &str = "https://api.twitter.com/1.1/statuses/retweet";
static CREATE_TWEET_URL: &str = "https://api.twitter.com/1.1/statuses/update.json";

pub static DEL: Command = Command {
    keyword: "del",
    params: 1,
    exec: del
};

fn del(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let inner_twid = u64::from_str(&line).unwrap();
    let twete = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)).unwrap();
    queryer.do_api_post(&format!("{}/{}.json", DEL_TWEET_URL, twete.id));
}

pub static TWETE: Command = Command {
    keyword: "t",
    params: 1,
    exec: twete
};

fn twete(line: String, _tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let text = line.trim();
    let substituted = ::url_encode(text);
    println!("msg len: {}", text.len());
    println!("excessively long? {}", text.len() > 140);
    if text.len() > 140 {
        queryer.do_api_post(&format!("{}?status={}", CREATE_TWEET_URL, substituted));
    } else {
        queryer.do_api_post(&format!("{}?status={}&weighted_character_count=true", CREATE_TWEET_URL, substituted));
    }
//        println!("{}", &format!("{}?status={}", CREATE_TWEET_URL, substituted));
}

pub static THREAD: Command = Command {
    keyword: "thread",
    params: 2,
    exec: thread
};

fn thread(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let mut text: String = line.trim().to_string();
    if let Some(id_end_idx) = text.find(" ") {
        let reply_bare = text.split_off(id_end_idx + 1);
        let reply = reply_bare.trim();
        let id_str = text.trim();
        if reply.len() > 0 {
            if let Some(inner_twid) = u64::from_str(&id_str).ok() {
                if let Some(twete) = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)).map(|x| x.clone()) {
                    let handle = &tweeter.retrieve_user(&twete.author_id).unwrap().handle;
                    // TODO: definitely breaks if you change your handle right now
                    if handle == &tweeter.current_user.handle {
                        let substituted = ::url_encode(reply);
                        queryer.do_api_post(&format!("{}?status={}&in_reply_to_status_id={}", CREATE_TWEET_URL, substituted, twete.id));
                    } else {
                        println!("you can only thread your own tweets");
                        // ask if it should .@ instead?
                    }
                    let substituted = ::url_encode(reply);
                    queryer.do_api_post(&format!("{}?status={}&in_reply_to_status_id={}", CREATE_TWEET_URL, substituted, twete.id));
                }
            }
        } else {
            println!("thread <id> your sik reply");
        }
    } else {
        println!("thread <id> your sik reply");
    }
}

pub static REP: Command = Command {
    keyword: "rep",
    params: 2,
    exec: rep
};

fn rep(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let mut text: String = line.trim().to_string();
    if let Some(id_end_idx) = text.find(" ") {
        let reply_bare = text.split_off(id_end_idx + 1);
        let reply = reply_bare.trim();
        let id_str = text.trim();
        if reply.len() > 0 {
            if let Some(inner_twid) = u64::from_str(&id_str).ok() {
                // TODO: probably should just have Tweet impl Copy or something
                if let Some(twete) = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)).map(|x| x.clone()) {
                    // get handles to reply to...
                    let author_handle = tweeter.retrieve_user(&twete.author_id).unwrap().handle.to_owned();
                    let mut ats: Vec<String> = twete.get_mentions(); //std::collections::HashSet::new();
                    /*
                    for handle in twete.get_mentions() {
                        ats.insert(handle);
                    }
                    */
                    ats.remove_item(&author_handle);
                    ats.insert(0, author_handle);
                    if let Some(rt_tweet) = twete.rt_tweet.and_then(|id| tweeter.retrieve_tweet(&TweetId::Twitter(id))).map(|x| x.clone()) {
                        let rt_author_handle = tweeter.retrieve_user(&rt_tweet.author_id).unwrap().handle.to_owned();
                        ats.remove_item(&rt_author_handle);
                        ats.insert(1, rt_author_handle);
                    }
                    if let Some(qt_tweet) = twete.quoted_tweet_id.and_then(|id| tweeter.retrieve_tweet(&TweetId::Twitter(id))).map(|x| x.clone()) {
                    //    let qt_author_handle = tweeter.retrieve_user(&qt_tweet.author_id).unwrap().handle.to_owned();
                    //    ats.remove_item(&qt_author_handle);
                    //    ats.insert(1, qt_author_handle);
                    }
                    //let ats_vec: Vec<&str> = ats.into_iter().collect();
                    //let full_reply = format!("{} {}", ats_vec.join(" "), reply);
                    let decorated_ats: Vec<String> = ats.into_iter().map(|x| format!("@{}", x)).collect();
                    let full_reply = format!("{} {}", decorated_ats.join(" "), reply);
                    let substituted = ::url_encode(&full_reply);
//                        println!("{}", (&format!("{}?status={}&in_reply_to_status_id={}", CREATE_TWEET_URL, substituted, twete.id)));
                    queryer.do_api_post(&format!("{}?status={}&in_reply_to_status_id={}", CREATE_TWEET_URL, substituted, twete.id));
                }
            }
        } else {
            println!("rep <id> your sik reply");
        }
    } else {
        println!("rep <id> your sik reply");
    }
}

pub static QUOTE: Command = Command {
    keyword: "qt",
    params: 2,
    exec: quote
};

fn quote(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let mut text: String = line.trim().to_string();
    if let Some(id_end_idx) = text.find(" ") {
        let reply_bare = text.split_off(id_end_idx + 1);
        let reply = reply_bare.trim();
        let id_str = text.trim();
        if reply.len() > 0 {
            if let Some(inner_twid) = u64::from_str(&id_str).ok() {
                if let Some(twete) = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)).map(|x| x.clone()) {
                    let substituted = ::url_encode(reply);
                    let attachment_url = ::url_encode(
                        &format!(
                            "https://www.twitter.com/{}/status/{}",
                            tweeter.retrieve_user(&twete.author_id).unwrap().handle,
                            twete.id
                        )
                    );
                    println!("{}", substituted);
                    queryer.do_api_post(
                        &format!("{}?status={}&attachment_url={}",
                                 CREATE_TWEET_URL,
                                 substituted,
                                 attachment_url
                        )
                    );
                }
            }
        } else {
            println!("rep <id> your sik reply");
        }
    } else {
        println!("rep <id> your sik reply");
    }
}

pub static RETWETE: Command = Command {
    keyword: "rt",
    params: 1,
    exec: retwete
};

fn retwete(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
    let inner_twid = u64::from_str(&line).unwrap();
    let twete = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)).unwrap();
    queryer.do_api_post(&format!("{}/{}.json", RT_TWEET_URL, twete.id));
}