File: rest-sample-2.cpp

package info (click to toggle)
libzeep 7.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,372 kB
  • sloc: cpp: 17,430; javascript: 180; makefile: 12; sh: 11
file content (157 lines) | stat: -rw-r--r-- 3,547 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//         Copyright Maarten L. Hekkelman, 2022-2026
//  Distributed under the Boost Software License, Version 1.0.
//     (See accompanying file LICENSE_1_0.txt or copy at
//           http://www.boost.org/LICENSE_1_0.txt)

// In this example we don't want to use rsrc based templates
#undef WEBAPP_USES_RESOURCES
#define WEBAPP_USES_RESOURCES 0

#include <zeep/http/controller.hpp>
#include <zeep/http/html-controller.hpp>
#include <zeep/http/reply.hpp>
#include <zeep/http/server.hpp>
#include <zeep/http/template-processor.hpp>

#include <zeem/serialize.hpp>

#include <cstdint>
#include <exception>
#include <iostream>
#include <ranges>
#include <stdexcept>
#include <string>
#include <utility>
#include <vector>

//[ cart_items_2
struct Item
{
	std::string name;
	uint32_t count;

	template <typename Archive>
	void serialize(Archive &ar, uint64_t /*version*/)
	{
		// clang-format off
		ar & zeem::name_value_pair("name", name)
		   & zeem::name_value_pair("count", count);
		// clang-format on
	}
};

struct Cart
{
	int id;
	std::string client;
	std::vector<Item> items;

	template <typename Archive>
	void serialize(Archive &ar, uint64_t /*version*/)
	{
		// clang-format off
		ar & zeem::name_value_pair("id", id)
		   & zeem::name_value_pair("client", client)
		   & zeem::name_value_pair("items", items);
		// clang-format on
	}
};
//]

//[ shop_rest_controller_2
class shop_rest_controller : public zeep::http::controller
{
  public:
	shop_rest_controller()
		: zeep::http::controller("/cart")
	{
		// CRUD example interface

		map_post_request("", &shop_rest_controller::create_cart, "cart");
		map_get_request("{id}", &shop_rest_controller::retrieve_cart, "id");
		map_put_request("{id}", &shop_rest_controller::update_cart, "id", "cart");
		map_delete_request("{id}", &shop_rest_controller::delete_cart, "id");
	}

	int create_cart(Cart cart)
	{
		int result = cart.id = sNextCartID++;
		m_carts.push_back(std::move(cart));
		return result;
	}

	Cart &retrieve_cart(int cartID)
	{
		auto oi = std::ranges::find_if(m_carts, [&](auto &o)
			{ return o.id == cartID; });
		if (oi == m_carts.end())
			throw std::invalid_argument("No such cart");
		return *oi;
	}

	void update_cart(int cartID, const Cart &cart)
	{
		auto oi = std::ranges::find_if(m_carts, [&](auto &o)
			{ return o.id == cartID; });
		if (oi == m_carts.end())
			throw std::invalid_argument("No such cart");

		oi->client = cart.client;
		oi->items = cart.items;
	}

	void delete_cart(int cartID)
	{
		std::erase_if(m_carts, [cartID](auto &cart)
			{ return cart.id == cartID; });
	}

  private:
	static int sNextCartID;
	std::vector<Cart> m_carts;
};
//]

int shop_rest_controller::sNextCartID = 1;

//[ shop_html_controller_2
class shop_html_controller : public zeep::http::html_controller
{
  public:
	shop_html_controller()
	{
		map_get("", &shop_html_controller::handle_index);
		map_get_file("{css,scripts}/");
	}

	zeep::http::reply handle_index(const zeep::http::scope &scope)
	{
		return get_template_processor().create_reply_from_template("shop-2.xhtml", scope);
	}
};
//]

//[ shop_main_2
int main()
{
	try
	{
		/* Use the server constructor that takes the path to a docroot so it will construct a template processor */
		zeep::http::server srv("docroot");

		srv.add_controller(new shop_html_controller());
		srv.add_controller(new shop_rest_controller());

		srv.bind("::", 8080);

		// Note that the rest controller above is not thread safe!
		srv.run(1);
	}
	catch (const std::exception &ex)
	{
		std::cerr << ex.what() << '\n';
	}

	return 0;
}
//]