728x90

 0. [node.js] - 크롤링



 1. 풀이


학교 홈페이지의 주소를 비동기로 가져온 이후, 원하는 정보를 부분적으로 잘라내 가공 후, 데이터를 저장하는 형태의 코드를 만들어보았습니다.


활용한 코드는 axios를 활용해 홈페이지 데이터를 가져오는 것 입니다.

이후 cheerio를 활용해 html 데이터 중 원하는 부분의 태그(li, ul ... etc)를 취해주었습니다. 


이제 어느정도 원하는 데이터를 가져오게 되었는데, 이 데이터를 다시 voca라는 함수를 활용해 개행문자, 줄바꿈 등을 처리해주고

마지막으로 가공을 전부 마친 이후 firebase의 db에 데이터를 보내주는 형식으로 코드를 작성하였습니다.



 2. 소스코드


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
const axios = require("axios");
const cheerio = require("cheerio");
const voca = require("voca");
const log = console.log;
const admin = require('firebase-admin');
 
//이 부분은 aws에 적용할 때 json파일을 집어넣지 않아도 사용되도록 선언을 해주었습니다.
var serviceAccount = {
  //개인 키를 넣어주면 됩니다.
};
 
 
// Initialize the app with a service account, granting admin privileges
admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
});
 
let db = admin.firestore();
 
const getHtml = async function(url) {
  try {
    // return await axios.get("https://www.uos.ac.kr/korNotice/list.do?list_id=FA1");
    return await axios.get(url);
  } catch (error) {
    console.error(error);
  }
};
//li id = "view_content"
 
