X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftorus.cpp;h=e286adf7e58b518600a20037f4b9ff6af36aca69;hb=fee3c45cf4ce01083218e41622f54e5fced0fadf;hp=d6bcd03711e697f3c1adf8d7c0f6cb3aa272721d;hpb=298c3c20d481cfce45efa87c69dacdd34861cf05;p=metaproxy-moved-to-github.git diff --git a/src/torus.cpp b/src/torus.cpp index d6bcd03..e286adf 100644 --- a/src/torus.cpp +++ b/src/torus.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2011 Index Data + Copyright (C) 2005-2012 Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -27,14 +27,31 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA namespace mp = metaproxy_1; -xmlDoc *mp::get_searchable(std::string url_template, const std::string &db, +xmlDoc *mp::get_searchable(mp::Package &package, + std::string url_template, const std::string &db, + const std::string &query, const std::string &realm, const std::string &proxy) { - // http://newmk2.indexdata.com/torus2/searchable.ebsco/records/?query=udb=aberdeenUni + // http://mk2.indexdata.com/torus2/searchable/records/?query=udb%3d%db + // or + // http://mk2.indexdata.com/torus2/searchable/records/?query=%query xmlDoc *doc = 0; size_t found; + found = url_template.find("%query"); + if (found != std::string::npos) + url_template.replace(found, 6, mp::util::uri_encode(query)); + else + { + if (db.length() == 0) + { + package.log("zoom", YLOG_WARN, + "%query not defined in code == 200 && http_response->content_buf) + { + package.log("zoom", YLOG_LOG, "Torus: %s OK", url_template.c_str()); doc = xmlParseMemory(http_response->content_buf, http_response->content_len); + + } else - yaz_log(YLOG_WARN, "Could not fetch %s", url_template.c_str()); + { + package.log("zoom", YLOG_WARN, "Torus: %s FAIL", url_template.c_str()); + if (http_response) + { + package.log("zoom", YLOG_LOG, "HTTP code: %d", http_response->code); + } + } + + if (http_response && http_response->content_buf) + { + package.log("zoom", YLOG_LOG, "HTTP content"); + package.log_write(http_response->content_buf, + http_response->content_len); + } yaz_url_destroy(url_p); return doc; }