]> WPIA git - cassiopeia.git/blob - src/util.cpp
change to postgres with libpqxx
[cassiopeia.git] / src / util.cpp
1 #include "util.h"
2
3 #include <sys/stat.h>
4
5 #include <fstream>
6 #include <iostream>
7 #include <sstream>
8 #include <time.h>
9 #include <stdexcept>
10
11 void writeFile( const std::string& name, const std::string& content ) {
12     std::ofstream file( name );
13     file << content;
14
15     //! \FIXME: Error checking
16 }
17
18 std::string readFile( const std::string& name ) {
19     std::ifstream t( name );
20     std::string res = std::string( std::istreambuf_iterator<char>( t ), std::istreambuf_iterator<char>() );
21
22     return res;
23 }
24
25 std::string writeBackFile( const std::string& serial, const std::string& cert, const std::string& keydir ) {
26     errno = 0;
27
28     std::string filename = keydir;
29
30     if( 0 != mkdir( filename.c_str(), 0755 ) ) {
31         if( EEXIST != errno ) {
32             return "";
33         }
34
35         //! \FIXME: Check this is a directory
36     }
37
38     filename += "/crt";
39
40     if( 0 != mkdir( filename.c_str(), 0755 ) ) {
41         if( EEXIST != errno ) {
42             return "";
43         }
44
45         //! \FIXME: Check this is a directory
46     }
47
48     std::string first;
49
50     if( serial.length() < 3 ) {
51         first = "0";
52     } else {
53         first = serial.substr( 0, serial.length() - 3 );
54     }
55
56     filename += "/" + first;
57
58     if( 0 != mkdir( filename.c_str(), 0755 ) ) {
59         if( EEXIST != errno ) {
60             return "";
61         }
62
63         //! \FIXME: Check this is a directory
64     }
65
66     filename += "/" + serial + ".crt";
67     writeFile( filename, cert );
68
69     return filename;
70 }
71
72 bool isDigit( char c ) {
73     return ( c >= '0' ) && ( c <= '9' );
74 }
75
76 std::pair<bool, time_t> parseDate( const std::string& date ) {
77     if( date.size() != 10 || date[4] != '-' || date[7] != '-' ) {
78         return std::pair<bool, time_t>( false, 0 );
79     }
80
81     if( !isDigit( date[0] )
82             || !isDigit( date[1] )
83             || !isDigit( date[2] )
84             || !isDigit( date[3] )
85             || !isDigit( date[5] )
86             || !isDigit( date[6] )
87             || !isDigit( date[8] )
88             || !isDigit( date[9] ) ) {
89         return std::pair<bool, time_t>( false, 0 );
90     }
91
92     std::tm t;
93     t.tm_sec = 0;
94     t.tm_min = 0;
95     t.tm_hour = 0;
96     t.tm_year = std::stoi( date.substr( 0, 4 ) ) - 1900;
97     t.tm_mon = std::stoi( date.substr( 5, 2 ) ) - 1;
98     t.tm_mday = std::stoi( date.substr( 8, 2 ) );
99     setenv( "TZ", "UTC", 1 );
100     tzset();
101     std::time_t res = mktime( &t );
102     char check[11];
103     std::size_t siz = strftime( check, 11, "%Y-%m-%d", &t );
104
105     if( siz != 10 ) {
106         return std::pair<bool, time_t>( false, 0 ); // NO-COVERAGE (by contract of strftime)
107     }
108
109     std::string checkS( check, siz );
110
111     if( checkS != date ) {
112         return { false, 0 };
113     }
114
115     return std::pair<bool, time_t>( true, res );
116 }
117
118 std::pair<bool, time_t> addMonths( std::time_t t, int32_t count ) {
119     std::tm* parsed = gmtime( &t );
120
121     if( !parsed || count <= 0 || count > 24 ) { // FIXED MAX-Validity-Length
122         return std::pair<bool, time_t>( false, 0 );
123     }
124
125     parsed->tm_mon += count;
126     int oldday = parsed->tm_mday;
127     setenv( "TZ", "UTC", 1 );
128     tzset();
129     std::time_t res = mktime( parsed );
130
131     if( parsed->tm_mday != oldday ) {
132         parsed->tm_mday = 0;
133         res = mktime( parsed );
134     }
135
136     return std::pair<bool, time_t>( true, res );
137 }
138
139 std::pair<bool, time_t> parseMonthInterval( std::time_t t, const std::string& date ) {
140     if( date[date.size() - 1] != 'm' ) {
141         return  std::pair<bool, time_t>( false, 0 );
142     }
143
144     try {
145         size_t end = 0;
146         int num = std::stoi( date.substr( 0, date.size() - 1 ) , &end );
147
148         if( end != date.size() - 1 ) {
149             return  std::pair<bool, time_t>( false, 0 );
150         }
151
152         return addMonths( t, num );
153     } catch( const std::invalid_argument& a ) {
154         return std::pair<bool, time_t>( false, 0 );
155     } catch( const std::out_of_range& a ) {
156         return std::pair<bool, time_t>( false, 0 );
157     }
158 }
159
160 std::pair<bool, time_t> parseYearInterval( std::time_t t, const std::string& date ) {
161     if( date[date.size() - 1] != 'y' ) {
162         return  std::pair<bool, time_t>( false, 0 );
163     }
164
165     try {
166         size_t end = 0;
167         int num = std::stoi( date.substr( 0, date.size() - 1 ), &end );
168
169         if( end != date.size() - 1 ) {
170             return  std::pair<bool, time_t>( false, 0 );
171         }
172
173         return addMonths( t, num * 12 );
174     } catch( std::invalid_argument& a ) {
175         return std::pair<bool, time_t>( false, 0 );
176     } catch( std::out_of_range& a ) {
177         return std::pair<bool, time_t>( false, 0 );
178     }
179 }
180
181 std::unique_ptr<std::ofstream> openLogfile( const std::string &name ) {
182     struct stat buffer;
183     std::string tname = name;
184     int ctr = 2;
185
186     while( stat( tname.c_str(), &buffer ) == 0 ) {
187         tname = name + "_" + std::to_string( ctr++ );
188     }
189
190     auto res = std::make_unique<std::ofstream>( tname );
191
192     if( ! res->good() ) {
193         throw std::string( "Failed to open file for logging: " ) + name;
194     }
195
196     return res;
197 }
198
199 std::string timestamp(){
200     time_t c_time;
201     if( time( &c_time ) == -1 ) {
202         throw std::runtime_error( "Error while fetching time?" );
203     }
204     return std::to_string( c_time );
205 }