ZLMediaKit/src/Http/HttpCookieManager.h

253 lines
7.0 KiB
C++
Raw Normal View History

2019-08-08 19:01:45 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2019-06-12 17:53:48 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2019-06-12 17:53:48 +08:00
*
2020-04-04 20:30:09 +08:00
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
2019-06-12 17:53:48 +08:00
*/
#ifndef SRC_HTTP_COOKIEMANAGER_H
#define SRC_HTTP_COOKIEMANAGER_H
#include "Common/Parser.h"
#include "Network/Socket.h"
#include "Util/TimeTicker.h"
2019-06-12 17:53:48 +08:00
#include "Util/mini.h"
#include "Util/util.h"
#include <memory>
#include <unordered_map>
2019-06-12 17:53:48 +08:00
#define COOKIE_DEFAULT_LIFE (7 * 24 * 60 * 60)
2019-06-13 12:00:41 +08:00
namespace mediakit {
class HttpCookieManager;
2019-06-12 17:53:48 +08:00
/**
* cookie对象cookie的一些相关属性
*/
class HttpServerCookie : public toolkit::noncopyable {
2019-06-12 17:53:48 +08:00
public:
using Ptr = std::shared_ptr<HttpServerCookie>;
2019-06-12 17:53:48 +08:00
/**
* cookie
* @param manager cookie管理者对象
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param uid id
2019-06-13 12:00:41 +08:00
* @param cookie cookie随机字符串
2019-06-12 17:53:48 +08:00
* @param max_elapsed
*/
2019-06-13 12:00:41 +08:00
HttpServerCookie(
const std::shared_ptr<HttpCookieManager> &manager, const std::string &cookie_name, const std::string &uid,
const std::string &cookie, uint64_t max_elapsed);
~HttpServerCookie();
2019-06-12 17:53:48 +08:00
/**
* uid
* @return uid
*/
const std::string &getUid() const;
2019-06-12 17:53:48 +08:00
/**
* http中Set-Cookie字段的值
* @param cookie_name cookie的名称 MY_SESSION
2019-06-13 12:00:41 +08:00
* @param path http访问路径
2019-06-12 17:53:48 +08:00
* @return MY_SESSION=XXXXXX;expires=Wed, Jun 12 2019 06:30:48 GMT;path=/index/files/
*/
std::string getCookie(const std::string &path) const;
2019-06-12 17:53:48 +08:00
/**
* cookie随机字符串
* @return cookie随机字符串
*/
const std::string &getCookie() const;
2019-06-12 17:53:48 +08:00
/**
2019-06-13 12:00:41 +08:00
* cookie名
2019-06-12 17:53:48 +08:00
* @return
*/
const std::string &getCookieName() const;
2019-06-12 17:53:48 +08:00
/**
* cookie的过期时间cookie不失效
*/
void updateTime();
/**
* cookie是否过期
* @return
*/
bool isExpired();
/**
*
*/
void setAttach(std::shared_ptr<void> attach);
/*
*
*/
template <class T>
T& getAttach() {
return *static_cast<T *>(_attach.get());
}
2019-06-12 17:53:48 +08:00
private:
std::string cookieExpireTime() const;
2019-06-12 17:53:48 +08:00
private:
std::string _uid;
std::string _cookie_name;
std::string _cookie_uuid;
2019-06-12 17:53:48 +08:00
uint64_t _max_elapsed;
toolkit::Ticker _ticker;
std::shared_ptr<void> _attach;
2019-06-13 12:00:41 +08:00
std::weak_ptr<HttpCookieManager> _manager;
2019-06-12 17:53:48 +08:00
};
/**
* cookie随机字符串生成器
*/
class RandStrGenerator {
2019-06-12 17:53:48 +08:00
public:
RandStrGenerator() = default;
~RandStrGenerator() = default;
2019-06-12 17:53:48 +08:00
/**
*
* @return
*/
std::string obtain();
2019-06-12 17:53:48 +08:00
/**
*
* @param str
*/
void release(const std::string &str);
2019-06-12 17:53:48 +08:00
private:
std::string obtain_l();
2019-06-12 17:53:48 +08:00
private:
//碰撞库
std::unordered_set<std::string> _obtained;
2019-06-12 17:53:48 +08:00
//增长index防止碰撞用
int _index = 0;
};
/**
* cookie管理器cookie的生成以及过期管理
*
*/
2019-06-13 12:00:41 +08:00
class HttpCookieManager : public std::enable_shared_from_this<HttpCookieManager> {
2019-06-12 17:53:48 +08:00
public:
2019-06-13 12:00:41 +08:00
friend class HttpServerCookie;
using Ptr = std::shared_ptr<HttpCookieManager>;
2019-06-13 12:00:41 +08:00
~HttpCookieManager();
2019-06-12 17:53:48 +08:00
/**
*
*/
2019-06-13 12:00:41 +08:00
static HttpCookieManager &Instance();
2019-06-12 17:53:48 +08:00
/**
* cookie
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param uid id
* @param max_client
* @param max_elapsed cookie过期时间
* @return cookie对象
*/
HttpServerCookie::Ptr addCookie(
const std::string &cookie_name, const std::string &uid, uint64_t max_elapsed = COOKIE_DEFAULT_LIFE,
std::shared_ptr<void> attach = nullptr,
int max_client = 1);
2019-06-12 17:53:48 +08:00
/**
* cookie随机字符串查找cookie对象
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param cookie cookie随机字符串
* @return cookie对象nullptr
*/
HttpServerCookie::Ptr getCookie(const std::string &cookie_name, const std::string &cookie);
2019-06-12 17:53:48 +08:00
/**
* http头中获取cookie对象
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param http_header http头
* @return cookie对象
*/
HttpServerCookie::Ptr getCookie(const std::string &cookie_name, const StrCaseMap &http_header);
2019-06-12 17:53:48 +08:00
/**
* uid获取cookie
* @param cookie_name cookie名MY_SESSION
* @param uid id
* @return cookie对象
*/
HttpServerCookie::Ptr getCookieByUid(const std::string &cookie_name, const std::string &uid);
2019-06-12 17:53:48 +08:00
/**
* cookie使
* @param cookie cookie对象nullptr
* @return
*/
2019-06-13 12:00:41 +08:00
bool delCookie(const HttpServerCookie::Ptr &cookie);
2019-06-12 17:53:48 +08:00
private:
2019-06-13 12:00:41 +08:00
HttpCookieManager();
2019-06-12 17:53:48 +08:00
void onManager();
/**
* cookie对象时触发cookie
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param uid id
* @param cookie cookie随机字符串
*/
void onAddCookie(const std::string &cookie_name, const std::string &uid, const std::string &cookie);
2019-06-12 17:53:48 +08:00
/**
* cookie对象时触发
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param uid id
* @param cookie cookie随机字符串
*/
void onDelCookie(const std::string &cookie_name, const std::string &uid, const std::string &cookie);
2019-06-12 17:53:48 +08:00
/**
* cookie
* @param cookie_name cookie名MY_SESSION
* @param uid id
* @param max_client
* @return cookie随机字符串
*/
std::string getOldestCookie(const std::string &cookie_name, const std::string &uid, int max_client = 1);
2019-06-12 17:53:48 +08:00
/**
* cookie
2019-06-13 12:00:41 +08:00
* @param cookie_name cookie名MY_SESSION
2019-06-12 17:53:48 +08:00
* @param cookie cookie随机字符串
* @return true
*/
bool delCookie(const std::string &cookie_name, const std::string &cookie);
2019-06-12 17:53:48 +08:00
private:
std::unordered_map<
std::string /*cookie_name*/, std::unordered_map<std::string /*cookie*/, HttpServerCookie::Ptr /*cookie_data*/>>
_map_cookie;
std::unordered_map<
std::string /*cookie_name*/,
std::unordered_map<std::string /*uid*/, std::map<uint64_t /*cookie time stamp*/, std::string /*cookie*/>>>
_map_uid_to_cookie;
std::recursive_mutex _mtx_cookie;
toolkit::Timer::Ptr _timer;
RandStrGenerator _generator;
2019-06-12 17:53:48 +08:00
};
} // namespace mediakit
2019-06-12 17:53:48 +08:00
#endif // SRC_HTTP_COOKIEMANAGER_H