aboutsummaryrefslogtreecommitdiffstats
path: root/python/sandcrawler/db.py
blob: 104920bd8c4ab09f1d478165234d2eca807ee47d (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141

import json
import psycopg2
import psycopg2.extras
import requests

class SandcrawlerPostgrestClient:

    def __init__(self, api_url="http://aitio.us.archive.org:3030", **kwargs):
        self.api_uri = api_url

    def get_cdx(self, url):
        resp = requests.get(self.api_url + "/cdx", params=dict(url='eq.'+url))
        resp.raise_for_status()
        return resp.json() or None

    def get_grobid(self, sha1):
        resp = requests.get(self.api_url + "/grobid", params=dict(sha1hex='eq.'+sha1))
        resp.raise_for_status()
        resp = resp.json()
        if resp:
            return resp[0]
        else:
            return None

    def get_file_meta(self, sha1):
        resp = requests.get(self.api_url + "/file_meta", params=dict(sha1hex='eq.'+sha1))
        resp.raise_for_status()
        resp = resp.json()
        if resp:
            return resp[0]
        else:
            return None

class SandcrawlerPostgresClient:

    def __init__(self, db_url, **kwargs):
        self.conn = psycopg2.connect(db_url)

    def cursor(self):
        return self.conn.cursor()

    def commit(self):
        return self.conn.commit()

    def insert_cdx(self, cur, batch, on_conflict="NOTHING"):
        sql = """
            INSERT INTO
            cdx (url, datetime, sha1hex, mimetype, warc_path, warc_csize, warc_offset)
            VALUES %s
            ON CONFLICT ON CONSTRAINT cdx_pkey DO {}
            RETURNING 1;
        """.format(on_conflict)
        batch = [d for d in batch if d.get('warc_offset')]
        if not batch:
            return 0
        batch = [(d['url'],
                  d['datetime'],
                  d['sha1hex'],
                  d['mimetype'],
                  d['warc_path'],
                  d['warc_csize'],
                  d['warc_offset'])
                 for d in batch]
        res = psycopg2.extras.execute_values(cur, sql, batch) # fetch=True
        #return len(res)

    def insert_file_meta(self, cur, batch, on_conflict="NOTHING"):
        sql = """
            INSERT INTO
            file_meta(sha1hex, sha256hex, md5hex, size_bytes, mimetype)
            VALUES %s
            ON CONFLICT (sha1hex) DO {};
        """.format(on_conflict)
        batch = [(d['sha1hex'],
                  d['sha256hex'],
                  d['md5hex'],
                  int(d['size_bytes']),
                  d['mimetype'])
                 for d in batch]
        res = psycopg2.extras.execute_values(cur, sql, batch)

    def insert_grobid(self, cur, batch, on_conflict="NOTHING"): # XXX
        sql = """
            INSERT INTO
            grobid (sha1hex, grobid_version, status_code, status, fatcat_release, metadata)
            VALUES %s
            ON CONFLICT (sha1hex) DO {};
        """.format(on_conflict)
        for r in batch:
            if r.get('metadata'):
                r['metadata'] = json.dumps(r['metadata'], sort_keys=True)
        batch = [(d['key'],
                  d.get('grobid_version') or None,
                  d['status_code'],
                  d['status'],
                  d.get('fatcat_release') or None,
                  d.get('metadata') or None ,
                 )
                 for d in batch]
        res = psycopg2.extras.execute_values(cur, sql, batch)

    def insert_ingest_request(self, cur, batch, on_conflict="NOTHING"):
        sql = """
            INSERT INTO
            ingest_request (link_source, link_source_id, ingest_type, base_url, ingest_request_source, release_stage, request, metadata)
            VALUES %s
            ON CONFLICT ON CONSTRAINT ingest_request_pkey DO {};
        """.format(on_conflict)
        for r in batch:
            if r.get('metadata'):
                r['metadata'] = json.dumps(r['metadata'], sort_keys=True)
        batch = [(d['link_source'],
                  d['link_source_id'],
                  d['ingest_type'],
                  d['base_url'],
                  d.get('ingest_request_source'),
                  d.get('release_stage') or None,
                  d.get('request') or None,
                 )
                 for d in batch]
        res = psycopg2.extras.execute_values(cur, sql, batch)

    def insert_ingest_file_result(self, cur, batch, on_conflict="NOTHING"):
        sql = """
            INSERT INTO
            ingest_file_result (ingest_type, base_url, hit, status, terminal_url, terminal_dt, terminal_status_code, terminal_sha1hex)
            VALUES %s
            ON CONFLICT DO {};
        """.format(on_conflict)
        batch = [(d['ingest_type'],
                  d['base_url'],
                  bool(d['hit']),
                  d['status'],
                  d.get('terminal_url'),
                  d.get('terminal_dt'),
                  d.get('terminal_status_code'),
                  d.get('terminal_sha1hex'),
                 )
                 for d in batch]
        res = psycopg2.extras.execute_values(cur, sql, batch)