summaryrefslogtreecommitdiff
path: root/include/HttpServ.h
blob: d4ef60c73d3f00cedfe18733afb4bcc438f9b7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef __HTTPSERV_H__
#define __HTTPSERV_H__
#ifdef __cplusplus

#include "Socket.h"
#include "String.h"
#include "Variables.h"
#include "Action.h"
#include "Exceptions.h"

/*
 * La classe HttpServ. Le constructueur (int, const String &) indique le port
 * et le nom du serveur à indiquer dans les entetes HTTP.
 *
 * Une fois lance, il suffit de lancer MainLoop en indiquant le menu principal,
 * qui est obligatoirement statique et doit posseder l'url /bin/start.
 */

class HttpServ : public Base {
  public:
      HttpServ(int = 1500, const String & = String("GruiK Server v0.1"));
      ~HttpServ() {}
      void MainLoop(Action *);
  private:
    String GetMime(const String &);
    void ProcessRequest(Action *, Socket);
    bool ParseUri(String &, String &, Socket &);
    void ParseVars(Socket &, int);
    void ShowError(Socket &);
    void SendHeads(Socket &, const String &);
    void SendRedirect(Socket &);
    String name;
    Socket Listener;
    Variables * Vars;
    int localport;
    bool bad;
};

extern String endhl, endnl;

#else
#error This only works with a C++ compiler
#endif
#endif