Advertisement
austinv11

GitHub API

Jan 21st, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. function gitGet(user, repo, branch, path, toPath)
  2.         local dl = http.get("https://raw.github.com/"..user.."/"..repo.."/"..branch.."/"..path)
  3.         if dl then
  4.                 local file = dl.readAll()
  5.                 dl.close()
  6.                 local check = fs.exists(toPath)
  7.                 if check == true then
  8.                         return false
  9.                 else
  10.             if toPath == nil then
  11.                 local w = fs.open(path, "w")
  12.             else
  13.                             local w = fs.open(toPath,"w")
  14.                 end
  15.                         if w then
  16.                                 w.write(file)
  17.                                 w.close()
  18.                                 return true
  19.                         else
  20.                                 return false
  21.                                 end
  22.                         end
  23.         else
  24.                 return false
  25.                 end
  26.         end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement