cleanup on impersonation
This commit is contained in:
parent
56b133d01b
commit
370a9ec0cf
@ -1,8 +1,7 @@
|
|||||||
#/usr/bin/env ruby
|
#/usr/bin/env ruby
|
||||||
## impersonate-lge.com.rb - fake version of *.lge.com
|
## impersonate-lge.com.rb - fake version of *.lge.com
|
||||||
|
|
||||||
# serving a cooked version of busybox and base-files
|
require 'base64'
|
||||||
|
|
||||||
require 'sinatra'
|
require 'sinatra'
|
||||||
|
|
||||||
port = ENV['USER'].eql?('root') ? 80 : 8080
|
port = ENV['USER'].eql?('root') ? 80 : 8080
|
||||||
@ -15,37 +14,42 @@ set :public_folder, '_public'
|
|||||||
|
|
||||||
get '/fts/:file' do |file|
|
get '/fts/:file' do |file|
|
||||||
|
|
||||||
|
t = Time.now + (8 * 60 * 60)
|
||||||
|
timestamp = t.strftime('%a, %d %b %Y %H:%m:%S GMT')
|
||||||
|
|
||||||
target_host = request.host
|
target_host = request.host
|
||||||
|
|
||||||
if target_host.match(/gfts/)
|
if target_host.match(/gfts/)
|
||||||
@type = :ngfts
|
@type = :gfts
|
||||||
|
## app store downloads
|
||||||
# http://gfts.lge.com/fts/gftsFilePathDownload.lge?key=777863&hash=6Vsai7Ky71UPgetV&mtime=1479098823000
|
# http://gfts.lge.com/fts/gftsFilePathDownload.lge?key=777863&hash=6Vsai7Ky71UPgetV&mtime=1479098823000
|
||||||
# this is the opkg update path
|
|
||||||
|
|
||||||
#redirect '/base-files/base-files.ipk'
|
|
||||||
|
|
||||||
# unfortunately, we need to set these headers:
|
key = params['key'] # 777863
|
||||||
# Server: Apache
|
hash = params['hash'] # 6Vsai7Ky71UPgetV
|
||||||
# Content-Disposition: attachment; filename="16881482.ipk"
|
mtime = params['mtime'] # 1479098823000
|
||||||
# Content-Transfer-Encoding: binary;
|
|
||||||
# Content-Type: application/octet-stream;charset=UTF-8
|
|
||||||
|
|
||||||
# and currently, we send:
|
fake_ipk_name = '16881482.ipk'
|
||||||
# Content-Type: application/vnd.shana.informed.package
|
real_ipk_file = File.join(settings.public_folder, '/gfts/base-files.ipk')
|
||||||
# and the other fields are empty
|
|
||||||
|
|
||||||
headers(
|
headers(
|
||||||
'Content-Disposition' => 'attachment; filename="base-files.ipk"',
|
'Content-Disposition' => sprintf('attachment; filename="%s"', fake_ipk_name),
|
||||||
'Content-Transfer-Encoding' => 'binary',
|
'Content-Transfer-Encoding' => 'binary',
|
||||||
'Content-Type' => 'application/octet-stream;charset=UTF-8',
|
'Content-Type' => 'application/octet-stream;charset=UTF-8',
|
||||||
'Server' => 'Apache',
|
'Server' => 'Apache',
|
||||||
)
|
)
|
||||||
|
|
||||||
send_file File.join(settings.public_folder, '/base-files/base-files.ipk')
|
send_file real_ipk_file
|
||||||
|
|
||||||
elsif target_host.match(/ngfts/)
|
elsif target_host.match(/ngfts/)
|
||||||
|
## channel searching -- images / thumbnails
|
||||||
|
# samples in line
|
||||||
@type = :ngfts
|
@type = :ngfts
|
||||||
biz_code = '' # TODO fill this in
|
|
||||||
|
biz_code = params['biz_code']
|
||||||
|
func_code = params['func_code']
|
||||||
|
file_path = params['file_path']
|
||||||
|
|
||||||
if biz_code.eql?('PREMIUMS')
|
if biz_code.eql?('PREMIUMS')
|
||||||
# TODO /fts/gftsDownload.lge?biz_code=PREMIUM&func_code=RECOMM_PROMOTION_IMAGE&file_path=/todayrecomm/template/promotion/w1_8.png
|
# TODO /fts/gftsDownload.lge?biz_code=PREMIUM&func_code=RECOMM_PROMOTION_IMAGE&file_path=/todayrecomm/template/promotion/w1_8.png
|
||||||
elsif biz_code.eql?('META_IMG')
|
elsif biz_code.eql?('META_IMG')
|
||||||
@ -57,33 +61,73 @@ get '/fts/:file' do |file|
|
|||||||
elsif biz_code.eql?('MAS')
|
elsif biz_code.eql?('MAS')
|
||||||
# TODO /fts/gftsDownload.lge?biz_code=MAS&func_code=META_THUMBNAIL&file_path=%2Fmas%2Ftms%2Fprogram%2Fp185554_b_ap.jpg
|
# TODO /fts/gftsDownload.lge?biz_code=MAS&func_code=META_THUMBNAIL&file_path=%2Fmas%2Ftms%2Fprogram%2Fp185554_b_ap.jpg
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# failover
|
||||||
redirect '/ngfts/faked-ngfts.zip'
|
redirect '/ngfts/faked-ngfts.zip'
|
||||||
|
|
||||||
elsif target_host.match(/aic/)
|
elsif target_host.match(/aic/)
|
||||||
|
## channel searching - listing JSON
|
||||||
|
# http://aic-gfts.lge.com/fts/gftsDownload.lge?biz_code=IBS&func_code=ONLINE_EPG_FILE&file_path=/ibs/online/epg_file/20161116/f_1479280636996tmsepgcrawler_merged000004417_201611160600_06_20161116070000.zip
|
||||||
@type = :aic
|
@type = :aic
|
||||||
@real_file = '/aic/faked-aic.zip'
|
|
||||||
@fake_file = '16881482.ipk'
|
fake_file = 'TODO' # TODO not sure what this is supposed to be
|
||||||
redirect real_file
|
real_file = File.join(settings.public_folder, '/aic/faked-aic.zip')
|
||||||
|
|
||||||
|
if @type.eql?(:aic)
|
||||||
|
headers(
|
||||||
|
'Server' => 'Apache',
|
||||||
|
'Content-Disposition' => sprintf('attachment; filename="%s"', fake_file),
|
||||||
|
'Content-Transfer-Encoding' => 'binary',
|
||||||
|
'Content-Type' => 'image/jpeg;charset=UTF-8',
|
||||||
|
'Connection' => 'keep-alive',
|
||||||
|
'Content-Length' => File.read(real_file).size,
|
||||||
|
'Last-Modified' => timestamp,
|
||||||
|
'Date' => timestamp,
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
send_file real_file
|
||||||
|
|
||||||
else
|
else
|
||||||
# failover
|
# failover
|
||||||
'your princess is in another castle'
|
'your princess is in another castle - lge'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
after do
|
post '/CheckSWAutoUpdate.laf' do
|
||||||
|
|
||||||
t = Time.now + (8 * 60 * 60)
|
t = Time.now + (8 * 60 * 60)
|
||||||
timestamp = t.strftime('%a, %d %b %Y %H:%m:%S GMT')
|
timestamp = t.strftime('%a, %d %b %Y %H:%m:%S GMT')
|
||||||
|
|
||||||
if @type.eql?(:aic)
|
string = "<RESPONSE>
|
||||||
response['Server'] = 'Apache'
|
<RESULT_CD>900</RESULT_CD>
|
||||||
response['Content-Disposition'] = sprintf('attachment; filename="%s"', @fake_file)
|
<MSG>Success</MSG>
|
||||||
response['Content-Transfer-Encoding'] = 'binary'
|
<REQ_ID>00000000008613244660</REQ_ID>
|
||||||
response['Content-Type'] = 'image/jpeg;charset=UTF-8'
|
<IMAGE_URL>http://snu.lge.com/fizbuzz</IMAGE_URL>
|
||||||
response['Connection'] = 'keep-alive'
|
<IMAGE_SIZE>400</IMAGE_SIZE>
|
||||||
response['Content-Length'] = File.read(@real_file).size
|
<IMAGE_NAME>fizzbuzz</IMAGE_NAME>
|
||||||
response['Last-Modified'] = timestamp
|
<UPDATE_MAJOR_VER>04</UPDATE_MAJOR_VER>
|
||||||
response['Date'] = timestamp
|
<UPDATE_MINOR_VER>30.50</UPDATE_MINOR_VER>
|
||||||
end
|
<FORCE_FLAG>Y</FORCE_FLAG>
|
||||||
|
<KE></KE>
|
||||||
|
<GMT>#{timestamp}</GMT>
|
||||||
|
<ECO_INFO>01</ECO_INFO>
|
||||||
|
<CDN_URL>http://snu.lge.com/fizzbuzz</CDN_URL>
|
||||||
|
<CONTENTS></CONTENTS>
|
||||||
|
</RESPONSE>"
|
||||||
|
|
||||||
@type = @real_file = @fake_file = nil
|
payload = Base64.strict_encode64(string)
|
||||||
|
|
||||||
|
headers(
|
||||||
|
'Date' => timestamp,
|
||||||
|
'Pragma' => 'no-cache',
|
||||||
|
'Expires' => '-1',
|
||||||
|
'Content-Type' => 'application/octet-stream;charset=UTF-8',
|
||||||
|
'Content-Length' => payload.size,
|
||||||
|
)
|
||||||
|
|
||||||
|
payload
|
||||||
|
end
|
||||||
|
|
||||||
|
after do
|
||||||
|
# noop for now
|
||||||
end
|
end
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user