aboutsummaryrefslogtreecommitdiff
path: root/src/commands/twete.rs
blob: d727b9e947c081244daf0fc2b628e22e9e74f8a9 (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
use display::DisplayInfo;
use tw;
use ::Queryer;

use tw::TweetId;

use commands::Command;

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,
    param_str: " <tweet_id>",
    help_str: "Delete tweet <tweet_id>"
};

fn del(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    match TweetId::parse(line.clone()) {
        Ok(twid) => {
            // TODO this really converts twid to a TweetId::Twitter
            if let Some(twitter_id) = tweeter.retrieve_tweet(&twid).map(|x| x.id.to_owned()) {
                let result = match tweeter.current_profile() {
                    Some(user_profile) => queryer.do_api_post(&format!("{}/{}.json", DEL_TWEET_URL, twitter_id), &tweeter.app_key, &user_profile.creds),
                    None => Err("No logged in user to delete as".to_owned())
                };
                match result {
                    Ok(_) => (),
                    Err(e) => display_info.status(e)
                }
            } else {
                display_info.status(format!("No tweet for id {:?}", twid));
            }
        },
        Err(e) => {
            display_info.status(format!("Invalid id: {:?} ({})", line, e));
        }
    }
}

pub static TWETE: Command = Command {
    keyword: "t",
    params: 0,
    exec: twete,
    param_str: "",
    help_str: "Enter tweet compose mode."
};

fn twete(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    // if there's text, send it.
    // if it's just "t", enter compose mode.
    let text = line.trim().to_owned();
    if text.len() == 0 {
        display_info.set_mode(Some(::display::DisplayMode::Compose(text)));
    } else {
        send_twete(text, tweeter, queryer, display_info);
    }
}

pub fn send_twete(text: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    let substituted = ::url_encode(&text);
    let result = match tweeter.current_profile() {
        Some(user_profile) => queryer.do_api_post(&format!("{}?status={}", CREATE_TWEET_URL, substituted), &tweeter.app_key, &user_profile.creds),
        None => Err("No logged in user to tweet as".to_owned())
    };
    match result {
        Ok(_) => (),
        Err(e) => display_info.status(e)
    }
}

pub static THREAD: Command = Command {
    keyword: "thread",
    params: 2,
    exec: thread,
    param_str: " <tweet_id> <response>", // should be optional..
    // TODO: make it actually do this..
    help_str: "Enter compose mode, appending to a thread"
};

// the difference between threading and replying is not including
// yourself in th @'s.
fn thread(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    let user_profile = match tweeter.current_profile().map(|profile| profile.to_owned()) {
        Some(profile) => profile,
        None => {
            display_info.status("To reply you must be authenticated as a user.".to_owned());
            return;
        }
    };
    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 {
            let maybe_id = TweetId::parse(id_str.to_owned());
            match maybe_id {
                Ok(twid) => {
                    if let Some(twete) = tweeter.retrieve_tweet(&twid).map(|x| x.clone()) { // TODO: no clone when this stops taking &mut self
                        let handle = &tweeter.retrieve_user(&twete.author_id).unwrap().handle.to_owned();
                        // TODO: definitely breaks if you change your handle right now
                        if handle == &user_profile.user.handle {
                            send_reply(reply.to_owned(), twid, tweeter, queryer, user_profile.creds, display_info);
                        } else {
                            display_info.status("you can only thread your own tweets".to_owned());
                            // ask if it should .@ instead?
                        }
                    }
                }
                Err(e) => {
                    display_info.status(format!("Invalid id: {}", e));
                }
            }
        } else {
            display_info.status("thread <id> your sik reply".to_owned());
        }
    } else {
        display_info.status("thread <id> your sik reply".to_owned());
    }
}

pub static REP: Command = Command {
    keyword: "rep",
    params: 1,
    exec: rep,
    param_str: " <tweet_id>",
    // TODO: doc immediate reply mode
    help_str: "Enter compose mode to reply to <tweet_id>"
};

