]> git.mxchange.org Git - simgear.git/blob - simgear/io/HTTPFileRequest.cxx
Security: fix 0777 directory permissions to 0755.
[simgear.git] / simgear / io / HTTPFileRequest.cxx
1 // HTTP request writing response to a file.
2 //
3 // Copyright (C) 2013  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "HTTPFileRequest.hxx"
20 #include <simgear/debug/logstream.hxx>
21 #include <simgear/misc/sg_path.hxx>
22
23 namespace simgear
24 {
25 namespace HTTP
26 {
27
28   //----------------------------------------------------------------------------
29   FileRequest::FileRequest(const std::string& url, const std::string& path):
30     Request(url, "GET"),
31     _filename(path)
32   {
33
34   }
35
36   //----------------------------------------------------------------------------
37   void FileRequest::responseHeadersComplete()
38   {
39     Request::responseHeadersComplete();
40
41     if( !_filename.empty() )
42     {
43       // TODO validate path? (would require to expose fgValidatePath somehow to
44       //      simgear)
45       SGPath path(_filename);
46       path.create_dir(0755);
47
48       _file.open(_filename.c_str(), std::ios::binary | std::ios::trunc);
49     }
50
51     if( !_file )
52     {
53       SG_LOG
54       (
55         SG_IO,
56         SG_WARN,
57         "HTTP::FileRequest: failed to open file '" << _filename << "'"
58       );
59
60       abort("Failed to open file.");
61     }
62   }
63
64   //----------------------------------------------------------------------------
65   void FileRequest::gotBodyData(const char* s, int n)
66   {
67     if( !_file )
68     {
69       SG_LOG
70       (
71         SG_IO,
72         SG_WARN,
73         "HTTP::FileRequest: error writing to '" << _filename << "'"
74       );
75       return;
76     }
77
78     _file.write(s, n);
79   }
80
81   //----------------------------------------------------------------------------
82   void FileRequest::onAlways()
83   {
84     _file.close();
85   }
86
87 } // namespace HTTP
88 } // namespace simgear