session_shared: shut down expire thread
[metaproxy-moved-to-github.git] / src / filter_http_file.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include <metaproxy/filter.hpp>
21 #include <metaproxy/package.hpp>
22 #include <metaproxy/util.hpp>
23 #include "filter_http_file.hpp"
24
25 #include <yaz/zgdu.h>
26 #include <yaz/log.h>
27
28 #include <boost/thread/mutex.hpp>
29
30 #include <list>
31 #include <map>
32 #include <iostream>
33
34 #if HAVE_SYS_TYPES_H
35 #include <sys/types.h>
36 #endif
37
38 #if HAVE_SYS_STAT_H
39 #include <sys/stat.h>
40 #endif
41
42 namespace mp = metaproxy_1;
43 namespace yf = mp::filter;
44
45 namespace metaproxy_1 {
46     namespace filter {
47         struct HttpFile::Area {
48             std::string m_url_path_prefix;
49             std::string m_file_root;
50             bool m_raw;
51             Area();
52         };
53         class HttpFile::Mime {
54             friend class Rep;
55             std::string m_type;
56         public:
57             Mime(std::string type);
58             Mime();
59         };
60         class HttpFile::Rep {
61             friend class HttpFile;
62
63             typedef std::list<Area> AreaList;
64             typedef std::map<std::string,Mime> MimeMap;
65
66             MimeMap m_ext_to_map;
67             AreaList m_area_list;
68             void fetch_uri(mp::Session &session,
69                            Z_HTTP_Request *req, mp::Package &package);
70             void fetch_file(mp::Session &session,
71                             Z_HTTP_Request *req,
72                             std::string &fname, mp::Package &package,
73                             bool raw);
74             std::string get_mime_type(std::string &fname);
75         };
76     }
77 }
78
79 yf::HttpFile::Area::Area() : m_raw(false)
80 {
81 }
82
83 yf::HttpFile::Mime::Mime() {}
84
85 yf::HttpFile::Mime::Mime(std::string type) : m_type(type) {}
86
87 yf::HttpFile::HttpFile() : m_p(new Rep)
88 {
89 #if 0
90     m_p->m_ext_to_map["html"] = Mime("text/html");
91     m_p->m_ext_to_map["htm"] = Mime("text/html");
92     m_p->m_ext_to_map["png"] = Mime("image/png");
93     m_p->m_ext_to_map["txt"] = Mime("text/plain");
94     m_p->m_ext_to_map["text"] = Mime("text/plain");
95     m_p->m_ext_to_map["asc"] = Mime("text/plain");
96     m_p->m_ext_to_map["xml"] = Mime("application/xml");
97     m_p->m_ext_to_map["xsl"] = Mime("application/xml");
98 #endif
99 #if 0
100     Area a;
101     a.m_url_path_prefix = "/etc";
102     a.m_file_root = ".";
103     m_p->m_area_list.push_back(a);
104 #endif
105 }
106
107 yf::HttpFile::~HttpFile()
108 {
109 }
110
111 std::string yf::HttpFile::Rep::get_mime_type(std::string &fname)
112 {
113     std::string file_part = fname;
114     std::string::size_type p = fname.find_last_of('/');
115
116     if (p != std::string::npos)
117         file_part = fname.substr(p+1);
118
119     p = file_part.find_last_of('.');
120     std::string content_type;
121     if (p != std::string::npos)
122     {
123         std::string ext = file_part.substr(p+1);
124         MimeMap::const_iterator it = m_ext_to_map.find(ext);
125
126         if (it != m_ext_to_map.end())
127             content_type = it->second.m_type;
128     }
129     if (content_type.length() == 0)
130         content_type = "application/octet-stream";
131     return content_type;
132 }
133
134 void yf::HttpFile::Rep::fetch_file(mp::Session &session,
135                                    Z_HTTP_Request *req,
136                                    std::string &fname, mp::Package &package,
137                                    bool raw)
138 {
139     mp::odr o(ODR_ENCODE);
140
141     FILE *f = fopen(fname.c_str(), "rb");
142     if (!f)
143     {
144         Z_GDU *gdu = o.create_HTTP_Response(session, req, 404);
145         package.response() = gdu;
146         return;
147     }
148     if (fseek(f, 0L, SEEK_END) == -1)
149     {
150         fclose(f);
151         Z_GDU *gdu = o.create_HTTP_Response(session, req, 404);
152         package.response() = gdu;
153         return;
154     }
155     long sz = ftell(f);
156     if (sz > 1000000L)
157     {
158         fclose(f);
159         Z_GDU *gdu = o.create_HTTP_Response(session, req, 404);
160         package.response() = gdu;
161         return;
162     }
163     rewind(f);
164     char *fbuf = (char*) odr_malloc(o, sz);
165     if (sz > 0)
166     {
167         if (fread(fbuf, sz, 1, f) != 1)
168         {
169             Z_GDU *gdu = o.create_HTTP_Response(session, req, 500);
170             package.response() = gdu;
171             fclose(f);
172             return;
173         }
174     }
175     fclose(f);
176
177     Z_GDU *gdu = 0;
178     mp::odr decode(ODR_DECODE);
179     if (raw)
180     {
181         odr_setbuf(decode, (char *) fbuf, sz, 0);
182         int r = z_GDU(decode, &gdu, 0, 0);
183         if (!r)
184         {
185             gdu = o.create_HTTP_Response(session, req, 500);
186         }
187     }
188     else
189     {
190         gdu = o.create_HTTP_Response(session, req, 200);
191         Z_HTTP_Response *hres = gdu->u.HTTP_Response;
192         hres->content_len = sz;
193         hres->content_buf = fbuf;
194         std::string content_type = get_mime_type(fname);
195         z_HTTP_header_add(o, &hres->headers,
196                       "Content-Type", content_type.c_str());
197     }
198     package.response() = gdu;
199 }
200
201 void yf::HttpFile::Rep::fetch_uri(mp::Session &session,
202                                   Z_HTTP_Request *req, mp::Package &package)
203 {
204     bool sane = true;
205     std::string::size_type p;
206     std::string path = req->path;
207
208     p = path.find("#");
209     if (p != std::string::npos)
210         path = path.erase(p);
211
212     p = path.find("?");
213     if (p != std::string::npos)
214         path = path.erase(p);
215
216     path = mp::util::uri_decode(path);
217
218     // we don't allow ..
219     p = path.find("..");
220     if (p != std::string::npos)
221         sane = false;
222
223     if (sane)
224     {
225         AreaList::const_iterator it;
226         for (it = m_area_list.begin(); it != m_area_list.end(); it++)
227         {
228             std::string::size_type l = it->m_url_path_prefix.length();
229
230             if (path.compare(0, l, it->m_url_path_prefix) == 0)
231             {
232                 std::string fname = it->m_file_root + path.substr(l);
233                 package.log("http_file", YLOG_LOG, "%s", fname.c_str());
234                 fetch_file(session, req, fname, package, it->m_raw);
235                 return;
236             }
237         }
238     }
239     package.move();
240 }
241
242 void yf::HttpFile::process(mp::Package &package) const
243 {
244     Z_GDU *gdu = package.request().get();
245     if (gdu && gdu->which == Z_GDU_HTTP_Request)
246         m_p->fetch_uri(package.session(), gdu->u.HTTP_Request, package);
247     else
248         package.move();
249 }
250
251 void mp::filter::HttpFile::configure(const xmlNode * ptr, bool test_only,
252                                      const char *path)
253 {
254     for (ptr = ptr->children; ptr; ptr = ptr->next)
255     {
256         if (ptr->type != XML_ELEMENT_NODE)
257             continue;
258         if (!strcmp((const char *) ptr->name, "mimetypes"))
259         {
260             std::string fname = mp::xml::get_text(ptr);
261
262             mp::PlainFile f;
263
264             if (!f.open(fname))
265             {
266                 throw mp::filter::FilterException
267                     ("Can not open mime types file " + fname);
268             }
269
270             std::vector<std::string> args;
271             while (f.getline(args))
272             {
273                 size_t i;
274                 for (i = 1; i<args.size(); i++)
275                     m_p->m_ext_to_map[args[i]] = args[0];
276             }
277         }
278         else if (!strcmp((const char *) ptr->name, "area"))
279         {
280             xmlNode *a_node = ptr->children;
281             Area a;
282
283             for (; a_node; a_node = a_node->next)
284             {
285                 if (a_node->type != XML_ELEMENT_NODE)
286                     continue;
287
288                 if (mp::xml::is_element_mp(a_node, "documentroot"))
289                     a.m_file_root = mp::xml::get_text(a_node);
290                 else if (mp::xml::is_element_mp(a_node, "prefix"))
291                     a.m_url_path_prefix = mp::xml::get_text(a_node);
292                 else if (mp::xml::is_element_mp(a_node, "raw"))
293                     a.m_raw = mp::xml::get_bool(a_node, false);
294                 else
295                     throw mp::filter::FilterException
296                         ("Bad element "
297                          + std::string((const char *) a_node->name)
298                          + " in area section"
299                             );
300             }
301             if (a.m_file_root.length())
302             {
303                 m_p->m_area_list.push_back(a);
304             }
305         }
306         else
307         {
308             throw mp::filter::FilterException
309                 ("Bad element "
310                  + std::string((const char *) ptr->name)
311                  + " in virt_db filter");
312         }
313     }
314 }
315
316 static mp::filter::Base* filter_creator()
317 {
318     return new mp::filter::HttpFile;
319 }
320
321 extern "C" {
322     struct metaproxy_1_filter_struct metaproxy_1_filter_http_file = {
323         0,
324         "http_file",
325         filter_creator
326     };
327 }
328
329
330 /*
331  * Local variables:
332  * c-basic-offset: 4
333  * c-file-style: "Stroustrup"
334  * indent-tabs-mode: nil
335  * End:
336  * vim: shiftwidth=4 tabstop=8 expandtab
337  */
338