summaryrefslogtreecommitdiffstats
path: root/src/Bindings/WebPlugin.cpp
blob: 1eca7de93694be705ba4a55a2a10e2cacc4dc210 (plain) (blame)
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

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "WebPlugin.h"
#include "../WebAdmin.h"
#include "../Root.h"





cWebPlugin::cWebPlugin()
{
	cWebAdmin * WebAdmin = cRoot::Get()->GetWebAdmin();
	if (WebAdmin != nullptr)
	{
		WebAdmin->AddPlugin(this);
	}
}





cWebPlugin::~cWebPlugin()
{
	ASSERT(m_Tabs.empty());  // Has ClearTabs() been called?

	// Remove from WebAdmin:
	cWebAdmin * WebAdmin = cRoot::Get()->GetWebAdmin();
	if (WebAdmin != nullptr)
	{
		WebAdmin->RemovePlugin(this);
	}
}





cWebPlugin::cTabNames cWebPlugin::GetTabNames(void) const
{
	std::list< std::pair<AString, AString>> NameList;
	for (auto itr = m_Tabs.cbegin(), end = m_Tabs.cend(); itr != end; ++itr)
	{
		NameList.push_back(std::make_pair((*itr)->m_Title, (*itr)->m_SafeTitle));
	}
	return NameList;
}





cWebPlugin::cTabPtr cWebPlugin::GetTabBySafeTitle(const AString & a_SafeTitle) const
{
	cCSLock Lock(m_CSTabs);
	for (auto itr = m_Tabs.cbegin(), end = m_Tabs.cend(); itr != end; ++itr)
	{
		if ((*itr)->m_SafeTitle == a_SafeTitle)
		{
			return *itr;
		}
	}
	return nullptr;
}





std::pair<AString, AString> cWebPlugin::GetTabNameForRequest(const HTTPRequest & a_Request)
{
	AStringVector Split = StringSplit(a_Request.Path, "/");
	if (Split.empty())
	{
		return std::make_pair(AString(), AString());
	}

	cCSLock Lock(m_CSTabs);
	cTabPtr Tab;
	if (Split.size() > 2)  // If we got the tab name, show that page
	{
		for (auto itr = m_Tabs.cbegin(), end = m_Tabs.cend(); itr != end; ++itr)
		{
			if ((*itr)->m_SafeTitle.compare(Split[2]) == 0)  // This is the one!
			{
				return std::make_pair((*itr)->m_Title, (*itr)->m_SafeTitle);
			}
		}
		// Tab name not found, display an "empty" page:
		return std::make_pair(AString(), AString());
	}

	// Show the first tab:
	if (!m_Tabs.empty())
	{
		return std::make_pair(m_Tabs.front()->m_SafeTitle, m_Tabs.front()->m_SafeTitle);
	}

	// No tabs at all:
	return std::make_pair(AString(), AString());
}




AString cWebPlugin::SafeString(const AString & a_String)
{
	AString RetVal;
	auto len = a_String.size();
	RetVal.reserve(len);
	for (size_t i = 0; i < len; ++i)
	{
		char c = a_String[i];
		if (c == ' ')
		{
			c = '_';
		}
		RetVal.push_back(c);
	}
	return RetVal;
}





void cWebPlugin::AddNewWebTab(const AString & a_Title, int a_UserData)
{
	auto Tab = std::make_shared<cTab>(a_Title, a_UserData);
	cCSLock Lock(m_CSTabs);
	m_Tabs.push_back(Tab);
}





void cWebPlugin::ClearTabs(void)
{
	// Remove the webadmin tabs:
	cTabPtrs Tabs;
	{
		cCSLock Lock(m_CSTabs);
		std::swap(Tabs, m_Tabs);
	}
}