const getHtml_deep = async function(url) {
  try {
    // return await axios.get("https://www.uos.ac.kr/korNotice/list.do?list_id=FA1");
    return await axios.get(url);
  } catch (error) {
    console.error(error);
  }
};
 
 
//위에 선언한 함수를 실행한다. 이때, 주소는 FA1의 일반공지를 파싱한다
getHtml("https://www.uos.ac.kr/korNotice/list.do?list_id=FA1")
  .then(html => {
    const $ = cheerio.load(html.data);
    //공지의 li부분을 $bodyList에 담아준다.
    const $bodyList = $("ul.listType").children("li");
    //li크기만큼 반복을 시행한다.
    $bodyList.each(function(i, elem) {
      //만일 이 함수의 class가 on이 아니라면 위에 배너 공지가 아니므로 크롤링을 수행한다.
      if ($(elem).attr('class'!= 'on') {
        //title 부분을 가져와서 가공한다.
        var title = $(elem).find('a').text()
        title = voca.replaceAll(title, "\t"'')
        title = voca.replaceAll(title, "\r\n"'')
        title = voca.trim(title)
        title = title.substring(5, title.length);
        //url은 a태그의 onclick을 보면 알 수 있다.
        var url = $(elem).find('a').attr('onclick')
 
        url = url.substring(8, url.length - 3);
 
        //문자열을 '에서 나눠준다.
        var post_url = url.split("'");
        var uid = post_url[2];
 
        url = "https://www.uos.ac.kr/korNotice/view.do?list_id=FA1&seq=" + uid;
 
        //추가적으로 공지사항 날짜, 부서를 가져오자.
        const $detail = $(elem).find("li");
 
        var department;
        var post_date;
 
        $detail.each(function(k, elem2) {
          if (k == 0)
            department = $(elem2).text();
          else if (k == 1)
            post_date = $(elem2).text();
        });
 
        post_date = post_date.substring(04+ post_date.substring(57+ post_date.substring(810)
        post_date = Number(post_date);
 
        getHtml_deep(url).then(html2 => {
          const m = cheerio.load(html2.data);
          // log(m.length)
          // log(m.html());
          const body = m("ul.listType").children("li");
 
          var detail;
          var l = body.length
          body.each(function(k, elem2) {
            if (k == l - 1)
              detail = $(elem2).html();
          });
 
          var docRef = db.collection('공지사항').doc(uid);
          docRef.set({
            "uid": uid,
            title: title,
            department: department,
            type: "일반 공지",
            post_date: post_date,
            detailurl: url,
            detail_content: detail
          })
        })
      }
    });
  })
 
 
 
 
//위에 선언한 함수를 실행한다. 이때, 주소는 FA1의 일반공지를 파싱한다
getHtml("https://www.uos.ac.kr/korNotice/list.do?list_id=FA2")
  .then(html => {
    const $ = cheerio.load(html.data);
    //공지의 li부분을 $bodyList에 담아준다.
    const $bodyList = $("ul.listType").children("li");
    //li크기만큼 반복을 시행한다.
    $bodyList.each(function(i, elem) {
      //만일 이 함수의 class가 on이 아니라면 위에 배너 공지가 아니므로 크롤링을 수행한다.
      if ($(elem).attr('class'!= 'on') {
        //title 부분을 가져와서 가공한다.
        var title = $(elem).find('a').text()
        title = voca.replaceAll(title, "\t"'')
        title = voca.replaceAll(title, "\r\n"'')
        title = voca.trim(title)
        title = title.substring(4, title.length);
        //url은 a태그의 onclick을 보면 알 수 있다.
        var url = $(elem).find('a').attr('onclick')
 
        url = url.substring(8, url.length - 3);
 
        //문자열을 '에서 나눠준다.
        var post_url = url.split("'");
        var uid = post_url[2];
 
        url = "https://www.uos.ac.kr/korNotice/view.do?list_id=FA2&seq=" + uid;
 
        //추가적으로 공지사항 날짜, 부서를 가져오자.
        const $detail = $(elem).find("li");
 
        var department;
        var post_date;
 
        $detail.each(function(k, elem2) {
          if (k == 0)
            department = $(elem2).text();
          else if (k == 1)
            post_date = $(elem2).text();
        });
 
        post_date = post_date.substring(04+ post_date.substring(57+ post_date.substring(810)
        post_date = Number(post_date);
 
        getHtml_deep(url).then(html2 => {
          const m = cheerio.load(html2.data);
          const body = m("ul.listType").children("li");
 
          var detail;
          var l = body.length
          body.each(function(k, elem2) {
            if (k == l - 1)
              detail = $(elem2).html();
          });
          var docRef = db.collection('공지사항').doc(uid);
          docRef.set({
            uid: uid,
            title: title,
            department: department,
            type: "학사 공지",
            post_date: post_date,
            detailurl: url,
            detail_content: detail
          })
        })
      }
    });
  })
 
 
//위에 선언한 함수를 실행한다. 이때, 주소는 FA1의 일반공지를 파싱한다
getHtml("https://www.uos.ac.kr/korNotice/list.do?list_id=FA34")
  .then(html => {
    const $ = cheerio.load(html.data);
    //공지의 li부분을 $bodyList에 담아준다.
    const $bodyList = $("ul.listType").children("li");
    //li크기만큼 반복을 시행한다.
    $bodyList.each(function(i, elem) {
      //만일 이 함수의 class가 on이 아니라면 위에 배너 공지가 아니므로 크롤링을 수행한다.
      if ($(elem).attr('class'!= 'on') {
        //title 부분을 가져와서 가공한다.
        var title = $(elem).find('a').text()
        title = voca.replaceAll(title, "\t"'')
        title = voca.replaceAll(title, "\r\n"'')
        title = voca.trim(title)
        title = title.substring(4, title.length);
        //url은 a태그의 onclick을 보면 알 수 있다.
        var url = $(elem).find('a').attr('onclick')
 
        url = url.substring(8, url.length - 3);
 
        //문자열을 '에서 나눠준다.
        var post_url = url.split("'");
        var uid = post_url[2];
 
        url = "https://www.uos.ac.kr/korNotice/view.do?list_id=FA34&seq=" + uid;
 
        //추가적으로 공지사항 날짜, 부서를 가져오자.
        const $detail = $(elem).find("li");
 
        var department;
        var post_date;
 
        $detail.each(function(k, elem2) {
          if (k == 0)
            department = $(elem2).text();
          else if (k == 1)
            post_date = $(elem2).text();
        });
 
        post_date = post_date.substring(04+ post_date.substring(57+ post_date.substring(810)
        post_date = Number(post_date);
 
        getHtml_deep(url).then(html2 => {
          const m = cheerio.load(html2.data);
          // log(m.length)
          // log(m.html());
          const body = m("ul.listType").children("li");
 
          var detail;
 
          var l = body.length
 
          body.each(function(k, elem2) {
            if (k == l - 1)
              detail = $(elem2).html();
          });
 
          var docRef = db.collection('공지사항').doc(uid);
          docRef.set({
            uid: uid,
            title: title,
            department: department,
            type: "직원채용",
            post_date: post_date,
            detailurl: url,
            detail_content: detail
          })
        })
      }
    });
  })
 
 
 
//위에 선언한 함수를 실행한다. 이때, 주소는 FA35의 창업공지를 파싱한다
getHtml("https://www.uos.ac.kr/korNotice/list.do?list_id=FA35")
  .then(html => {
    const $ = cheerio.load(html.data);
    //공지의 li부분을 $bodyList에 담아준다.
    const $bodyList = $("ul.listType").children("li");
    //li크기만큼 반복을 시행한다.
    $bodyList.each(function(i, elem) {
      //만일 이 함수의 class가 on이 아니라면 위에 배너 공지가 아니므로 크롤링을 수행한다.
      if ($(elem).attr('class'!= 'on') {
        //title 부분을 가져와서 가공한다.
        var title = $(elem).find('a').text()
        title = voca.replaceAll(title, "\t"'')
        title = voca.replaceAll(title, "\r\n"'')
        title = voca.trim(title)
        //url은 a태그의 onclick을 보면 알 수 있다.
        var url = $(elem).find('a').attr('onclick')
 
        url = url.substring(8, url.length - 3);
 
        //문자열을 '에서 나눠준다.
        var post_url = url.split("'");
        var uid = post_url[2];
 
        url = "https://www.uos.ac.kr/korNotice/view.do?list_id=FA35&seq=" + uid;
 
        //추가적으로 공지사항 날짜, 부서를 가져오자.
        const $detail = $(elem).find("li");
 
        var department = "창업지원단";
        var post_date;
 
        $detail.each(function(k, elem2) {
          if ($(elem2).text().length == 10)
            post_date = $(elem2).text();
        });
 
        post_date = post_date.substring(04+ post_date.substring(57+ post_date.substring(810)
        post_date = Number(post_date);
 
        title = title.substring(3, title.length);
 
        getHtml_deep(url).then(html2 => {
          const m = cheerio.load(html2.data);
          // log(m.length)
          // log(m.html());
          const body = m("ul.listType").children("li");
 
          var detail;
          var l = body.length
 
 
          body.each(function(k, elem2) {
            if (k == l - 1)
              detail = $(elem2).html();
          });
 
          var docRef = db.collection('공지사항').doc(uid);
          docRef.set({
            uid: uid,
            title: title,
            department: department,
            type: "창업 공지",
            post_date: post_date,
            detailurl: url,
            detail_content: detail
          })
        })
      }
    });
  })
cs


https://github.com/kyun1016/link-database


 3. 참고




질문이나 지적 있으시면 댓글로 남겨주세요~

도움 되셨으면 하트 꾹!


+ Recent posts