summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-admin.c
diff options
context:
space:
mode:
authorGravatar snowdrop2006-03-27 12:12:53 +0000
committerGravatar snowdrop2006-03-27 12:12:53 +0000
commita56fa8644e888b63fbe8f97b2c356ce39bd47ee7 (patch)
tree37345dff0a188eaecbf0dd204f6c5e012dc064dc /libcsoap/soap-admin.c
parent7698fef4e1c9f09e06ccaa0bfd1b07bcc0a89425 (diff)
downloadcsoap-a56fa8644e888b63fbe8f97b2c356ce39bd47ee7.tar.gz
csoap-a56fa8644e888b63fbe8f97b2c356ce39bd47ee7.tar.bz2
initial import
Diffstat (limited to 'libcsoap/soap-admin.c')
-rw-r--r--libcsoap/soap-admin.c114
1 files changed, 114 insertions, 0 deletions
diff --git a/libcsoap/soap-admin.c b/libcsoap/soap-admin.c
new file mode 100644
index 0000000..1ee9db5
--- /dev/null
+++ b/libcsoap/soap-admin.c
@@ -0,0 +1,114 @@
+
+
+#define SOAP_ADMIN_QUERY_ROUTERS "routers"
+#define SOAP_ADMIN_QUERY_ROUTER "router"
+#define SOAP_ADMIN_QUERY_SERVICES "services"
+
+
+static void
+_soap_admin_send_title(httpd_conn_t* conn, const char* title)
+{
+ httpd_send_header(conn, 200, "OK");
+ http_output_stream_write_string(conn->out,
+ "<html><head><style>");
+ http_output_stream_write_string(conn->out,
+ ".logo {"
+ " color: #005177;"
+ " background-color: transparent;"
+ " font-family: Calligraphic, arial, sans-serif;"
+ " font-size: 36px;"
+ "}");
+ http_output_stream_write_string(conn->out,
+ "</style></head><body><span class=\"logo\">csoap</span> ");
+ http_output_stream_write_string(conn->out, title);
+ http_output_stream_write_string(conn->out, "<hr />");
+}
+
+
+static void
+_soap_admin_list_routers(httpd_conn_t* conn)
+{
+ SoapRouterNode *node;
+ char buffer[1024];
+
+ _soap_admin_send_title(conn, "Available routers");
+
+ for (node = head; node; node = node->next)
+ {
+ sprintf(buffer, "<li /> <a href=\"?" SOAP_ADMIN_QUERY_ROUTER "=%s\"> %s",
+ node->context, node->context);
+ http_output_stream_write_string(conn->out, buffer);
+ }
+
+ http_output_stream_write_string(conn->out, "</body></html>");
+}
+
+static void
+_soap_admin_list_services(httpd_conn_t* conn, const char* routername)
+{
+ SoapRouter *router;
+ SoapServiceNode *node;
+ char buffer[1024];
+
+ sprintf(buffer, "Listing Services for Router <b>%s</b>", routername);
+ _soap_admin_send_title(conn, buffer);
+
+ router = router_find(routername);
+ if (!router) {
+ http_output_stream_write_string(conn->out, "Router not found!");
+ http_output_stream_write_string(conn->out, "</body></html>");
+ return;
+ }
+
+ node = router->service_head;
+
+ while (node) {
+ sprintf(buffer, "<li /> [%s] (%s)",
+ node->service->urn,
+ node->service->method);
+ http_output_stream_write_string(conn->out, buffer);
+ node = node->next;
+ }
+
+ http_output_stream_write_string(conn->out, "</body></html>");
+}
+
+
+
+static void
+_soap_admin_handle_get(httpd_conn_t * conn, hrequest_t * req)
+{
+ char *param;
+
+ if ((param = hpairnode_get_ignore_case(req->query, SOAP_ADMIN_QUERY_ROUTERS))) {
+ _soap_admin_list_routers(conn);
+ } else if ((param = hpairnode_get_ignore_case(req->query, SOAP_ADMIN_QUERY_ROUTER))) {
+ _soap_admin_list_services(conn, param);
+ } else {
+ _soap_admin_send_title(conn, "Welcome to the admin site");
+ http_output_stream_write_string(conn->out,
+ "<li /> <a href=\"?" SOAP_ADMIN_QUERY_ROUTERS "\"> Routers </a>");
+ http_output_stream_write_string(conn->out,
+ "</body></html>");
+ }
+}
+
+static void
+_soap_admin_entry(httpd_conn_t * conn, hrequest_t * req)
+{
+ if (req->method == HTTP_REQUEST_GET) {
+ _soap_admin_handle_get(conn, req);
+ } else {
+ httpd_send_header(conn, 200, "OK");
+ http_output_stream_write_string(conn->out,
+ "<html>"
+ "<head>"
+ "</head>"
+ "<body>"
+ "<h1>Sorry!</h1>"
+ "<hr />"
+ "<div>POST Service is not implemented now. Use your browser</div>"
+ "</body>"
+ "</html>");
+ }
+}