-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaipower.rb
executable file
·63 lines (60 loc) · 1.53 KB
/
taipower.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env ruby
require 'bundler/setup'
require 'faraday'
require 'fast_jsonparser'
require 'aws-sdk-dynamodb'
ENV['TZ'] = 'UTC'
module Taipower
class Generation
def fetch
url = 'https://www.taipower.com.tw/d006/loadGraph/loadGraph/data/genary_eng.json'
res = Faraday.get(url)
json = FastJsonparser.parse(res.body)
@time = Time.strptime(json[:""], '%Y-%m-%d %H:%M')
@r_gen = []
@r_units = {}
json[:dataset].each do |row|
#0:fueltype
row[0] =~ %r|<b>(.*)</b>|
production_type = $1
#1:blank
#2:unit_id
unit_id = row[2]
#3:capacity
#4:output
value = (row[4].to_f*1000).to_i
#output as % of capacity
#remark
#blank
if unit_id.include? 'Subtotal'
@r_gen << {production_type:, value:}
else
@r_units[unit_id] ||= {unit_id:, value: 0}
@r_units[unit_id][:value] += value
end
end
@r_units = @r_units.values
#require 'pry' ; binding.pry
end
def to_json
{
time: @time.to_i,
generation: @r_gen,
units: @r_units,
}
end
def store
client = Aws::DynamoDB::Client.new(region: "ap-east-1")
@dynamo_resource = Aws::DynamoDB::Resource.new(client: client)
@table = @dynamo_resource.table('taipower')
@table.put_item(item: to_json)
end
end
end
def handler(event:, context:)
a = Taipower::Generation.new
a.fetch
#puts a.to_json
a.store
end
#handler(event:nil, context:nil)