aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-05 06:38:39 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-05 06:38:39 +0000
commit6928c4450a8c321796a66f93de5f74d52819c427 (patch)
tree6f1f55f05cf072784de6ffa04a52204194ccfed1 /apps
parent47f9ebb6028f583c15106b3bf685a6b6184d5267 (diff)
Allow post data, too (bug #3151)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4673 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_curl.c24
1 files changed, 20 insertions, 4 deletions
diff --git a/apps/app_curl.c b/apps/app_curl.c
index 6d47da444..2dd7c6e6b 100755
--- a/apps/app_curl.c
+++ b/apps/app_curl.c
@@ -6,6 +6,7 @@
* Copyright (C) 2004, Tilghman Lesher
*
* Tilghman Lesher <curl-20041222@the-tilghman.com>
+ * and Brian Wilkins <bwilkins@cfl.rr.com> (Added POST option)
*
* app_curl.c is distributed with no restrictions on usage or
* redistribution.
@@ -30,9 +31,10 @@ static char *app = "Curl";
static char *synopsis = "Load an external URL";
static char *descrip =
-" Curl(URL): Requests the URL. Mainly used for signalling external\n"
-"applications of an event. Returns 0 or -1 on fatal error. Also sets\n"
-"CURL variable with the resulting page.\n";
+" Curl(URL[|postdata]): Requests the URL. Mainly used for signalling\n"
+"external applications of an event. Returns 0 or -1 on fatal error.\n"
+"Argument specified treated as POST data. Also sets CURL variable with the\n"
+"resulting page.\n";
STANDARD_LOCAL_USER;
@@ -74,12 +76,21 @@ static int curl_exec(struct ast_channel *chan, void *data)
int res = 0;
struct localuser *u;
CURL *curl;
+ char *info, *post_data=NULL, *url;
if (!data || !strlen((char *)data)) {
ast_log(LOG_WARNING, "Curl requires an argument (URL)\n");
return -1;
}
+ if ((info = ast_strdupa((char *)data))) {
+ url = strsep(&info, "|");
+ post_data = info;
+ } else {
+ ast_log(LOG_ERROR, "Out of memory\n");
+ return -1;
+ }
+
LOCAL_USER_ADD(u);
curl_global_init(CURL_GLOBAL_ALL);
@@ -91,11 +102,16 @@ static int curl_exec(struct ast_channel *chan, void *data)
chunk.memory=NULL; /* we expect realloc(NULL, size) to work */
chunk.size = 0; /* no data at this point */
- curl_easy_setopt(curl, CURLOPT_URL, (char *)data);
+ curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&chunk);
curl_easy_setopt(curl, CURLOPT_USERAGENT, "asterisk-libcurl-agent/1.0");
+ if (post_data) {
+ curl_easy_setopt(curl, CURLOPT_POST, 1);
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post_data);
+ }
+
curl_easy_perform(curl);
curl_easy_cleanup(curl);