lua http 源码

时间: 2023-12-03 13:04:54 浏览: 163
RAR

lua的源代码

star5星 · 资源好评率100%
以下是 Lua 5.1 版本的 http 模块源码,可以用来实现 HTTP 客户端请求: ```lua ----------------------------------------------------------------------------- -- LuaSocket module for HTTP/1.1 client support -- Diego Nehab, et al. -- 04/11/2007 ----------------------------------------------------------------------------- local base = _G local string = require("string") local math = require("math") local socket = require("socket") local url = require("socket.url") module("socket.http") -- the default user agent string USERAGENT = "LuaSocket 2.0.2" -- timeout values TIMEOUT = 60 TIMEOUT_CONNECT = socket._TIMEOUT -- code 204 is no content, but the server sent a response header -- code 304 is not modified, so there's no need to resend the content -- code 205 is a reset content request, we must accept the new content -- code 206 is a partial content response, we must adjust our range -- code 301 is a redirect, we must look for the location header -- code 302 is a redirect, but some buggy servers send content along -- code 303 is a redirect, but with a get method -- code 307 is a redirect, but we must keep the method -- code 401 is a authentication request, we must resend with proper creds -- code 407 is a proxy authentication request, same as 401 NOCONTENT_CODES = "204 304 205 206" REDIRECT_CODES = "301 302 303 307" AUTHREQUIRED_CODES = "401 407" DEFAULT_REDIRECT_TIMES = 5 -- the default port for each protocol PORT = { http = 80, https = 443, } -- get a connection object local function get_connection(u, redir) local proxy = base._PROXY or socket._PROXY local conn = { try = socket.tcp(), proxy = proxy and url.parse(proxy), ssl = u.scheme == "https", live = true, redirected = false, redirectcount = 0, redirectstring = "", host = u.host, port = u.port or PORT[u.scheme], method = "GET", url = u, sink = nil, headers = { ["user-agent"] = USERAGENT, ["host"] = u.host, }, source = socket.source("close-when-done", conn.try) } if conn.proxy then conn.host = conn.proxy.host conn.port = conn.proxy.port conn.headers["host"] = u.authority end if redir then conn.redirected = true conn.redirectcount = redir.redirectcount + 1 conn.redirectstring = redir.redirectstring.."\n"..u.request end return conn end -- close a connection local function close_connection(c) if c.try then c.try:close() end c.try = nil c.live = nil end -- receive a line from a connection or a sink local function receive(fd, pat, t) local st, chunk local buffer = {} local receive_chunk = fd.receive or fd.read or fd t = t or TIMEOUT repeat st, chunk = receive_chunk(fd, pat) if st then buffer[#buffer + 1] = chunk else return nil, chunk end until string.find(buffer[#buffer] or "", pat, nil, true) or st == nil return table.concat(buffer) end -- send data through a connection or a source local function send(fd, data) if not fd.send then if type(fd) ~= "function" then error("invalid send source") end fd(data) else fd:send(data) end end -- convert headers to a string local function headers_to_string(headers) local buffer = {} for field, value in pairs(headers) do buffer[#buffer + 1] = string.format("%s: %s", field, value) end buffer[#buffer + 1] = "" return table.concat(buffer, "\r\n") end -- convert headers from a string to a table local function headers_from_string(header_string) local headers = {} local pos = 1 local eol = string.find(header_string, "\n", pos, true) while eol do local line = string.sub(header_string, pos, eol - 1) line = string.gsub(line, "[\r\n]+$", "") pos = eol + 1 eol = string.find(header_string, "\n", pos, true) if line ~= "" then local field, value = string.match(line, "^(.-):%s*(.*)$") if field then field = string.lower(field) if headers[field] then headers[field] = headers[field]..", "..value else headers[field] = value end end else break end end return headers end -- perform a generic HTTP request local function request(req) local u = url.parse(req.url) local c = get_connection(u, req.redirection) if not c.try then return nil, "unable to connect to "..u.host end c.try:settimeout(TIMEOUT_CONNECT, "t") local res = { } local pat = "^(.-)\r?\n" -- send request line local reqline = string.format("%s %s HTTP/1.1", req.method, u.path or "/") if u.query then reqline = reqline.."?"..u.query end send(c.try, string.format("%s\r\n", reqline)) -- add headers if req.source then c.headers["transfer-encoding"] = "chunked" c.headers["connection"] = "close" c.headers["expect"] = "100-continue" end for i, header in ipairs(req.headers) do local name, value = string.match(header, "^(.-):%s*(.*)$") if name then c.headers[string.lower(name)] = value end end if not c.headers["host"] then c.headers["host"] = u.authority end send(c.try, headers_to_string(c.headers)) send(c.try, "\r\n") -- send request body if req.source then local source = req.source while true do local chunk = source() if not chunk then send(c.try, "0\r\n\r\n") break end send(c.try, string.format("%x\r\n", string.len(chunk))) send(c.try, chunk) send(c.try, "\r\n") end end c.try:settimeout(TIMEOUT, "t") -- receive response local status local headers = {} local body status = receive(c.try, pat) if status then local ver, code, message = string.match(status, "^(%S+)%s+(%S+)%s+(.-)\r?$") if ver and code and message then status = { major = tonumber(string.match(ver, "HTTP/(%d)%.%d")), minor = tonumber(string.match(ver, "HTTP/%d%.(%d)")), code = tonumber(code), message = message } -- receive headers local header_string, err = receive(c.try, "\r?\n\r?\n") if header_string then headers = headers_from_string(header_string) -- handle 100 Continue responses if status.code == 100 then status, headers, body = request(req) -- handle 300 redirects elseif string.find(REDIRECT_CODES, code, 1, true) then local location = headers.location if location then location = url.absolute(u, location) if req.redirection then if req.redirection.redirectcount >= DEFAULT_REDIRECT_TIMES then return nil, "too many redirections" end if req.redirection.redirectstring:find(location.request, 1, true) then return nil, "infinite redirection loop" end else req.redirection = { redirectcount = 0, redirectstring = req.url.request, } end req.url = location close_connection(c) return request(req) end -- handle 401 and 407 authentication requests elseif string.find(AUTHREQUIRED_CODES, code, 1, true) then if req.auth and c.headers.authorization then return nil, "invalid authentication credentials" end local auth = headers["www-authenticate"] or headers["proxy-authenticate"] if auth then local realm = string.match(auth, "realm=\"([^\"]*)\"") if not realm then realm = string.match(auth, "realm=([^,]*)") end if realm then local user, password = req.auth(realm) if user then c.headers.authorization = socket.try(socket.url.build({ scheme = "basic", user = user, password = password })) close_connection(c) return request(req) end end end end -- get response body local length = tonumber(headers["content-length"]) if headers["transfer-encoding"] == "chunked" then local decoder = socket.protect(function(chunk) local size = tonumber(chunk, 16) if size == 0 then return "" end return receive(c.try, string.format("^([^\r\n]*)\r?\n(.*)\r?\n.{0,%d}$", size - 1), TIMEOUT) end) body = socket.sink("into-string") while true do local chunk, err = decoder() if err or chunk == "" then break end body(chunk) end elseif length then body = receive(c.try, string.format("^%(.{%d})$", length), TIMEOUT) elseif headers.connection == "close" then body = receive(c.try, nil, TIMEOUT) end end else status = nil end if not status then close_connection(c) return nil, "invalid server response" end res.status = status res.headers = headers res.body = body res.request = req return res else close_connection(c) return nil, "unable to receive status line" end end -- HTTP/1.1 methods function request_uri(u, req) req = req or {} req.method = req.method or "GET" req.headers = req.headers or {} req.url = url.absolute(u, req.url) return request(req) end function request_string(u, s) local req = { method = "GET", headers = {}, url = u, source = socket.source("string", s), } req.headers["content-length"] = string.len(s) return request(req) end function request_file(u, f) local req = { method = "PUT", headers = {}, url = u, source = socket.source("file", f), } req.headers["content-length"] = socket.filesize(f) return request(req) end -- HTTP/1.0.0 methods function get(u, headers) return request_uri(u, { method = "GET", headers = headers or {} }) end function post(u, body, headers) return request_uri(u, { method = "POST", headers = headers or {}, source = socket.source("string", body), }) end function put(u, body, headers) return request_uri(u, { method = "PUT", headers = headers or {}, source = socket.source("string", body), }) end function delete(u, headers) return request_uri(u, { method = "DELETE", headers = headers or {} }) end function options(u, headers) return request_uri(u, { method = "OPTIONS", headers = headers or {} }) end function trace(u, headers) return request_uri(u, { method = "TRACE", headers = headers or {} }) end -- exports _headers_to_string = headers_to_string _headers_from_string = headers_from_string ``` 该模块提供了一系列 HTTP 请求方法,可以根据需要进行调用。其中,`request_uri` 方法可以实现对 URL 的请求,`get`、`post`、`put`、`delete`、`options`、`trace` 方法则分别对应了 HTTP 协议中的常见请求方法。
阅读全文

