38 lines
1.2 KiB
C++
Executable File
38 lines
1.2 KiB
C++
Executable File
#ifndef YP_LIB_SERVER_H
|
|
#define YP_LIB_SERVER_H
|
|
|
|
#include "config.h"
|
|
#include <vector>
|
|
#include "room.h"
|
|
#include "base.h"
|
|
#include <json/value.h>
|
|
|
|
namespace Yc {
|
|
namespace Lib {
|
|
|
|
class Server: public Base, public std::enable_shared_from_this<Server>
|
|
{
|
|
public:
|
|
Server(std::shared_ptr<Yc::Lib::Config> config);
|
|
void run();
|
|
std::vector<std::string> roomList();
|
|
Json::Value jsonRoomList();
|
|
bool roomAllowed(std::string roomName, std::string userName, std::string password);
|
|
bool changeRoom(std::shared_ptr<User> user, std::string newRoom, std::string password);
|
|
private:
|
|
int _socket;
|
|
std::shared_ptr<Yc::Lib::Config> _config;
|
|
bool _stop;
|
|
std::vector<std::shared_ptr<Yc::Lib::Room>> _rooms;
|
|
void createRooms(Json::Value roomList);
|
|
void handleRequest();
|
|
void inputSwitcher(int userSocket, std::string input);
|
|
bool userExists(std::string userName);
|
|
void initUser(int userSocket, Json::Value data);
|
|
};
|
|
|
|
} // namespace Lib
|
|
} // namespace Yp
|
|
|
|
#endif // YP_LIB_SERVER_H
|