HttpCookieManager.cpp 9.44 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
9 10 11 12 13
 */

#include "Util/util.h"
#include "Util/MD5.h"
#include "Common/config.h"
14
#include "HttpCookieManager.h"
15

16 17 18 19 20 21 22 23
namespace mediakit {

//////////////////////////////HttpServerCookie////////////////////////////////////
HttpServerCookie::HttpServerCookie(const std::shared_ptr<HttpCookieManager> &manager,
                                   const string &cookie_name,
                                   const string &uid,
                                   const string &cookie,
                                   uint64_t max_elapsed){
24 25 26
    _uid = uid;
    _max_elapsed = max_elapsed;
    _cookie_uuid = cookie;
27
    _cookie_name = cookie_name;
28
    _manager = manager;
29
    manager->onAddCookie(_cookie_name,_uid,_cookie_uuid);
30 31
}

32
HttpServerCookie::~HttpServerCookie() {
33 34
    auto strongManager = _manager.lock();
    if(strongManager){
35
        strongManager->onDelCookie(_cookie_name,_uid,_cookie_uuid);
36 37
    }
}
38 39 40

const string & HttpServerCookie::getUid() const{
    return _uid;
41 42
}

43 44 45 46 47 48 49 50 51 52
string HttpServerCookie::getCookie(const string &path) const {
    return (StrPrinter << _cookie_name << "=" << _cookie_uuid << ";expires=" << cookieExpireTime() << ";path=" << path);
}

const string& HttpServerCookie::getCookie() const {
    return _cookie_uuid;
}

const string& HttpServerCookie::getCookieName() const{
    return _cookie_name;
53 54
}

55
void HttpServerCookie::updateTime() {
56 57
    _ticker.resetTime();
}
58 59 60

bool HttpServerCookie::isExpired() {
    return _ticker.elapsedTime() > _max_elapsed * 1000;
61
}
62

63 64
std::shared_ptr<lock_guard<recursive_mutex> > HttpServerCookie::getLock(){
    return std::make_shared<lock_guard<recursive_mutex> >(_mtx);
65 66
}

67
string HttpServerCookie::cookieExpireTime() const{
68 69 70 71 72
    char buf[64];
    time_t tt = time(NULL) + _max_elapsed;
    strftime(buf, sizeof buf, "%a, %b %d %Y %H:%M:%S GMT", gmtime(&tt));
    return buf;
}
73 74
//////////////////////////////CookieManager////////////////////////////////////
INSTANCE_IMP(HttpCookieManager);
75

76 77 78 79 80 81
HttpCookieManager::HttpCookieManager() {
    //定时删除过期的cookie,防止内存膨胀
    _timer = std::make_shared<Timer>(10,[this](){
        onManager();
        return true;
    }, nullptr);
82 83
}

84 85
HttpCookieManager::~HttpCookieManager() {
    _timer.reset();
86 87
}

88 89 90 91 92 93 94 95
void HttpCookieManager::onManager() {
    lock_guard<recursive_mutex> lck(_mtx_cookie);
    //先遍历所有类型
    for(auto it_name = _map_cookie.begin() ; it_name != _map_cookie.end() ;){
        //再遍历该类型下的所有cookie
        for (auto it_cookie = it_name->second.begin() ; it_cookie != it_name->second.end() ; ){
            if(it_cookie->second->isExpired()){
                //cookie过期,移除记录
96
                DebugL << it_cookie->second->getUid() << " cookie过期:" << it_cookie->second->getCookie();
97 98 99 100 101 102 103 104
                it_cookie = it_name->second.erase(it_cookie);
                continue;
            }
            ++it_cookie;
        }

        if(it_name->second.empty()){
            //该类型下没有任何cooki记录,移除之
105
            DebugL << "该path下没有任何cooki记录:" << it_name->first;
106 107 108 109 110 111
            it_name = _map_cookie.erase(it_name);
            continue;
        }
        ++it_name;
    }
}
112

113
HttpServerCookie::Ptr HttpCookieManager::addCookie(const string &cookie_name,const string &uidIn,uint64_t max_elapsed,int max_client) {
114 115 116
    lock_guard<recursive_mutex> lck(_mtx_cookie);
    auto cookie = _geneator.obtain();
    auto uid = uidIn.empty() ? cookie : uidIn;
117
    auto oldCookie = getOldestCookie(cookie_name , uid, max_client);
118 119 120
    if(!oldCookie.empty()){
        //假如该账号已经登录了,那么删除老的cookie。
        //目的是实现单账号多地登录时挤占登录
121
        delCookie(cookie_name,oldCookie);
122
    }
123
    HttpServerCookie::Ptr data(new HttpServerCookie(shared_from_this(),cookie_name,uid,cookie,max_elapsed));
124
    //保存该账号下的新cookie
125
    _map_cookie[cookie_name][cookie] = data;
126 127 128
    return data;
}

129
HttpServerCookie::Ptr HttpCookieManager::getCookie(const string &cookie_name,const string &cookie) {
130
    lock_guard<recursive_mutex> lck(_mtx_cookie);
131 132 133
    auto it_name = _map_cookie.find(cookie_name);
    if(it_name == _map_cookie.end()){
        //不存在该类型的cookie
134 135
        return nullptr;
    }
136 137 138
    auto it_cookie = it_name->second.find(cookie);
    if(it_cookie == it_name->second.end()){
        //该类型下没有对应的cookie
139 140 141 142
        return nullptr;
    }
    if(it_cookie->second->isExpired()){
        //cookie过期
143
        DebugL << "cookie过期:" << it_cookie->second->getCookie();
144
        it_name->second.erase(it_cookie);
145 146 147 148 149
        return nullptr;
    }
    return it_cookie->second;
}

150
HttpServerCookie::Ptr HttpCookieManager::getCookie(const string &cookie_name,const StrCaseMap &http_header) {
151 152 153 154 155 156 157 158 159 160 161
    auto it = http_header.find("Cookie");
    if (it == http_header.end()) {
        return nullptr;
    }
    auto cookie = FindField(it->second.data(), (cookie_name + "=").data(), ";");
    if (!cookie.size()) {
        cookie = FindField(it->second.data(), (cookie_name + "=").data(), nullptr);
    }
    if(cookie.empty()){
        return nullptr;
    }
162
    return HttpCookieManager::Instance().getCookie(cookie_name , cookie);
163 164
}

165 166 167 168 169 170 171 172 173 174 175
HttpServerCookie::Ptr HttpCookieManager::getCookieByUid(const string &cookie_name,const string &uid){
    if(cookie_name.empty() || uid.empty()){
        return nullptr;
    }
    auto cookie = getOldestCookie(cookie_name,uid);
    if(cookie.empty()){
        return nullptr;
    }
    return getCookie(cookie_name,cookie);
}

176 177 178 179 180
bool HttpCookieManager::delCookie(const HttpServerCookie::Ptr &cookie) {
    if(!cookie){
        return false;
    }
    return delCookie(cookie->getCookieName(),cookie->getCookie());
181 182
}

183
bool HttpCookieManager::delCookie(const string &cookie_name,const string &cookie) {
184
    lock_guard<recursive_mutex> lck(_mtx_cookie);
185 186 187
    auto it_name = _map_cookie.find(cookie_name);
    if(it_name == _map_cookie.end()){
        return false;
188
    }
189
    return it_name->second.erase(cookie);
190 191
}

192
void HttpCookieManager::onAddCookie(const string &cookie_name,const string &uid,const string &cookie){
193 194 195
    //添加新的cookie,我们记录下这个uid下有哪些cookie,目的是实现单账号多地登录时挤占登录
    lock_guard<recursive_mutex> lck(_mtx_cookie);
    //相同用户下可以存在多个cookie(意味多地登录),这些cookie根据登录时间的早晚依次排序
196
    _map_uid_to_cookie[cookie_name][uid][getCurrentMillisecond()] = cookie;
197
}
198
void HttpCookieManager::onDelCookie(const string &cookie_name,const string &uid,const string &cookie){
199 200 201 202
    lock_guard<recursive_mutex> lck(_mtx_cookie);
    //回收随机字符串
    _geneator.release(cookie);

203 204 205
    auto it_name = _map_uid_to_cookie.find(cookie_name);
    if(it_name == _map_uid_to_cookie.end()){
        //该类型下未有任意用户登录
206 207
        return;
    }
208 209
    auto it_uid = it_name->second.find(uid);
    if(it_uid == it_name->second.end()){
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
        //该用户尚未登录
        return;
    }

    //遍历同一名用户下的所有客户端,移除命中的客户端
    for(auto it_cookie = it_uid->second.begin() ; it_cookie != it_uid->second.end() ; ++it_cookie ){
        if(it_cookie->second != cookie) {
            //不是该cookie
            continue;
        }
        //移除该用户名下的某个cookie,这个设备cookie将失效
        it_uid->second.erase(it_cookie);

        if(it_uid->second.size() != 0) {
            break;
        }

        //该用户名下没有任何设备在线,移除之
228
        it_name->second.erase(it_uid);
229

230
        if(it_name->second.size() != 0) {
231 232
            break;
        }
233 234
        //该类型下未有任何用户在线,移除之
        _map_uid_to_cookie.erase(it_name);
235 236 237 238 239
        break;
    }

}

240
string HttpCookieManager::getOldestCookie(const string &cookie_name,const string &uid, int max_client){
241
    lock_guard<recursive_mutex> lck(_mtx_cookie);
242 243 244
    auto it_name = _map_uid_to_cookie.find(cookie_name);
    if(it_name == _map_uid_to_cookie.end()){
        //不存在该类型的cookie
245 246
        return "";
    }
247 248
    auto it_uid = it_name->second.find(uid);
    if(it_uid == it_name->second.end()){
249 250 251 252 253 254 255 256 257 258 259
        //该用户从未登录过
        return "";
    }
    if(it_uid->second.size() < MAX(1,max_client)){
        //同一名用户下,客户端个数还没达到限制个数
        return "";
    }
    //客户端个数超过限制,移除最先登录的客户端
    return it_uid->second.begin()->second;
}

260 261
/////////////////////////////////RandStrGeneator////////////////////////////////////
string RandStrGeneator::obtain(){
262 263 264 265 266 267 268 269 270 271
    //获取唯一的防膨胀的随机字符串
    while (true){
        auto str = obtain_l();
        if(_obtained.find(str) == _obtained.end()){
            //没有重复
            _obtained.emplace(str);
            return str;
        }
    }
}
272
void RandStrGeneator::release(const string &str){
273 274 275 276
    //从防膨胀库中移除
    _obtained.erase(str);
}

277
string RandStrGeneator::obtain_l(){
278 279 280 281 282
    //12个伪随机字节 + 4个递增的整形字节,然后md5即为随机字符串
    auto str = makeRandStr(12,false);
    str.append((char *)&_index, sizeof(_index));
    ++_index;
    return MD5(str).hexdigest();
283 284 285
}

}//namespace mediakit