File size: 1,677 Bytes
c2c5fc6
 
c4461d3
82e716c
c2c5fc6
82e716c
c2c5fc6
 
 
 
 
 
 
c4461d3
 
c2c5fc6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82e716c
c2c5fc6
 
 
 
 
 
 
 
 
82e716c
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
import pymongo
import os
from config import DATABASE, COLLECTION
from logger import get_logger

logger = get_logger()

class DBWrite:
    """
    Inserts processed news into MongoDB
    """
    def __init__(self):
        self.url = os.getenv('DB_URL')
        self.database = DATABASE
        self.collection = COLLECTION
        self.__client = None
        self.__error = 0

    def __connect(self):
        try:
            self.__client = pymongo.MongoClient(self.url)
            _ = self.__client.list_database_names()
        except Exception as conn_exception:
            self.__error = 1
            self.__close_connection()
            self.__client = None
            raise

    def __insert(self, documents):
        try:

            db = self.__client[self.database]
            coll = db[self.collection]
            coll.drop()
            coll.insert_many(documents=documents)
        except Exception as insert_err:
            self.__error = 1
            self.__close_connection()
            raise

    def __close_connection(self):
        if self.__client is not None:
            self.__client.close()
            self.__client = None

    def insert_news_into_db(self, documents: list):
        logger.warning('Entering insert_news_into_db()')
        if self.url is not None:
            if self.__error == 0:
                self.__connect()
            if self.__error == 0:
                self.__insert(documents=documents)
            if self.__error == 0:
                print("Insertion Successful")
            if self.__client is not None:
                self.__close_connection()
        logger.warning('Exiting insert_news_into_db()')