mirror of
				https://github.com/j-a-n/raspberrymatic-addon-rmupdate.git
				synced 2023-10-10 11:37:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
| #!/bin/tclsh
 | |
| 
 | |
| #  RaspMatic update addon
 | |
| #
 | |
| #  Copyright (C) 2017  Jan Schneider <oss@janschneider.net>
 | |
| #
 | |
| #  This program is free software: you can redistribute it and/or modify
 | |
| #  it under the terms of the GNU General Public License as published by
 | |
| #  the Free Software Foundation, either version 3 of the License, or
 | |
| #  (at your option) any later version.
 | |
| #
 | |
| #  This program is distributed in the hope that it will be useful,
 | |
| #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| #  GNU General Public License for more details.
 | |
| #
 | |
| #  You should have received a copy of the GNU General Public License
 | |
| #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| source /usr/local/addons/rmupdate/lib/rmupdate.tcl
 | |
| 
 | |
| proc json_string {str} {
 | |
| 	set replace_map {
 | |
| 		"\"" "\\\""
 | |
| 		"\\" "\\\\"
 | |
| 		"\b"  "\\b"
 | |
| 		"\f"  "\\f"
 | |
| 		"\n"  "\\n"
 | |
| 		"\r"  "\\r"
 | |
| 		"\t"  "\\t"
 | |
| 	}
 | |
| 	return "[string map $replace_map $str]"
 | |
| }
 | |
| 
 | |
| proc process {} {
 | |
| 	global env
 | |
| 	if { [info exists env(QUERY_STRING)] } {
 | |
| 		set query $env(QUERY_STRING)
 | |
| 		set data ""
 | |
| 		if { [info exists env(CONTENT_LENGTH)] } {
 | |
| 			set data [read stdin $env(CONTENT_LENGTH)]
 | |
| 		}
 | |
| 		set path [split $query {/}]
 | |
| 		set plen [expr [llength $path] - 1]
 | |
| 		
 | |
| 		if {[lindex $path 1] == "version"} {
 | |
| 			return "\"[rmupdate::version]\""
 | |
| 		} elseif {[lindex $path 1] == "get_firmware_info"} {
 | |
| 			return [rmupdate::get_firmware_info]
 | |
| 		} elseif {[lindex $path 1] == "install_firmware"} {
 | |
| 			fconfigure stdout -buffering none
 | |
| 			#puts "Content-Type: application/octet-stream"
 | |
| 			puts "Content-Type: text/html; charset=utf-8"
 | |
| 			puts "Status: 200 OK";
 | |
| 			puts ""
 | |
| 			flush stdout
 | |
| 			after 1000
 | |
| 			puts "Line 1\n"
 | |
| 			flush stdout
 | |
| 			after 1000
 | |
| 			puts "Line 2\n"
 | |
| 			flush stdout
 | |
| 			after 1000
 | |
| 			puts "Line 3\n"
 | |
| 			flush stdout
 | |
| 			after 1000
 | |
| 			puts "Line 4\n"
 | |
| 			flush stdout
 | |
| 			return ""
 | |
| 		}
 | |
| 	}
 | |
| 	error "invalid request" "Not found" 404
 | |
| }
 | |
| 
 | |
| if [catch {process} result] {
 | |
| 	set status 500
 | |
| 	if { [info exists $errorCode] } {
 | |
| 		set status $errorCode
 | |
| 	}
 | |
| 	puts "Content-Type: application/json"
 | |
| 	puts "Status: $status";
 | |
| 	puts ""
 | |
| 	set result [json_string $result]
 | |
| 	puts -nonewline "\{\"error\":\"${result}\"\}"
 | |
| } elseif {$result != ""} {
 | |
| 	puts "Content-Type: application/json"
 | |
| 	puts "Status: 200 OK";
 | |
| 	puts ""
 | |
| 	puts -nonewline $result
 | |
| }
 |