123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- require 'rubygems'
- require 'json'
- require 'xml/smart'
- require 'riddl/server'
- require 'fileutils'
- require 'typhoeus'
- class NewInstance < Riddl::Implementation
- def response
-
- entries = Dir.entries(File.join('data')).size
- Dir.mkdir(File.join('data',entries.to_s)) rescue nil
-
- Riddl::Parameter::Complex.new('text','text/plain',entries.to_s)
- end
- end
- class Index < Riddl::Implementation
- def response
- Riddl::Parameter::Complex.new('url','text/html',File.open(File.join(__dir__,'template','index.html')))
- end
- end
- class Builder < Riddl::Implementation
- def response
- Riddl::Parameter::Complex.new('url','text/html',File.open(File.join(__dir__,'template','builder.html')))
- end
- end
- class DisplayForm < Riddl::Implementation
- def response
-
- Riddl::Parameter::Complex.new('url','text/html',File.open(File.join(__dir__,'template','form.html')))
- end
- end
- class SaveForm < Riddl::Implementation
- def response
- File.write(File.join('data',@r[0],'form.json'),@p[0].value.read)
- end
- end
- class SaveHtmlForm < Riddl::Implementation
- def response
- file = File.read(File.join(__dir__,'template','form_min.html'))
- File.write(File.join('data',@r[0],'form_min.html'),(file.sub! '<!--FormComesHere-->', @p[0].value.read))
- end
- end
- class GetJson < Riddl::Implementation
- def response
- fname = File.join('data',@r[-2],'form.json')
- if File.exists? fname
- Riddl::Parameter::Complex.new('value','application/json',File.read(fname))
- else
- @status = 404
- end
- end
- end
- server = Riddl::Server.new(File.join(__dir__,'/forms.xml'), :host => 'localhost') do |opts|
- accessible_description true
- cross_site_xhr true
- on resource do
- run Index if get
- run NewInstance if post
- on resource do |r|
- run DisplayForm if get
- on resource 'builder' do
- run Builder if get
- run SaveForm if post 'form'
- run SaveHtmlForm if post 'htmlform'
- end
- on resource 'json' do
- run GetJson if get
- end
- end
- end
- end.loop!
|