Files
ZLMediaKit/src/Http/HttpCookie.h

72 lines
1.8 KiB
C++
Raw Normal View History

2018-09-25 10:19:11 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2018-09-25 10:19:11 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2018-09-25 10:19:11 +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.
2018-09-25 10:19:11 +08:00
*/
#ifndef ZLMEDIAKIT_HTTPCOOKIE_H
#define ZLMEDIAKIT_HTTPCOOKIE_H
#include <string>
#include <memory>
#include <vector>
2019-06-13 11:45:13 +08:00
#include <map>
#include <unordered_map>
#include <mutex>
2018-10-24 17:17:55 +08:00
namespace mediakit {
2018-09-25 10:19:11 +08:00
2019-06-13 11:45:13 +08:00
/**
* http客户端cookie对象
*/
class HttpCookie {
public:
2022-12-02 14:43:06 +08:00
using Ptr = std::shared_ptr<HttpCookie>;
friend class HttpCookieStorage;
HttpCookie() = default;
~HttpCookie() = default;
void setPath(const std::string &path);
void setHost(const std::string &host);
void setExpires(const std::string &expires,const std::string &server_date);
void setKeyVal(const std::string &key,const std::string &val);
operator bool ();
const std::string &getKey() const ;
const std::string &getVal() const ;
private:
std::string _host;
std::string _path = "/";
std::string _key;
std::string _val;
time_t _expire = 0;
};
2019-06-13 11:45:13 +08:00
/**
* http客户端cookie全局保存器
*/
class HttpCookieStorage{
public:
~HttpCookieStorage() = default;
static HttpCookieStorage &Instance();
void set(const HttpCookie::Ptr &cookie);
std::vector<HttpCookie::Ptr> get(const std::string &host,const std::string &path);
private:
HttpCookieStorage() = default;
private:
std::unordered_map<std::string/*host*/, std::map<std::string/*cookie path*/,std::map<std::string/*cookie_key*/, HttpCookie::Ptr> > > _all_cookie;
std::mutex _mtx_cookie;
};
2018-09-25 10:19:11 +08:00
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */
2018-09-25 10:19:11 +08:00
#endif //ZLMEDIAKIT_HTTPCOOKIE_H