Class: OmahPluginSqlite
- Inherits:
-
Object
- Object
- OmahPluginSqlite
- Defined in:
- lib/omah-plugin-sqlite.rb
Instance Method Summary collapse
-
#initialize(settings: {}, variables: {}) ⇒ OmahPluginSqlite
constructor
A new instance of OmahPluginSqlite.
- #on_newmessage(h) ⇒ Object
Constructor Details
#initialize(settings: {}, variables: {}) ⇒ OmahPluginSqlite
Returns a new instance of OmahPluginSqlite.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/omah-plugin-sqlite.rb', line 9 def initialize(settings: {}, variables: {}) dbfile = settings[:dbfile] if File.exists? dbfile then @db = SQLite3::Database.new dbfile else @db = SQLite3::Database.new dbfile # Create a database rows = @db.execute "create table headers (\n uid integer primary key,\n from_x varchar(50),\n to_x varchar(50),\n subject varchar(140),\n date timestamp\n\n);\n" end end |
Instance Method Details
#on_newmessage(h) ⇒ Object
38 39 40 41 42 43 |
# File 'lib/omah-plugin-sqlite.rb', line 38 def (h) @db.execute("INSERT INTO headers (uid, from_x, to_x, subject, date) VALUES (?, ?, ?, ?, ?)", [(Time.now.strftime("%y%m%d") + \ h[:uid].to_s)] + i(from to subject date).map{|x| h[x]} ) end |