sending http requests instant now.
[citadel.git] / citadel / modules / extnotify / extnotify.h
1 /* 
2  * File:   extnotify.h
3  * Author: Mathew McBride <matt@mcbridematt.dhs.org> / <matt@comalies>
4  * Copyright (c) 2008-2009
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "../eventclient/serv_curl.h"
22
23 #define FUNAMBOL_CONFIG_TEXT "funambol"
24 #define PAGER_CONFIG_MESSAGE "__ Push email settings __"
25 #define PAGER_CONFIG_SYSTEM  "textmessage"    
26 #define PAGER_CONFIG_HTTP  "httpmessage"    
27
28 #define FUNAMBOL_WS "/funambol/services/admin"
29
30 typedef struct _NotifyContext {
31         StrBuf **NotifyHostList;
32         HashList *NotifyErrors;
33         evcurl_request_data HTTPData;
34 } NotifyContext;
35
36 int notify_http_server(char *remoteurl, 
37                        const char* template, 
38                        long tlen, 
39                        char *user,
40                        char *msgid, 
41                        long MsgNum, 
42                        NotifyContext *Ctx);
43
44 void ExtNotify_PutErrorMessage(NotifyContext *Ctx, StrBuf *ErrMsg);
45
46 void extNotify_getPrefs(long configMsgNum, char *configMsg);
47 long extNotify_getConfigMessage(char *username);
48 void process_notify(long msgnum, void *usrdata);
49
50
51