相关推荐

最新推荐

recommend-type

Centos 7 64 +[nginx+ngx_lua 模块] 支持WAF防护功能

在Nginx源码目录下,运行`./configure`时添加NDK和lua-nginx-module的路径。这样,Nginx将与这两个模块一起编译。 6. **安装和启动Nginx** 完成编译后,将Nginx安装到指定的路径,然后启动Nginx服务。 7. **配置...
recommend-type

FreeSwitch搭建软交换中心指导

devel libedit-devellibxml2-devel libyuv-devel opus-devel libvpx-devel libvpx2* libdb4* libidn-devel unbound-devel libuuid-devel lua-devel libsndfile-devel yasm-devel sqlite-devel 6. 获取 FreeSwitch ...
recommend-type

【9493】基于springboot+vue的美食信息推荐系统的设计与实现.zip

技术选型 【后端】:Java 【框架】:springboot 【前端】:vue 【JDK版本】:JDK1.8 【服务器】:tomcat7+ 【数据库】:mysql 5.7+ 项目包含前后台完整源码。 项目都经过严格调试,确保可以运行! 具体项目介绍可查看博主文章或私聊获取 助力学习实践,提升编程技能,快来获取这份宝贵的资源吧! 在当今快速发展的信息技术领域,技术选型是决定一个项目成功与否的重要因素之一。基于以下的技术栈,我们为您带来了一份完善且经过实践验证的项目资源,让您在学习和提升编程技能的道路上事半功倍。以下是该项目的技术选型和其组件的详细介绍。 在后端技术方面,我们选择了Java作为编程语言。Java以其稳健性、跨平台性和丰富的库支持,在企业级应用中处于领导地位。项目采用了流行的Spring Boot框架,这个框架以简化Java企业级开发而闻名。Spring Boot提供了简洁的配置方式、内置的嵌入式服务器支持以及强大的生态系统,使开发者能够更高效地构建和部署应用。 前端技术方面,我们使用了Vue.js,这是一个用于构建用户界面的渐进式JavaScript框架。Vue以其易上手、灵活和性能出色而受到开发者的青睐,它的组件化开发思想也有助于提高代码的复用性和可维护性。 项目的编译和运行环境选择了JDK 1.8。尽管Java已经推出了更新的版本,但JDK 1.8依旧是一种成熟且稳定的选择,广泛应用于各类项目中,确保了兼容性和稳定性。 在服务器方面,本项目部署在Tomcat 7+之上。Tomcat是Apache软件基金会下的一个开源Servlet容器,也是应用最为广泛的Java Web服务器之一。其稳定性和可靠的性能表现为Java Web应用提供了坚实的支持。 数据库方面,我们采用了MySQL 5.7+。MySQL是一种高效、可靠且使用广泛的关系型数据库管理系统,5.7版本在性能和功能上都有显著的提升。 值得一提的是,该项目包含了前后台的完整源码,并经过严格调试,确保可以顺利运行。通过项目的学习和实践,您将能更好地掌握从后端到前端的完整开发流程,提升自己的编程技能。欢迎参考博主的详细文章或私信获取更多信息,利用这一宝贵资源来推进您的技术成长之路!
recommend-type

