source: protocols/twitter/twitter.h @ 90fc864

Last change on this file since 90fc864 was 90fc864, checked in by Wilmer van der Gaast <wilmer@…>, at 2011-11-24T08:18:04Z

Hopefully this fixed #838. Patch from Artem Savkov, thanks! The problem was
HTTP failures caused by (most likely) DNS resolution problems. Yes, ignoring
return values is still bad, kids!

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[1b221e0]1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Simple module to facilitate twitter functionality.                       *
5*                                                                           *
6*  Copyright 2009 Geert Mulders <g.c.w.m.mulders@gmail.com>                 *
7*                                                                           *
8*  This library is free software; you can redistribute it and/or            *
9*  modify it under the terms of the GNU Lesser General Public               *
10*  License as published by the Free Software Foundation, version            *
11*  2.1.                                                                     *
12*                                                                           *
13*  This library is distributed in the hope that it will be useful,          *
14*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
15*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU        *
16*  Lesser General Public License for more details.                          *
17*                                                                           *
18*  You should have received a copy of the GNU Lesser General Public License *
19*  along with this library; if not, write to the Free Software Foundation,  *
20*  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA           *
21*                                                                           *
22****************************************************************************/
23
24#include "nogaim.h"
25
26#ifndef _TWITTER_H
27#define _TWITTER_H
28
29#ifdef DEBUG_TWITTER
30#define debug( text... ) imcb_log( ic, text );
31#else
32#define debug( text... )
33#endif
34
[d6aa6dd]35typedef enum
36{
37        TWITTER_HAVE_FRIENDS = 1,
[2322a9f]38        TWITTER_DOING_TIMELINE = 0x10000,
39        TWITTER_GOT_TIMELINE = 0x20000,
40        TWITTER_GOT_MENTIONS = 0x40000,
[d6aa6dd]41} twitter_flags_t;
42
[ce81acd]43struct twitter_log_data;
44
[1b221e0]45struct twitter_data
46{
47        char* user;
[c42e8b9]48        struct oauth_info *oauth_info;
[2322a9f]49
50        gpointer home_timeline_obj;
51        gpointer mentions_obj;
52
53        guint64 timeline_id;
54
[de923d5]55        GSList *follow_ids;
56       
[7b87539]57        guint64 last_status_id; /* For undo */
[2abceca]58        gint main_loop_id;
[2322a9f]59        struct groupchat *timeline_gc;
[3bd4a93]60        gint http_fails;
[d6aa6dd]61        twitter_flags_t flags;
[bb5ce4d1]62       
[de923d5]63        /* set base_url */
[bb5ce4d1]64        gboolean url_ssl;
65        int url_port;
66        char *url_host;
67        char *url_path;
[ffcdf13]68
69        char *prefix; /* Used to generate contact + channel name. */
[ce81acd]70       
[de923d5]71        /* set show_ids */
[ce81acd]72        struct twitter_log_data *log;
73        int log_id;
[1b221e0]74};
75
[203a2d2]76struct twitter_user_data
77{
78        guint64 last_id;
79        time_t last_time;
80};
81
[ce81acd]82#define TWITTER_LOG_LENGTH 100
83struct twitter_log_data
84{
85        guint64 id;
[4f50ea5]86        struct bee_user *bu; /* DANGER: can be a dead pointer. Check it first. */
[ce81acd]87};
88
[62d2cfb]89/**
90 * This has the same function as the msn_connections GSList. We use this to
91 * make sure the connection is still alive in callbacks before we do anything
92 * else.
93 */
[9c9a29c]94extern GSList *twitter_connections;
[62d2cfb]95
[d6aa6dd]96void twitter_login_finish( struct im_connection *ic );
97
[6eca2eb]98struct http_request;
99char *twitter_parse_error( struct http_request *req );
100
[1b221e0]101#endif //_TWITTER_H
Note: See TracBrowser for help on using the repository browser.