AFB = function(base, initialtoken){
if (typeof base != "object")
base = { base: base, token: initialtoken };
var initial = {
base: base.base || "api",
token: base.token || "hello",
host: base.host || window.location.host,
url: base.url || undefined
};
var urlws = initial.url || "ws://"+initial.host+"/"+initial.base;
/*********************************************/
/**** ****/
/**** AFB_context ****/
/**** ****/
/*********************************************/
var AFB_context;
{
var UUID = undefined;
var TOKEN = initial.token;
var context = function(token, uuid) {
this.token = token;
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long *//*
* Copyright (C) 2016 "IoT.bzh"
* Author: José Bollo <jose.bollo@iot.bzh>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define _GNU_SOURCE
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <poll.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/stat.h>
#include <microhttpd.h>
#include <systemd/sd-event.h>
#include "afb-method.h"
#include "afb-context.h"
#include "afb-hreq.h"
#include "afb-hsrv.h"
#include "afb-req-itf.h"
#include "verbose.h"
#include "afb-common.h"
#define JSON_CONTENT "application/json"
#define FORM_CONTENT MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA
struct hsrv_handler {
struct hsrv_handler *next;
const char *prefix;
size_t length;
int (*handler) (struct afb_hreq *, void *);
void *data;
int priority;
};
struct hsrv_alias {
const char *alias;
const char *directory;
size_t lendir;
int dirfd;
};
struct afb_hsrv {
unsigned refcount;
struct hsrv_handler *handlers;
struct MHD_Daemon *httpd;
sd_event_source *evsrc;
int in_run;
char *cache_to;
};
static int global_reqids = 0;
static void reply_error(struct MHD_Connection *connection, unsigned int status)
{
struct MHD_Response *response = MHD_create_response_from_buffer(0, NULL, MHD_RESPMEM_PERSISTENT);
MHD_queue_response(connection, status, response);
MHD_destroy_response(response);
}
static int postproc(void *cls,
enum MHD_ValueKind kind,
const char *key,
const char *filename,
const char *content_type,
const char *transfer_encoding,
const char *data,
uint64_t off,
size_t size)
{
struct afb_hreq *hreq = cls;
if (filename != NULL)
return afb_hreq_post_add_file(hreq, key, filename, data, size);
else
return afb_hreq_post_add(hreq, key, data, size);
}
static int access_handler(
void *cls,
struct MHD_Connection *connection,
const char *url,
const char *methodstr,
const char *version,
const char *upload_data,
size_t *upload_data_size,
void **recordreq)
{
int rc;
struct afb_hreq *hreq;
enum afb_method method;
struct afb_hsrv *hsrv;
struct hsrv_handler *iter;
const char *type;
hsrv = cls;
hreq = *recordreq;
if (hreq == NULL) {
/* get the method */
method = get_method(methodstr);
method &= afb_method_get | afb_method_post;
if (method == afb_method_none) {
reply_error(connection, MHD_HTTP_BAD_REQUEST);
return MHD_YES;
}
/* create the request */
hreq = calloc(1, sizeof *hreq);
if (hreq == NULL) {
reply_error(connection, MHD_HTTP_INTERNAL_SERVER_ERROR);
return MHD_YES;
}
/* init the request */
hreq->refcount = 1;
hreq->hsrv = hsrv;
hreq->cacheTimeout = hsrv->cache_to;
hreq->reqid = ++global_reqids;
hreq->scanned = 0;
hreq->suspended = 0;
hreq->replied = 0;
hreq->connection = connection;
hreq->method = method;
hreq->version = version;
hreq->tail = hreq->url = url;
hreq->lentail = hreq->lenurl = strlen(url);
*recordreq = hreq;
/* init the post processing */
if (method == afb_method_post) {
type = afb_hreq_get_header(hreq, MHD_HTTP_HEADER_CONTENT_TYPE);
if (type == NULL) {
/* an empty post, let's process it as a get */
hreq->method = afb_method_get;
} else if (strcasestr(type, FORM_CONTENT) != NULL) {
hreq->postform = MHD_create_post_processor (connection, 65500, postproc, hreq);
if (hreq->postform == NULL)
afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
return MHD_YES;
} else if (strcasestr(type, JSON_CONTENT) != NULL) {
return MHD_YES;
} else {
afb_hreq_reply_error(hreq, MHD_HTTP_UNSUPPORTED_MEDIA_TYPE);
return MHD_YES;
}
}
}
/* process further data */
if (*upload_data_size) {
if (hreq->postform != NULL) {
if (!MHD_post_process (hreq->postform, upload_data, *upload_data_size)) {
afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
return MHD_YES;
}
} else {
if (!afb_hreq_post_add(hreq, "", upload_data, *upload_data_size)) {
afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
return MHD_YES;
}
}
*upload_data_size = 0;
return MHD_YES;
}
/* flush the data */
if (hreq->postform != NULL) {
rc = MHD_destroy_post_processor(hreq->postform);
hreq->postform = NULL;
if (rc == MHD_NO) {
afb_hreq_reply_error(hreq, MHD_HTTP_BAD_REQUEST);
return MHD_YES;
}
}
if (hreq->scanned != 0) {
if (hreq->replied == 0 && hreq->suspended == 0) {
MHD_suspend_connection (connection);
hreq->suspended = 1;
}
return MHD_YES;
}
/* search an handler for the request */
hreq->scanned = 1;
iter = hsrv->handlers;
while (iter) {
if (afb_hreq_unprefix(hreq, iter->prefix, iter->length)) {
if (iter->handler(hreq, iter->data)) {
if (hreq->replied == 0 && hreq->suspended == 0) {
MHD_suspend_connection (connection);
hreq->suspended = 1;
}
return MHD_YES;
}
hreq->tail = hreq->url;
hreq->lentail = hreq->lenurl;
}
iter = iter->next;
}
/* no handler */
afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND);
return MHD_YES;
}
/* Because of POST call multiple time requestApi we need to free POST handle here */
static void end_handler(void *cls, struct MHD_Connection *connection, void **recordreq,
enum MHD_RequestTerminationCode toe)
{
struct afb_hreq *hreq;
hreq = *recordreq;
if (hreq->upgrade)
MHD_suspend_connection (connection);
afb_hreq_unref(hreq);
}
void run_micro_httpd(struct afb_hsrv *hsrv)
{
if (hsrv->in_run != 0)
hsrv->in_run = 2;
else {
sd_event_source_set_io_events(hsrv->evsrc, 0);
do {
hsrv->in_run = 1;
MHD_run(hsrv->httpd);
} while(hsrv->in_run == 2);
hsrv->in_run = 0;
sd_event_source_set_io_events(hsrv->evsrc, EPOLLIN);
}
}
static int io_event_callback(sd_event_source *src, int fd, uint32_t revents, void *hsrv)
{
run_micro_httpd(hsrv);
return 0;
}
static int new_client_handler(void *cls, const struct sockaddr *addr, socklen_t addrlen)
{
return MHD_YES;
}
static struct hsrv_handler *new_handler(
struct hsrv_handler *head,
const char *prefix,
int (*handler) (struct afb_hreq *, void *),
void *data,
int priority)
{
struct hsrv_handler *link, *iter, *previous;
size_t length;
/* get the length of the prefix without its leading / */
length = strlen(prefix);
while (length && prefix[length - 1] == '/')
length--;
/* allocates the new link */
link = malloc(sizeof *link);
if (link == NULL)
return NULL;
/* initialize it */
link->prefix = prefix;
link->length = length;
link->handler = handler;
link->data = data;
link->priority = priority;
/* adds it */
previous = NULL;
iter = head;
while (iter && (priority < iter->priority || (priority == iter->priority && length <= iter->length))) {
previous = iter;
iter = iter->next;
}
link->next = iter;
if (previous == NULL)
return link;
previous->next = link;
return head;
}
static int handle_alias(struct afb_hreq *hreq, void *data)
{
struct hsrv_alias *da = data;
if (hreq->method != afb_method_get) {
afb_hreq_reply_error(hreq, MHD_HTTP_METHOD_NOT_ALLOWED);
return 1;
}
if (!afb_hreq_valid_tail(hreq)) {
afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
return 1;
}
return afb_hreq_reply_file(hreq, da->dirfd, &hreq->tail[1]);
}
int afb_hsrv_add_handler(
struct afb_hsrv *hsrv,
const char *prefix,
int (*handler) (struct afb_hreq *, void *),
void *data,
int priority)
{
struct hsrv_handler *head;
head = new_handler(hsrv->handlers, prefix, handler, data, priority);
if (head == NULL)
return 0;
hsrv->handlers = head;
return 1;
}
int afb_hsrv_add_alias(struct afb_hsrv *hsrv, const char *prefix, const char *alias, int priority)
{
struct hsrv_alias *da;
int dirfd;
dirfd = open(alias, O_PATH|O_DIRECTORY);
if (dirfd < 0) {
/* TODO message */
return 0;
}
da = malloc(sizeof *da);
if (da != NULL) {
da->alias = prefix;
da->directory = alias;
da->lendir = strlen(da->directory);
da->dirfd = dirfd;
if (afb_hsrv_add_handler(hsrv, prefix, handle_alias, da, priority))
return 1;
free(da);
}
close(dirfd);
return 0;
}
int afb_hsrv_set_cache_timeout(struct afb_hsrv *hsrv, int duration)
{
int rc;
char *dur;
rc = asprintf(&dur, "%d", duration);
if (rc < 0)
return 0;
free(hsrv->cache_to);
hsrv->cache_to = dur;
return 1;
}
int afb_hsrv_start(struct afb_hsrv *hsrv, uint16_t port, unsigned int connection_timeout)
{
sd_event_source *evsrc;
int rc;
struct MHD_Daemon *httpd;
const union MHD_DaemonInfo *info;
httpd = MHD_start_daemon(
MHD_USE_EPOLL_LINUX_ONLY | MHD_USE_TCP_FASTOPEN | MHD_USE_DEBUG | MHD_USE_SUSPEND_RESUME,
port, /* port */
new_client_handler, NULL, /* Tcp Accept call back + extra attribute */
access_handler, hsrv, /* Http Request Call back + extra attribute */
MHD_OPTION_NOTIFY_COMPLETED, end_handler, hsrv,
MHD_OPTION_CONNECTION_TIMEOUT, connection_timeout,
MHD_OPTION_END); /* options-end */
if (httpd == NULL) {
ERROR("httpStart invalid httpd port: %d", (int)port);
return 0;
}
info = MHD_get_daemon_info(httpd, MHD_DAEMON_INFO_EPOLL_FD_LINUX_ONLY);
if (info == NULL) {
MHD_stop_daemon(httpd);
ERROR("httpStart no pollfd");
return 0;
}
rc = sd_event_add_io(afb_common_get_event_loop(), &evsrc, info->listen_fd, EPOLLIN, io_event_callback, hsrv);
if (rc < 0) {
MHD_stop_daemon(httpd);
errno = -rc;
ERROR("connection to events for httpd failed");
return 0;
}
hsrv->httpd = httpd;
hsrv->evsrc = evsrc;
return 1;
}
void afb_hsrv_stop(struct afb_hsrv *hsrv)
{
if (hsrv->evsrc != NULL) {
sd_event_source_unref(hsrv->evsrc);
hsrv->evsrc = NULL;
}
if (hsrv->httpd != NULL)
MHD_stop_daemon(hsrv->httpd);
hsrv->httpd = NULL;
}
struct afb_hsrv *afb_hsrv_create()
{
struct afb_hsrv *result = calloc(1, sizeof(struct afb_hsrv));
if (result != NULL)
result->refcount = 1;
return result;
}
void afb_hsrv_put(struct afb_hsrv *hsrv)
{
assert(hsrv->refcount != 0);
if (!--hsrv->refcount) {
afb_hsrv_stop(hsrv);
free(hsrv);
}
}