-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_model.py
350 lines (286 loc) · 13.2 KB
/
db_model.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
# -*- coding: utf-8 -*-
# 2020.07.15 Jason :: SNS crawl data logger
import MySQLdb
class DB_model:
def __init__(self):
self.db = None
self.room_data = {}
self.room_timer = {}
self.isConnect = False
self.connect()
def __del__(self):
self.close()
# Database connector
def connect(self):
self.db = MySQLdb.connect(host="127.0.0.1", user="root", passwd="devasdf4112", db="videorighter",
charset="utf8mb4",
init_command="SET NAMES UTF8MB4")
self.isConnect = True
# Database disconnect
def close(self):
self.db.close()
self.isConnect = False
# Check data body exists ( 본문 기존에 입력된 내용인지 체크 )
def get_data_body_exists(self, data_pk):
# Connection resource 재사용
if not self.isConnect:
self.connect()
c = self.db.cursor(MySQLdb.cursors.DictCursor)
c.execute(
"SELECT count(*) as cnt, MAX(time_update) as last_time_update "
"FROM videorighter.TBL_DATA_LIST WHERE data_pk = %s",
[data_pk])
row = c.fetchone()
if not row['cnt']:
row['last_time_update'] = '0000-00-00 00:00:00'
return row
"""
본문 내용 입력 모듈
=================
본문 내용을 기록하며 기존 입력 내용이 있을 경우 카운트만 업데이트 하며 변화 추이를 볼수 있도록 로그에 기록시켜줍니다.
:Method Call Example :
>>> set_data_body(1, {unique_id : 1, user_name : 'sample'} )
Parameters information
-----------------
:param channel_type : 채널 타입 ( 1=Youtube, 2=Instagram, 3=Naver, 4=Glowpick )
:param row : 게시물 Dictionary
Dictionary information :
:key unique_id : each postings unique_id ( e.g. : instagram shortcode )
:key keyword : search keyword
:key user_name : posting user name or user nicname
:key title : posting title
:key user_id : 업로드 유저의 id
:key posting_date : 작성 시간 Y-m-d H:i:s
:key view_count : 조회수
:key like_count : 좋아요 수
:key dislike_count : 싫어요 수
:key contents : 본문 내용
:key user_follow : 유저의 팔로우 수
:key user_follower : 유저 팔로워 수
:key user_medias : 유저의 포스팅(미디어) 수
:key comment_count : 게시글의 코멘트 갯수
이러한 형태로 보내주면 됩니다.
{
unique_id : '',
keyword : '',
user_name : '',
title : '',
user_id : '',
posting_date : '',
view_count : '',
like_count : '',
dislike_count : '',
contents : '',
user_follow : '',
user_follower : '',
user_medias : '',
comment_count : ''
}
Return data
-----------------
:return Dictionary
{
is_new(Boolean) : 신규 게시물인지 여부,
last_time_update(String) : 마지막 업데이트 시간
}
"""
def set_data_body(self, channel_type, row):
# Connection resource 재사용
if not self.isConnect:
self.connect()
# 기존 입력된 내용인지 검사
last_data = self.get_data_body_exists(row['unique_id'])
c = self.db.cursor()
is_new = False
if last_data['cnt'] < 1:
is_new = True
# data body 신규 입력
c.execute((
"INSERT INTO `videorighter`.`TBL_DATA_LIST` (`channel_type`, `data_pk`, `keyword`, `data_title`, "
"`data_creater_id`, `data_creater_name`, `data_time_create`, `data_view_count`, `data_like_count`, "
"`data_dislike_count`, `data_body`, `data_user_follow`, `data_user_follower`, `data_user_medias`, "
"`data_cmt_count`, `time_update`)"
"VALUES ('{channel_type}', '{data_pk}', '{keyword}', '{data_title}', '{data_creater_id}', "
"'{data_creater_name}', '{data_time_create}', '{data_view_count}', '{data_like_count}', "
"'{data_dislike_count}', '{data_body}', '{data_user_follow}', '{data_user_follower}', "
"'{data_user_medias}', '{data_cmt_count}', now())").format(
channel_type=channel_type,
data_pk=row['unique_id'],
keyword=row['keyword'],
data_title=row['title'],
data_creater_id=row['user_id'],
data_creater_name=row['user_name'],
data_time_create=row['posting_date'],
data_view_count=row['view_count'],
data_like_count=row['like_count'],
data_dislike_count=row['dislike_count'],
data_body=row['contents'],
data_user_follow=row['user_follow'],
data_user_follower=row['user_follower'],
data_user_medias=row['user_medias'],
data_cmt_count=row['comment_count']
))
else:
# data body 업데이트
c.execute((
"UPDATE `videorighter`.`TBL_DATA_LIST` SET "
"data_title = '{data_title}',"
"keyword = '{keyword}',"
"data_view_count = '{data_view_count}',"
"data_like_count = '{data_like_count}',"
"data_dislike_count = '{data_dislike_count}',"
"data_user_follow = '{data_user_follow}',"
"data_user_follower = '{data_user_follower}',"
"data_user_medias = '{data_user_medias}',"
"data_cmt_count = '{data_cmt_count}',"
"time_update = now()"
"WHERE data_pk = '{data_pk}'").format(
data_pk=row['unique_id'],
data_title=row['title'],
keyword=row['keyword'],
data_view_count=row['view_count'],
data_like_count=row['like_count'],
data_dislike_count=row['dislike_count'],
data_user_follow=row['user_follow'],
data_user_follower=row['user_follower'],
data_user_medias=row['user_medias'],
data_cmt_count=row['comment_count']
))
# Set Data Log
c.execute((
"INSERT INTO `videorighter`.`TBL_DATA_LIST_LOG` (`channel_type`, `data_pk`, `keyword`, `data_view_count`, "
"`data_like_count`, `data_dislike_count`, `data_user_follow`, `data_user_follower`, `data_user_medias`, "
"`data_cmt_count`)"
"VALUES ('{channel_type}', '{data_pk}', '{keyword}', '{data_view_count}', '{data_like_count}', "
"'{data_dislike_count}', '{data_user_follow}', '{data_user_follower}', '{data_user_medias}', "
"'{data_cmt_count}')").format(
channel_type=channel_type,
data_pk=row['unique_id'],
keyword=row['keyword'],
data_view_count=row['view_count'],
data_like_count=row['like_count'],
data_dislike_count=row['dislike_count'],
data_user_follow=row['user_follow'],
data_user_follower=row['user_follower'],
data_user_medias=row['user_medias'],
data_cmt_count=row['comment_count']
))
return {'is_new': is_new, 'last_time_update': str(last_data['last_time_update'])}
"""
본문의 코멘트 입력 모듈
===================
:Method Call Example :
>>> set_data_comment({unique_id : 1, user_name : 'sample'}, True )
Parameters information
-----------------
:param row : 코멘트 정보 Dictionary
Dictionary information :
:key unique_id : each postings unique_id ( e.g. : instagram shortcode )
:key keyword : search keyword
:key user_name : comment user name or user nicname
:key comment_date : 코멘트 작성 시간 Y-m-d H:i:s
:key comment_like : 좋아요 수
:key contents : 본문 내용
이러한 형태로 보내주면 됩니다.
{
unique_id : '',
keyword : '',
user_name : '',
comment_date : '',
comment_like : '',
contents : ''
}
:param is_new : 본문 입력시 리턴된 신규게시물인지 여부 Boolean 값 (is_new)
:param last_time_update : set_data_body 함수에서 리턴된 마지막 업데이트 시간 값
Return data
-----------------
:return 처리 결과(Boolean) : True = 입력, False = 입력안함
"""
def set_data_comment(self, channel_type, row, is_new=False, last_time_update="1970-01-01 00:00:00"):
# Connection resource 재사용
if not self.isConnect:
self.connect()
c = self.db.cursor()
# 기존에 수집이 되었던 포스트라면 코멘트 입력 날짜를 기준으로 오늘 이전의 코멘트는 입력하지 않음
if not is_new:
# 기존 게시물이면서 코멘트가 마지막 업데이트시간 이전에 작성된거라면 입력하지 않음
if self.days_between(last_time_update, row['comment_date']).days >= 0:
return False
c.execute((
"INSERT INTO `videorighter`.`TBL_CMT_DATA_LIST` (`channel_type`, `data_pk`, `keyword`, `cmt_creater_name`, "
"`cmt_body`, `cmt_time_create` , `cmt_like_count` )"
"VALUES ('{channel_type}', '{data_pk}', '{keyword}', '{cmt_creater_name}', '{cmt_body}', "
"'{cmt_time_create}', '{cmt_like_count}')").format(
channel_type=channel_type,
data_pk=row['unique_id'],
keyword=row['keyword'],
cmt_creater_name=row['user_name'],
cmt_body=row['comment'],
cmt_time_create=row['comment_date'],
cmt_like_count=float(row['comment_like'])
))
return True
"""
일별 / 키워드별 / 채널별 수집 기록
============================
:Method Call Example :
>>> set_daily_log(키워드, 채널타입(숫자), 업데이트시 직전 row.primary_key )
Parameters information
:param keyword(String) : 수집한 키워드
:param channel_type(Int) : SNS 채널 종류 채널 타입 ( 1=Youtube, 2=Instagram, 3=Naver, 4=Glowpick )
:param row_id(Int)[Optional] : 최초 기록 Insert 후 생성되는 row id ( Primary Key ) 값 ,
업데이트시 해당 키값을 파라메터로 보내주면 업데이트 됩니다.
-----------------
"""
def set_daily_log(self, keyword, channel_type, row_id=0):
# Connection resource 재사용
if not self.isConnect:
self.connect()
c = self.db.cursor()
# row_id 가 없다면 최초 신규 입력
if row_id < 1:
c.execute((
"INSERT INTO `videorighter`.`TBL_DAILY_LOG` (`keyword`, `channel_type`, `time_start` )"
"VALUES ('{keyword}', '{channel_type}', now())").format(
keyword=keyword,
channel_type=channel_type
))
row_id = self.db.insert_id()
else:
# 프로세스 종료시점에 시간을 기록하기위해 업데이트 row_id 필요.
c.execute(("UPDATE `videorighter`.`TBL_DAILY_LOG` SET time_end = now() WHERE idx = '{row_id}'").format(
row_id=row_id
))
return row_id
def set_data_body_info(self, channel_type, is_new, row):
# Connection resource 재사용
if not self.isConnect:
self.connect()
c = self.db.cursor()
if is_new:
# data body 신규 입력
for opt_row in row['additional_data']:
c.execute((
"INSERT INTO `videorighter`.`TBL_DATA_LIST_OPT` ("
"`channel_type`, `data_pk`, `keyword`, `data_key`, `data_value`, `time_update`) "
"VALUES ('{channel_type}', '{data_pk}', '{keyword}', '{data_key}', '{data_value}', now())").format(
channel_type=channel_type,
data_pk=row['unique_id'],
keyword=row['keyword'],
data_key=opt_row['data_key'],
data_value=opt_row['data_value']
))
else:
# data body info 업데이트
for opt_row in row['additional_data']:
c.execute((
"UPDATE `videorighter`.`TBL_DATA_LIST_OPT` SET "
"data_key = '{data_key}',"
"data_value = '{data_value}',"
"time_update = now()"
"WHERE data_pk = '{data_pk}' AND data_key = '{data_key}' ").format(
data_pk=row['unique_id'],
data_key=opt_row['data_key'],
data_value=opt_row['data_value']
))
return {'is_new': is_new}