Code Monkey home page Code Monkey logo

lua-resty-post's Introduction

lua-resty-post

Openresty utility for HTTP post

Table of Contents

Status

This library beta tested and used in production.

Description

This library processed HTTP using lua-resty-upload which very fast and low memory used, it handles multiple type of HTTP POST and converted into lua table:

Back to TOC

Installation

  • Download or clone this repo
  • copy or link to openresty/lualib/resty/ or to any your lua_package_path

Back to TOC

How to use

local resty_post = require 'resty.post'
local post = resty_post:new()
local m = post:read()
-- return table with all form value and file

Back to TOC

File Upload

  • Support multiple file upload
  • Files info are stored in files property using field name as key
 { 
  files = {
   file1 = { -- input name
    name = "a.txt",
    type = "text/plain",
    size = 10240,
    tmp_name = 1454551131.5459
   },
   file2 = {
    name = "b.png",
    type = "image/png",
    size = 20480,
    tmp_name = 1454553275.6401
   }
 }
  • Define path for files upload or default to logs directory (follow ngx.config.prefix)
  • Default file will be saved to tmp name (require moving action to destination)
local resty_post = require "resty.post"
local post = resty_post:new({
 path = "/my/path",           -- path upload file will be saved
 chunk_size = 10240,          -- default 8192
 no_tmp = true,               -- if set original name will uses or generate random name
 name = function(name, field) -- overide name with user defined function
  return name.."_"..field 
 end
})
post:read()

Array Input

Support multiple input of similar name

It is useful for thing like HTML input checkboxes or select in multiple mode

<input type="checkbox" name="check_multi" value="1">
<input type="checkbox" name="check_multi" value="2">
<select name="select_multi" multiple>
 <option value="">Please select</option>
 <option value="1">One</option>
 <option value="2">Two</option>
</select>

converted into

{
 check_multi = { 1, 2 },
 select_multi = { 1, 2 } 
}

When checked one similar with ngx.req.get_post_args

{
 check_multi = 2,
 select_multi = 1
}

Support array input with name

This is like supporting input which mimic class and property, which can be uses to handle dynamic input support PHP style (dynamic language) and ASP.NET MVC binding style (static language which uses class)

<div class="name-index">
 <input name="name[1]" value="Foo">
 <input name="name[0]" value="Bar">
</div>
<div class="user-single">
 <input name="user.title" value="Mr.">
 <input name="user[name]" value="Foo Bar">
</div>
<div class="user-static">
 <input name="users[0].title" value="Mr.">
 <input name="users[0].name" value="John Do">
</div>
<div class="user-dynamic">
 <input name="users[0][title]" value="Ms.">
 <input name="users[0][name]" value="Jane Do">
</div>

converted into

{
 name = {
  "Bar",
  "Foo"
 },
 user = {
  title = "Mr.",
  name = "Foo Bar"
 },
 users = {
  {
   title = "Mr.",
   name = "John Do"
  },
  {
   title = "Ms.",
   name = "Jane Do"
  }
 }
}

Back to TOC

Copyright and License

This module is licensed under the BSD license.

Copyright (C) 2015, by Anton Heryanto Hasan.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Back to TOC

See Also

Back to TOC

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.