fn rep(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    let user_profile = match tweeter.current_profile().map(|profile| profile.to_owned()) {
        Some(profile) => profile,
        None => {
            display_info.status("To reply you must be authenticated as a user.".to_owned());
            return;
        }
    };
    let mut text: String = line.trim().to_string();
    let reply_bare = match text.find(" ") {
        None => "".to_owned(),
        Some(id_end_idx) => {
            text.split_off(id_end_idx + 1)
        }
    };
    let reply = reply_bare.trim();
    let id_str = text.trim();
    let maybe_id = TweetId::parse(id_str.to_owned());
    match maybe_id {
        Ok(twid) => {
            if let Some(twete) = tweeter.retrieve_tweet(&twid).map(|x| x.clone()) { // TODO: no clone when this stops taking &mut self
                // 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();
                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 you're directly replying to yourself, i trust you know what you're doing and
                // want to @ yourself again (this keeps self-replies from showing up on your
                // profile as threaded tweets, f.ex)
                if !(ats.len() > 0 && &ats[0] == &user_profile.user.handle) {
                    ats.remove_item(&user_profile.user.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);

                if reply.len() > 0 {
                    send_reply(full_reply, twid, tweeter, queryer, user_profile.creds, display_info);
                } else {
                    display_info.set_mode(Some(::display::DisplayMode::Reply(twid, full_reply)));
                }
            } else {
                display_info.status(format!("No tweet for id: {:?}", twid));
            }
        },
        Err(e) => {
            display_info.status(format!("Cannot parse input: {:?} ({})", id_str, e));
        }
    }
}

pub fn send_reply(text: String, twid: TweetId, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, user_creds: tw::Credential, display_info: &mut DisplayInfo) {
    if let Some(twete) = tweeter.retrieve_tweet(&twid).map(|x| x.clone()) { // TODO: no clone when this stops taking &mut self
        let substituted = ::url_encode(&text);
        let result = match tweeter.current_profile() {
            Some(user_profile) => {
                queryer.do_api_post(&format!("{}?status={}&in_reply_to_status_id={}", CREATE_TWEET_URL, substituted, twete.id), &tweeter.app_key, &user_creds)
            },
            None => Err("No logged in user to tweet as".to_owned())
        };
        match result {
            Ok(_) => (),
            Err(e) => display_info.status(e)
        }
    } else {
        display_info.status(format!("Tweet stopped existing: {:?}", twid));
    }
}

pub static QUOTE: Command = Command {
    keyword: "qt",
    params: 2,
    exec: quote,
    param_str: " <tweet_id> <text>",
    help_str: "Quote <tweet_id> with context <text>"
};

fn quote(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    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 {
            let maybe_id = TweetId::parse(id_str.to_owned());
            match maybe_id {
                Ok(twid) => {
                    if let Some(twete) = tweeter.retrieve_tweet(&twid).map(|x| x.clone()) { // TODO: no clone when this stops taking &mut self
                        let substituted = ::url_encode(reply);
                        let attachment_url = ::url_encode(
                            &format!(
                                "https://www.twitter.com/{}/status/{}",
                                tweeter.retrieve_user(&twete.author_id).unwrap().handle, // TODO: for now this is ok ish, if we got the tweet we have the author
                                twete.id
                            )
                        );
                        let result = match tweeter.current_profile() {
                            Some(user_profile) => {
                                queryer.do_api_post(
                                    &format!("{}?status={}&attachment_url={}",
                                             CREATE_TWEET_URL,
                                             substituted,
                                             attachment_url
                                    ),
                                    &tweeter.app_key,
                                    &user_profile.creds
                                )
                            },
                            None => Err("No logged in user to tweet as".to_owned())
                        };
                        match result {
                            Ok(_) => (),
                            Err(e) => display_info.status(e)
                        }
                    } else {
                        display_info.status(format!("No tweet found for id {:?}", twid));
                    }
                },
                Err(e) => {
                    display_info.status(format!("Invalid id: {:?}", id_str));
                }
            }
        } else {
            display_info.status("rep <id> your sik reply".to_owned());
        }
    } else {
        display_info.status("rep <id> your sik reply".to_owned());
    }
}

pub static RETWETE: Command = Command {
    keyword: "rt",
    params: 1,
    exec: retwete,
    param_str: " <tweet_id>",
    help_str: "Retweet <tweet_id>"
};

fn retwete(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer, display_info: &mut DisplayInfo) {
    match TweetId::parse(line.clone()) {
        Ok(twid) => {
            // TODO this really converts twid to a TweetId::Twitter
            if let Some(twitter_id) = tweeter.retrieve_tweet(&twid).map(|x| x.id.to_owned()) {
                let result = match tweeter.current_profile() {
                    Some(user_profile) => {
                        queryer.do_api_post(&format!("{}/{}.json", RT_TWEET_URL, twitter_id), &tweeter.app_key, &user_profile.creds)
                    },
                    None => Err("No logged in user to retweet as".to_owned())
                };
                match result {
                    Ok(_) => (),
                    Err(e) => display_info.status(e)
                }
            } else {
                display_info.status(format!("No tweet for id {:?}", twid));
            }
        },
        Err(e) => {
            display_info.status(format!("Invalid id: {:?}", line));
        }
    }
}