Metadata-Version: 2.1
Name: l0n0lhttputils
Version: 1.2.2
Summary: 平时常用的http server|mysql|配置文件
Home-page: https://gitee.com/l00n00l/http_server_utils
Author: l0n0l
Author-email: 1038352856@qq.com
License: UNKNOWN
Description: # 简单服务器开发框架
        
        ## 1.使用文档
        
        ### 安装
        ```
        pip install l0n0lhttputils
        ```
        
        ### 使用方法，以微信登录验证为例
        ```yaml
        # 配置文件 config.yaml
        mysql_host: localhost
        mysql_port: 13306
        mysql_user: root
        mysql_password: '123'
        mysql_db: 'test'
        
        token_expire_time: 120
        
        listen_host: localhost
        listen_port: 12345
        
        appid: 111
        secret_key: xxxxxxxx
        ```
        
        ```python
        
        import logging
        import requests
        from l0n0lhttputils.config_file import yaml_file
        from l0n0lhttputils.http_server import http_server, web
        from l0n0lhttputils.dbmysql import dbmysql
        from l0n0lhttputils.token_mgr import token_mgr, check_token
        
        # 加载配置
        g_config = yaml_file("config.yaml")
        g_config.load_config()
        
        # mysql
        db = dbmysql(
            g_config.get("mysql_host"),
            g_config.get("mysql_port"),
            g_config.get("mysql_user"),
            g_config.get("mysql_password"),
            g_config.get("mysql_db")
        )
        
        # 用户csrf token
        g_token_mgr: token_mgr = token_mgr()
        g_token_mgr.token_timestamp = g_config.get("token_expire_time")
        
        # http 服务器
        g_server = http_server(g_config.get("listen_host"), g_config.get("listen_port"))
        
        session_keys = {}
        @g_server.route("get", "/{prefix}/login")
        async def login(request: web.Request):
            """用户登录
            @code:微信提供的code
            """
            # 获取用户的微信code
            request_data = await request.json()
        
            # 向微信验证用户的code是否正确，并获取用户的openid
            check_result = requests.get("https://api.weixin.qq.com/sns/jscode2session", params={
                'appid': g_config.get("appid"),
                "secret": g_config.get("secret_key"),
                "js_code": request_data['code'],
                "grant_type": 'authorization_code'
            })
        
            # 判断验证时网络是否正常
            if check_result.status_code != 200:
                return web.json_response({"errMsg": "向微信检查登录状态错误"})
        
            # 获取微信的验证结果，openid
            json_value = check_result.json()
            openid = json_value['openid']
        
            # 生成本次会话的token，防止csrf攻击
            token = g_token_mgr.gen_token(openid)
        
            # 保存会话key
            session_keys[openid] = json_value['session_key']
        
            # 检测是否有该用户,没有则创建该用户
            db.post("insert into `users` (`openid`) values (%s) on duplicate key update `openid` = values(`openid`)",
                    [openid])
        
            # 验证成功，把会话token返回给用户
            return web.json_response({
                "errMsg": "OK",
                "token": token,
            })
        
        
        @g_server.route("post", "/{prefix}/user_data")
        @check_token(g_token_mgr) # check_token 会检测用户http请求中的  header中是否有 "token" header 
        async def user_data(request: web.Request):
            """
            获取用户基本数据
            """
            data = db.get("select * from `users` where `openid` = %s",
                          [request.openid])
            if not data:
                return web.json_response({
                    "errMsg": "服务器错误"
                })
            # 验证成功，把会话token返回给用户
            return web.json_response({
                "errMsg": "OK",
                "data": data,
            })
        
        from l0n0lhttputils.runner import run
        if __name__ == "__main__":
            logging.basicConfig(filename="testserver.log", level=logging.INFO)
            g_server.start()
            run()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
