Class: CPEE::Properties::PatchItems

Inherits:
Riddl::Implementation
  • Object
show all
Defined in:
lib/cpee/implementation_properties.rb

Overview

}}}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.set(item, id, opts, xml) ⇒ Object



394
395
396
397
398
399
400
# File 'lib/cpee/implementation_properties.rb', line 394

def self::set(item, id, opts, xml)
  doc = XML::Smart::string(xml)
  val = doc.find("/*/*").map do |ele|
    [ele.qname.name, ele.text]
  end.to_h
  CPEE::Persistence::set_list(id,opts,item,val)
end

.set_hash(item, id, opts, val) ⇒ Object

{{{



391
392
393
# File 'lib/cpee/implementation_properties.rb', line 391

def self::set_hash(item, id, opts, val)
  CPEE::Persistence::set_list(id,opts,item,val)
end

Instance Method Details

#responseObject



402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
# File 'lib/cpee/implementation_properties.rb', line 402

def response
  item = @a[0]
  id = @a[1]
  opts = @a[2]
  if opts[:statemachine].readonly? id
    @status = 423
  elsif opts[:statemachine].final? id
    @status = 410
  else
    begin
      PatchItems::set(item,id,opts,@p[0].value.read)
    rescue
      @status = 400
    end
  end
  nil
end