(源码)基于Spring、Struts和Hibernate的OA系统.zip

# 基于Spring、Struts和Hibernate的OA系统 ## 项目简介 本项目是一个基于Spring、Struts和Hibernate框架的办公自动化(OA)系统。该系统主要用于企业内部的日常办公管理,包括用户登录、组织管理、权限管理等功能。系统前端使用现成的模板和JavaScript、jQuery技术,后端通过Struts、Hibernate和Spring框架实现业务逻辑和数据持久化。 ## 项目的主要特性和功能 ### 登录模块 防止多设备登录系统能够检测到同一账号在不同设备上的登录情况,并在检测到异地登录时通知用户并强制下线。 WebSocket支持使用WebSocket技术实现实时通知功能。 ### 组织管理模块 部门管理支持部门的增删改查操作,包括查看部门信息、职位信息和员工数量。 用户管理支持用户的增删改查操作,包括指定用户所在部门、职位和角色。 角色管理支持角色的增删改查操作,包括查看角色权限和修改角色权限。
recommend-type

基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)

基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目),该项目是个人毕设项目,答辩评审分达到98分,代码都经过调试测试,确保可以运行!欢迎下载使用,可用于小白学习、进阶。该资源主要针对计算机、通信、人工智能、自动化等相关专业的学生、老师或从业者下载使用,亦可作为期末课程设计、课程大作业、毕业设计等。项目整体具有较高的学习借鉴价值!基础能力强的可以在此基础上修改调整,以实现不同的功能。 基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高分项目)基于MySQL、express框架、Vue3的光谷智慧交通系统源码+数据库+文档说明(高
recommend-type

黑板风格计算机毕业答辩PPT模板下载

资源摘要信息:"创意经典黑板风格毕业答辩论文课题报告动态ppt模板" 在当前数字化教学与展示需求日益增长的背景下,PPT模板成为了表达和呈现学术成果及教学内容的重要工具。特别针对计算机专业的学生而言,毕业设计的答辩PPT不仅仅是一个展示的平台,更是其设计能力、逻辑思维和审美观的综合体现。因此,一个恰当且创意十足的PPT模板显得尤为重要。 本资源名为“创意经典黑板风格毕业答辩论文课题报告动态ppt模板”,这表明该模板具有以下特点: 1. **创意设计**:模板采用了“黑板风格”的设计元素,这种风格通常模拟传统的黑板书写效果,能够营造一种亲近、随性的学术氛围。该风格的模板能够帮助展示者更容易地吸引观众的注意力,并引发共鸣。 2. **适应性强**:标题表明这是一个毕业答辩用的模板,它适用于计算机专业及其他相关专业的学生用于毕业设计课题的汇报。模板中设计的版式和内容布局应该是灵活多变的,以适应不同课题的展示需求。 3. **动态效果**:动态效果能够使演示内容更富吸引力,模板可能包含了多种动态过渡效果、动画效果等,使得展示过程生动且充满趣味性,有助于突出重点并维持观众的兴趣。 4. **专业性质**:由于是毕业设计用的模板,因此该模板在设计时应充分考虑了计算机专业的特点,可能包括相关的图表、代码展示、流程图、数据可视化等元素,以帮助学生更好地展示其研究成果和技术细节。 5. **易于编辑**:一个良好的模板应具备易于编辑的特性,这样使用者才能根据自己的需要进行调整,比如替换文本、修改颜色主题、更改图片和图表等,以确保最终展示的个性和专业性。 结合以上特点,模板的使用场景可以包括但不限于以下几种: - 计算机科学与技术专业的学生毕业设计汇报。 - 计算机工程与应用专业的学生论文展示。 - 软件工程或信息技术专业的学生课题研究成果展示。 - 任何需要进行学术成果汇报的场合,比如研讨会议、学术交流会等。 对于计算机专业的学生来说,毕业设计不仅仅是完成一个课题,更重要的是通过这个过程学会如何系统地整理和表述自己的思想。因此,一份好的PPT模板能够帮助他们更好地完成这个任务,同时也能够展现出他们的专业素养和对细节的关注。 此外,考虑到模板是一个压缩文件包(.zip格式),用户在使用前需要解压缩,解压缩后得到的文件为“创意经典黑板风格毕业答辩论文课题报告动态ppt模板.pptx”,这是一个可以直接在PowerPoint软件中打开和编辑的演示文稿文件。用户可以根据自己的具体需要,在模板的基础上进行修改和补充,以制作出一个具有个性化特色的毕业设计答辩PPT。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

提升点阵式液晶显示屏效率技术

![点阵式液晶显示屏显示程序设计](https://iot-book.github.io/23_%E5%8F%AF%E8%A7%81%E5%85%89%E6%84%9F%E7%9F%A5/S3_%E8%A2%AB%E5%8A%A8%E5%BC%8F/fig/%E8%A2%AB%E5%8A%A8%E6%A0%87%E7%AD%BE.png) # 1. 点阵式液晶显示屏基础与效率挑战 在现代信息技术的浪潮中,点阵式液晶显示屏作为核心显示技术之一,已被广泛应用于从智能手机到工业控制等多个领域。本章节将介绍点阵式液晶显示屏的基础知识,并探讨其在提升显示效率过程中面临的挑战。 ## 1.1 点阵式显
recommend-type

在SoC芯片的射频测试中,ATE设备通常如何执行系统级测试以保证芯片量产的质量和性能一致?

SoC芯片的射频测试是确保无线通信设备性能的关键环节。为了在量产阶段保证芯片的质量和性能一致性,ATE(Automatic Test Equipment)设备通常会执行一系列系统级测试。这些测试不仅关注芯片的电气参数,还包含电磁兼容性和射频信号的完整性检验。在ATE测试中,会根据芯片设计的规格要求,编写定制化的测试脚本,这些脚本能够模拟真实的无线通信环境,检验芯片的射频部分是否能够准确处理信号。系统级测试涉及对芯片基带算法的验证,确保其能够有效执行无线信号的调制解调。测试过程中,ATE设备会自动采集数据并分析结果,对于不符合标准的芯片,系统能够自动标记或剔除,从而提高测试效率和减少故障率。为了
recommend-type

CodeSandbox实现ListView快速创建指南

资源摘要信息:"listview:用CodeSandbox创建" 知识点一:CodeSandbox介绍 CodeSandbox是一个在线代码编辑器,专门为网页应用和组件的快速开发而设计。它允许用户即时预览代码更改的效果,并支持多种前端开发技术栈,如React、Vue、Angular等。CodeSandbox的特点是易于使用,支持团队协作,以及能够直接在浏览器中编写代码,无需安装任何软件。因此,它非常适合初学者和快速原型开发。 知识点二:ListView组件 ListView是一种常用的用户界面组件,主要用于以列表形式展示一系列的信息项。在前端开发中,ListView经常用于展示从数据库或API获取的数据。其核心作用是提供清晰的、结构化的信息展示方式,以便用户可以方便地浏览和查找相关信息。 知识点三:用JavaScript创建ListView 在JavaScript中创建ListView通常涉及以下几个步骤: 1. 创建HTML的ul元素作为列表容器。 2. 使用JavaScript的DOM操作方法(如document.createElement, appendChild等)动态创建列表项(li元素)。 3. 将创建的列表项添加到ul容器中。 4. 通过CSS来设置列表和列表项的样式,使其符合设计要求。 5. (可选)为ListView添加交互功能,如点击事件处理,以实现更丰富的用户体验。 知识点四:在CodeSandbox中创建ListView 在CodeSandbox中创建ListView可以简化开发流程,因为它提供了一个在线环境来编写代码,并且支持实时预览。以下是使用CodeSandbox创建ListView的简要步骤: 1. 打开CodeSandbox官网,创建一个新的项目。 2. 在项目中创建或编辑HTML文件,添加用于展示ListView的ul元素。 3. 创建或编辑JavaScript文件,编写代码动态生成列表项,并将它们添加到ul容器中。 4. 使用CodeSandbox提供的实时预览功能,即时查看ListView的效果。 5. 若有需要,继续编辑或添加样式文件(通常是CSS),对ListView进行美化。 6. 利用CodeSandbox的版本控制功能,保存工作进度和团队协作。 知识点五:实践案例分析——listview-main 文件名"listview-main"暗示这可能是一个展示如何使用CodeSandbox创建基本ListView的项目。在这个项目中,开发者可能会包含以下内容: 1. 使用React框架创建ListView的示例代码,因为React是目前较为流行的前端库。 2. 展示如何将从API获取的数据渲染到ListView中,包括数据的获取、处理和展示。 3. 提供基本的样式设置,展示如何使用CSS来美化ListView。 4. 介绍如何在CodeSandbox中组织项目结构,例如如何分离组件、样式和脚本文件。 5. 包含一个简单的用户交互示例,例如点击列表项时弹出详细信息等。 总结来说,通过标题“listview:用CodeSandbox创建”,我们了解到本资源是一个关于如何利用CodeSandbox这个在线开发环境,来快速实现一个基于JavaScript的ListView组件的教程或示例项目。通过上述知识点的梳理,可以加深对如何创建ListView组件、CodeSandbox平台的使用方法以及如何在该平台中实现具体功能的理解。