forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.cpp
More file actions
67 lines (62 loc) · 1.7 KB
/
hello.cpp
File metadata and controls
67 lines (62 loc) · 1.7 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <cppcms/application.h>
#include <cppcms/applications_pool.h>
#include <cppcms/service.h>
#include <cppcms/http_response.h>
#include <cppcms/url_dispatcher.h>
#include <cppcms/session_interface.h>
#include <iostream>
#include "content.h"
using namespace std;
class hello: public cppcms::application {
public:
hello(cppcms::service &s) :
cppcms::application(s)
{
}
void main(std::string /* unused */)
{
content::message c;
if(request().request_method()=="POST") {
c.info.load(context());
if(c.info.validate()) {
session()["name"]=c.info.name.value();
session()["sex"]=c.info.sex.selected_id();
session()["state"]=c.info.martial.selected_id();
session().set("age",c.info.age.value());
c.info.clear();
}
}
if(session().is_set("name")) {
c.name=session()["name"];
if(session()["sex"]=="m") {
c.who="Mr";
}
else {
if(session()["state"]=="s") {
c.who="Miss";
}
else {
c.who="Mrs";
}
}
c.age=session().get<double>("age");
}
else {
c.name="Visitor";
c.age=-1;
}
render("message",c);
}
};
int main(int argc,char ** argv)
{
try {
cppcms::service app(argc,argv);
app.applications_pool().mount(cppcms::applications_factory<hello>());
app.run();
}
catch(std::exception const &e) {
cerr<<e.what()<<endl;
}
}
// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4