summaryrefslogtreecommitdiff
path: root/lib/leap_ca/cert.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-09-20 13:15:33 +0200
committerAzul <azul@riseup.net>2012-09-20 13:17:17 +0200
commit1bac88549fc3bfda81e04b2811443a301aa9e781 (patch)
tree1d646219965216479e5c770d82eec543a80044aa /lib/leap_ca/cert.rb
parent15354c284879c734ca9bd87450d715dcdbe8aec2 (diff)
moved files into own dir and added main leap_ca.rb
Also updated the couchdb.yml.example with more meaningful content
Diffstat (limited to 'lib/leap_ca/cert.rb')
-rw-r--r--lib/leap_ca/cert.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/leap_ca/cert.rb b/lib/leap_ca/cert.rb
new file mode 100644
index 0000000..80adfbb
--- /dev/null
+++ b/lib/leap_ca/cert.rb
@@ -0,0 +1,37 @@
+require 'couchrest_model'
+
+class Cert < CouchRest::Model::Base
+
+ use_database 'certs'
+
+ timestamps!
+
+ property :random, Float, :accessible => false
+
+ before_validation :set_random, :attach_zip, :on => :create
+
+ validates :random, :presence => true,
+ :numericality => {:greater_than => 0, :less_than => 1}
+
+ validates :zipped, :presence => true
+
+ design do
+ end
+
+ def set_random
+ self.random = rand
+ end
+
+ def attach_zip
+ self.create_attachment :file => StringIO.new("dummy cert"), :name => zipname
+ end
+
+ def zipname
+ 'cert.zip'
+ end
+
+ def zipped
+ attachments[zipname]
+ end
+
+end