1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-05 14:57:30 +01:00
metasploit-framework/lib/anemone/storage/mongodb.rb
HD Moore b3cc6e19b6 Initial import of an Anemone snapshot
git-svn-id: file:///home/svn/framework3/trunk@10924 4d416f70-5f16-0410-b530-b9f4589650da
2010-11-06 04:34:43 +00:00

90 lines
1.7 KiB
Ruby

begin
require 'mongo'
rescue LoadError
puts "You need the mongo gem to use Anemone::Storage::MongoDB"
exit
end
module Anemone
module Storage
class MongoDB
BINARY_FIELDS = %w(body headers data)
def initialize(mongo_db, collection_name)
@db = mongo_db
@collection = @db[collection_name]
@collection.remove
@collection.create_index 'url'
end
def [](url)
if value = @collection.find_one('url' => url.to_s)
load_page(value)
end
end
def []=(url, page)
hash = page.to_hash
BINARY_FIELDS.each do |field|
hash[field] = BSON::Binary.new(hash[field]) unless hash[field].nil?
end
@collection.update(
{'url' => page.url.to_s},
hash,
:upsert => true
)
end
def delete(url)
page = self[url]
@collection.remove('url' => url.to_s)
page
end
def each
@collection.find do |cursor|
cursor.each do |doc|
page = load_page(doc)
yield page.url.to_s, page
end
end
end
def merge!(hash)
hash.each { |key, value| self[key] = value }
self
end
def size
@collection.count
end
def keys
keys = []
self.each { |k, v| keys << k.to_s }
keys
end
def has_key?(url)
!!@collection.find_one('url' => url.to_s)
end
def close
@db.connection.close
end
private
def load_page(hash)
BINARY_FIELDS.each do |field|
hash[field] = hash[field].to_s
end
Page.from_hash(hash)
end
end
end
end