/****************************************************************** * $Id: soap-admin.c,v 1.7 2006/11/23 15:27:33 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Email: ayaz@jprogrammer.net ******************************************************************/ #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_STDIO_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #include #include #include #include #include #include #include "soap-env.h" #include "soap-service.h" #include "soap-router.h" #include "soap-server.h" #include "soap-admin.h" 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, "csoap "); http_output_stream_write_string(conn->out, title); http_output_stream_write_string(conn->out, "
"); return; } static void _soap_admin_list_routers(httpd_conn_t *conn) { SoapRouterNode *node; char buffer[1024]; _soap_admin_send_title(conn, "Available routers"); http_output_stream_write_string(conn->out, "
    "); for (node = soap_server_get_routers(); node; node = node->next) { sprintf(buffer, "
  • %s - [Service Description] - [Statistics]
  • ", node->context, node->context, node->context, node->context); http_output_stream_write_string(conn->out, buffer); } http_output_stream_write_string(conn->out, "
"); http_output_stream_write_string(conn->out, ""); return; } static void _soap_admin_list_services(httpd_conn_t *conn, const char *routername) { struct SoapRouter *router; SoapServiceNode *node; char buffer[1024]; sprintf(buffer, "Listing Services for Router %s", routername); _soap_admin_send_title(conn, buffer); router = soap_server_find_router(routername); if (!router) { http_output_stream_write_string(conn->out, "Router not found!"); http_output_stream_write_string(conn->out, ""); return; } node = router->service_head; http_output_stream_write_string(conn->out, "
    "); while (node) { sprintf(buffer, "
  • [%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, "
"); http_output_stream_write_string(conn->out, ""); return; } static void _soap_admin_handle_get(httpd_conn_t * conn, struct 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, ""); http_output_stream_write_string(conn->out, ""); } return; } static void _soap_admin_entry(httpd_conn_t * conn, struct 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, "" "" "" "" "

Sorry!

" "
" "
POST Service is not implemented now. Use your browser
" "" ""); } return; } herror_t soap_admin_init_args(int argc, char **argv) { int i; for (i=0; i