-
Notifications
You must be signed in to change notification settings - Fork 30
/
scrapymongodb.py
66 lines (54 loc) · 2.58 KB
/
scrapymongodb.py
1
2
3
4
5
6
7
8
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2011 Julien Duponchelle <[email protected]>.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""MongoDB Pipeline for scrapy"""
import logging
import pymongo
import six
MONGODB_ITEM_ID_FIELD = "_id"
logger = logging.getLogger(__name__)
class MongoDBPipeline(object):
def __init__(self, mongodb_server, mongodb_port, mongodb_db, mongodb_collection, mongodb_uniq_key,
mongodb_item_id_field):
connection = pymongo.MongoClient(mongodb_server, mongodb_port)
self.mongodb_db = mongodb_db
self.db = connection[mongodb_db]
self.mongodb_collection = mongodb_collection
self.collection = self.db[mongodb_collection]
self.uniq_key = mongodb_uniq_key
self.item_id = mongodb_item_id_field
if isinstance(self.uniq_key, six.string_types) and self.uniq_key == "":
self.uniq_key = None
if self.uniq_key:
self.collection.create_index(self.uniq_key, unique=True)
@classmethod
def from_crawler(cls, crawler):
settings = crawler.settings
return cls(settings.get('MONGODB_SERVER', 'localhost'), settings.get('MONGODB_PORT', 27017),
settings.get('MONGODB_DB', 'scrapy'), settings.get('MONGODB_COLLECTION', None),
settings.get('MONGODB_UNIQ_KEY', None), settings.get('MONGODB_ITEM_ID_FIELD', MONGODB_ITEM_ID_FIELD))
def process_item(self, item, spider):
if self.uniq_key is None:
result = self.collection.insert_one(dict(item))
else:
result = self.collection.update_one({self.uniq_key: item[self.uniq_key]}, {'$set': dict(item)},
upsert=True)
# If item has _id field and is None
if self.item_id in item.fields and not item.get(self.item_id, None):
item[self.item_id] = result
logger.debug("Item %s wrote to MongoDB database %s/%s, spider: %s" % (
getattr(result, 'inserted_id', getattr(result, 'upserted_id')),
self.mongodb_db,
self.mongodb_collection,
spider.name))
return item