class Wco::Site

def self.kinds_list

def self.kinds_list
  [nil] + KINDS
end

def self.list

def self.list
  [[nil,nil]] + all.map { |s| [ s.origin, s.id ] }
end

def body

def body
  {
    "_links": {
      "type":{"href":"http://pi.local/rest/type/node/article"}
    },
    "title":[{"value":"Node +++ 123 bac +++" }],
    "body":[{"value": "<b>hello, wor</b>ld!", "format": "full_html" }],
    "type":[{"target_id":"article"}],
    "status": [{"value": 1}],
    "_embedded": {
      "http://pi.local/rest/relation/node/article/field_issue": [
        { "uuid": [{ "value": "56229a95-d675-43e1-99b1-f9e11b5579c5" }] }
      ],
      "http://pi.local/rest/relation/node/article/field_tags": [
        { "uuid": [{ "value": "45646a7d-1a16-42e8-b758-f6e1c8d976f7" }] },
        { "uuid": [{ "value": "834e34e2-05ae-498d-b876-453798872ce1" }] }
      ]
    }
  }
end

def do_post

def do_post
  HTTParty.post( post_url,
    body: JSON.generate( body ),
    headers: { 'Content-Type' => 'application/hal+json' },
    basic_auth: { username: username, password: password },
  )
end

def to_s

def to_s
  origin
end