source: protocols/twitter/twitter.h @ dff0e0b

Last change on this file since dff0e0b was ddc2de5, checked in by Wilmer van der Gaast <wilmer@…>, at 2012-11-10T23:52:21Z

Very immature code for reading from the streaming API. It reads from a
fixed URL and tried to parse individual JSON objects. Not doing anything
useful with it.

  • Property mode set to 100644
File size: 3.1 KB
Line 
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
35typedef enum
36{
37        TWITTER_HAVE_FRIENDS = 1,
38        TWITTER_DOING_TIMELINE = 0x10000,
39        TWITTER_GOT_TIMELINE = 0x20000,
40        TWITTER_GOT_MENTIONS = 0x40000,
41} twitter_flags_t;
42
43struct twitter_log_data;
44
45struct twitter_data
46{
47        char* user;
48        struct oauth_info *oauth_info;
49
50        gpointer home_timeline_obj;
51        gpointer mentions_obj;
52
53        guint64 timeline_id;
54
55        GSList *follow_ids;
56       
57        guint64 last_status_id; /* For undo */
58        gint main_loop_id;
59        struct http_request *stream;
60        struct groupchat *timeline_gc;
61        gint http_fails;
62        twitter_flags_t flags;
63       
64        /* set base_url */
65        gboolean url_ssl;
66        int url_port;
67        char *url_host;
68        char *url_path;
69
70        char *prefix; /* Used to generate contact + channel name. */
71       
72        /* set show_ids */
73        struct twitter_log_data *log;
74        int log_id;
75};
76
77struct twitter_user_data
78{
79        guint64 last_id;
80        time_t last_time;
81};
82
83#define TWITTER_LOG_LENGTH 100
84struct twitter_log_data
85{
86        guint64 id;
87        struct bee_user *bu; /* DANGER: can be a dead pointer. Check it first. */
88};
89
90/**
91 * This has the same function as the msn_connections GSList. We use this to
92 * make sure the connection is still alive in callbacks before we do anything
93 * else.
94 */
95extern GSList *twitter_connections;
96
97void twitter_login_finish( struct im_connection *ic );
98
99struct http_request;
100char *twitter_parse_error( struct http_request *req );
101
102#endif //_TWITTER_H
Note: See TracBrowser for help on using the repository browser.