Class: ONVIF::EventAction::Renew

Inherits:
Action
  • Object
show all
Defined in:
lib/ruby_onvif_client/event_handing/renew.rb

Instance Method Summary collapse

Methods inherited from Action

#attribute, #callback, #create_event_onvif_message, #create_media_onvif_message, #create_ptz_onvif_message, #initialize, #send_message, #value

Constructor Details

This class inherits a constructor from ONVIF::Action

Instance Method Details

#run(time, cb) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/ruby_onvif_client/event_handing/renew.rb', line 6

def run time, cb
    message = Message.new namespaces: {:'xmlns:wsdl' => 'http://www.onvif.org/ver10/events/wsdl', 'xmlns' => "http://docs.oasis-open.org/wsn/b-2"}
    message.body =  ->(xml) do
        xml.Renew do
            xml.TerminationTime time
        end
    end
    send_message message do |success, result|
        if success
            xml_doc = Nokogiri::XML(result[:content])
            res = {}
            current_time = xml_doc.xpath('//wsnt:CurrentTime').first.content
            termination_time = xml_doc.xpath('//wsnt:TerminationTime').first.content
            puts current_time, termination_time
            res[:current_time] = current_time
            res[:termination_time] = termination_time
            callback cb, success, res
        else
            callback cb, success, result
        end
    end
end