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
|
|
|
|
*
|
2021-01-17 18:31:50 +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 <memory>
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
#include "Util/mini.h"
|
2019-08-20 12:09:43 +08:00
|
|
|
|
#include "Util/util.h"
|
2019-06-12 17:53:48 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Network/Socket.h"
|
2019-06-28 16:48:02 +08:00
|
|
|
|
#include "Common/Parser.h"
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
|
|
|
|
|
|
|
|
|
#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的一些相关属性
|
|
|
|
|
*/
|
2019-08-20 12:09:43 +08:00
|
|
|
|
class HttpServerCookie : public AnyStorage , public noncopyable{
|
2019-06-12 17:53:48 +08:00
|
|
|
|
public:
|
2019-06-13 12:00:41 +08:00
|
|
|
|
typedef std::shared_ptr<HttpServerCookie> Ptr;
|
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 string &cookie_name,
|
|
|
|
|
const string &uid,
|
|
|
|
|
const string &cookie,
|
|
|
|
|
uint64_t max_elapsed);
|
|
|
|
|
~HttpServerCookie() ;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取uid
|
|
|
|
|
* @return uid
|
|
|
|
|
*/
|
|
|
|
|
const string &getUid() const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取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/
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
string getCookie(const string &path) const;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取cookie随机字符串
|
|
|
|
|
* @return cookie随机字符串
|
|
|
|
|
*/
|
|
|
|
|
const string& getCookie() const;
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-13 12:00:41 +08:00
|
|
|
|
* 获取该cookie名
|
2019-06-12 17:53:48 +08:00
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
const string& getCookieName() const;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新该cookie的过期时间,可以让此cookie不失效
|
|
|
|
|
*/
|
|
|
|
|
void updateTime();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断该cookie是否过期
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
bool isExpired();
|
2019-06-14 18:42:09 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取区域锁
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-12-28 16:48:11 +08:00
|
|
|
|
std::shared_ptr<lock_guard<recursive_mutex> > getLock();
|
2019-06-12 17:53:48 +08:00
|
|
|
|
private:
|
|
|
|
|
string cookieExpireTime() const ;
|
|
|
|
|
private:
|
|
|
|
|
string _uid;
|
2019-06-13 12:00:41 +08:00
|
|
|
|
string _cookie_name;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
string _cookie_uuid;
|
|
|
|
|
uint64_t _max_elapsed;
|
|
|
|
|
Ticker _ticker;
|
2019-12-28 16:48:11 +08:00
|
|
|
|
recursive_mutex _mtx;
|
2019-06-13 12:00:41 +08:00
|
|
|
|
std::weak_ptr<HttpCookieManager> _manager;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cookie随机字符串生成器
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
class RandStrGeneator{
|
2019-06-12 17:53:48 +08:00
|
|
|
|
public:
|
2019-06-13 12:00:41 +08:00
|
|
|
|
RandStrGeneator() = default;
|
|
|
|
|
~RandStrGeneator() = default;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取不碰撞的随机字符串
|
|
|
|
|
* @return 随机字符串
|
|
|
|
|
*/
|
|
|
|
|
string obtain();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 释放随机字符串
|
|
|
|
|
* @param str 随机字符串
|
|
|
|
|
*/
|
|
|
|
|
void release(const string &str);
|
|
|
|
|
private:
|
|
|
|
|
string obtain_l();
|
|
|
|
|
private:
|
|
|
|
|
//碰撞库
|
|
|
|
|
unordered_set<string> _obtained;
|
|
|
|
|
//增长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
|
|
|
|
typedef std::shared_ptr<HttpCookieManager> Ptr;
|
|
|
|
|
friend class HttpServerCookie;
|
|
|
|
|
~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对象
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
HttpServerCookie::Ptr addCookie(const string &cookie_name,const string &uid, uint64_t max_elapsed = COOKIE_DEFAULT_LIFE,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
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
HttpServerCookie::Ptr getCookie(const string &cookie_name,const 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对象
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
HttpServerCookie::Ptr getCookie(const string &cookie_name,const StrCaseMap &http_header);
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
2019-06-14 15:19:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 根据uid获取cookie
|
|
|
|
|
* @param cookie_name cookie名,例如MY_SESSION
|
|
|
|
|
* @param uid 用户id
|
|
|
|
|
* @return cookie对象
|
|
|
|
|
*/
|
|
|
|
|
HttpServerCookie::Ptr getCookieByUid(const string &cookie_name,const 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随机字符串
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
void onAddCookie(const string &cookie_name,const string &uid,const 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随机字符串
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
void onDelCookie(const string &cookie_name,const string &uid,const string &cookie);
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
2019-06-14 15:19:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取某用户名下最先登录时的cookie,目的是实现某用户下最多登录若干个设备
|
|
|
|
|
* @param cookie_name cookie名,例如MY_SESSION
|
|
|
|
|
* @param uid 用户id
|
|
|
|
|
* @param max_client 最多登录的设备个数
|
|
|
|
|
* @return 最早的cookie随机字符串
|
|
|
|
|
*/
|
|
|
|
|
string getOldestCookie(const string &cookie_name,const 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
|
|
|
|
|
*/
|
2019-06-13 12:00:41 +08:00
|
|
|
|
bool delCookie(const string &cookie_name,const string &cookie);
|
2019-06-12 17:53:48 +08:00
|
|
|
|
private:
|
2019-06-13 12:00:41 +08:00
|
|
|
|
unordered_map<string/*cookie_name*/,unordered_map<string/*cookie*/,HttpServerCookie::Ptr/*cookie_data*/> >_map_cookie;
|
|
|
|
|
unordered_map<string/*cookie_name*/,unordered_map<string/*uid*/,map<uint64_t/*cookie time stamp*/,string/*cookie*/> > >_map_uid_to_cookie;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
recursive_mutex _mtx_cookie;
|
|
|
|
|
Timer::Ptr _timer;
|
2019-06-13 12:00:41 +08:00
|
|
|
|
RandStrGeneator _geneator;
|
2019-06-12 17:53:48 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-06-13 12:00:41 +08:00
|
|
|
|
}//namespace mediakit
|
2019-06-12 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //SRC_HTTP_COOKIEMANAGER_H
|