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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
| package xyz.wongs.drunkard.war3.web.area.task.impl;
import lombok.extern.slf4j.Slf4j; import org.apache.http.HttpEntity; import org.apache.http.client.config.CookieSpecs; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.conn.ConnectTimeoutException; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.util.EntityUtils; import org.jsoup.Jsoup; import org.jsoup.nodes.Attribute; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; import xyz.wongs.drunkard.base.constant.Constant; import xyz.wongs.drunkard.war3.domain.entity.Location; import xyz.wongs.drunkard.war3.domain.service.LocationService; import xyz.wongs.drunkard.war3.web.util.IdClazzUtils; import xyz.wongs.drunkard.war3.web.util.AreaCodeStringUtils; import xyz.wongs.drunkard.war3.web.area.task.ProcessService;
import java.io.IOException; import java.sql.Time; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Random; import java.util.concurrent.TimeUnit;
@Slf4j @Service("processService") public class ProcessServiceImpl implements ProcessService {
@Autowired @Qualifier("locationService") LocationService locationService;
@Override public void initLevelOne(String url, Location parentLocation) { List<Location> levelOne = null; try { levelOne = getLevelOneByRoot(url, parentLocation.getLocalCode()); } catch (IOException e) { log.error(" IOException pCode={}", parentLocation.getLocalCode(), e.getMessage(), url); } save(levelOne); }
@Override public boolean initLevelTwo(String url, Location location) { try { List<Location> secondLevelLocas = getLocationSecondLevel(url, location); save(secondLevelLocas); return true; } catch (Exception e) { return false; }
}
@Override public boolean intiRootUrl(String url) { try { List<Location> rootLocations = getLocationRoot(url, "0"); save(rootLocations); return true; } catch (Exception e) { e.printStackTrace(); return false; } }
public List<Location> getLocationRoot(String url, String pCode) { List<Location> locas = new ArrayList<Location>(35); try { Elements eleProv = getElementsByConnection(url, "provincetr"); for (Element e : eleProv) { Elements eleHerf = e.getElementsByTag("td").select("a[href]"); if (null == eleHerf || eleHerf.size() == 0) { continue; } for (Element target : eleHerf) { String urls = target.attributes().asList().get(0).getValue(); Location location = Location.builder().id(IdClazzUtils.getId(Location.class)) .localCode("0").url(urls).lv(0).localName(target.text()) .localCode(urls.substring(0, 2)).build(); locas.add(location); } } } catch (IOException e) { log.error(" IOException pCode={}", pCode, e.getMessage(), url); } return locas; }
@Override public void initLevelThrid(String url, Location location) { this.initLevelThrid(url, location, "Y"); }
@Override public void initLevelThrid(String url, Location location, String flag) {
try { if (StringUtils.isEmpty(location.getUrl())) { return; } List<Location> thridLevelLocas = getLocation(url, new String[]{"towntr", "href"}, location.getLocalCode(), 3, flag); location.setFlag(flag); locationService.updateByPrimaryKey(location); save(thridLevelLocas); } catch (Exception e) { e.printStackTrace(); } }
public void save(List<Location> locations) { if (null == locations || locations.isEmpty()) { log.error(" target saved is null!"); return; } locationService.insertBatchByOn(locations);
}
@Override public void initLevelFour(String url, List<Location> thridLevelLocas) { for (Location le : thridLevelLocas) { List<Location> locations = new ArrayList<Location>(12); String suffix = new StringBuilder().append(url).append(AreaCodeStringUtils.getUrlStrByLocationCode(le.getLocalCode(), 3)).append(le.getUrl()).toString(); Elements es = null; try { es = getElementsByConnection(suffix, "villagetr"); Location tempLocation = null; for (Element e : es) { tempLocation = new Location(e.child(0).text(), e.child(2).text(), le.getLocalCode(), null, 4); tempLocation.setId(IdClazzUtils.getId(Location.class)); locations.add(tempLocation); } le.setFlag("Y"); locationService.updateByPrimaryKey(le); save(locations); } catch (IOException e) { log.error(" IOException code={},msg={},url={}", le.getLocalCode(), e.getMessage(), suffix); int times = AreaCodeStringUtils.getSecond(3); try { TimeUnit.SECONDS.sleep(times); } catch (InterruptedException interruptedException) { log.error("msg={} ", interruptedException.getMessage()); } continue; } catch (Exception e) { log.error("Exception code={},msg={}", le.getLocalCode(), e.getMessage()); continue; } } }
public List<Location> getLocationSecondLevel(String url, Location location) { List<Location> locas = null; try { locas = new ArrayList<Location>(90); boolean flag = false; Elements es = getElementsByConnection(url, "countytr"); if (null == es) { log.error(url + " 不能解析!"); return null; } Location tempLocation = null; for (Element e : es) { if (!flag) { tempLocation = new Location(e.child(0).text(), e.child(1).text(), location.getLocalCode(), null, 2); tempLocation.setId(IdClazzUtils.getId(Location.class)); locas.add(tempLocation); flag = true; continue; } es = e.getElementsByAttribute("href"); if (es.size() == 0) { tempLocation = new Location(e.child(0).text(), e.child(1).text(), location.getLocalCode(), "", 2); tempLocation.setId(IdClazzUtils.getId(Location.class)); locas.add(tempLocation); continue; } List<Attribute> attrs = es.get(0).attributes().asList(); tempLocation = new Location(es.get(0).text(), es.get(1).text(), location.getLocalCode(), attrs.get(0).getValue(), 2); tempLocation.setId(IdClazzUtils.getId(Location.class)); locas.add(tempLocation); } } catch (Exception e) { e.printStackTrace(); } return locas; }
public List<Location> getLevelOneByRoot(String url, String pCode) throws IOException {
List<Location> locas = new ArrayList<Location>(20); Elements eles = getElementsByConnection(url, "citytr"); if (null == eles) { log.error(url + " 不能解析!"); return null; } Location location = null; for (Element e : eles) { eles = e.getElementsByAttribute("href"); List<Attribute> attrs = eles.get(0).attributes().asList(); location = new Location(eles.get(0).text(), eles.get(1).text(), pCode, attrs.get(0).getValue(), 1); location.setId(IdClazzUtils.getId(Location.class)); locas.add(location); } return locas; }
public List<Location> getLocation(String url, String[] cssClazz, String parentCode, Integer lv, String flag) throws IOException { List<Location> locas = new ArrayList<Location>(20); Elements eles = getElementsByConnection(url, cssClazz[0]); if (null == eles) { log.error(url + " 不能解析!"); return null; } Location location = null; for (Element e : eles) { eles = e.getElementsByAttribute(cssClazz[1]); List<Attribute> attrs = eles.get(0).attributes().asList(); location = new Location(eles.get(0).text(), eles.get(1).text(), parentCode, attrs.get(0).getValue(), lv, flag); location.setId(IdClazzUtils.getId(Location.class)); locas.add(location); } return locas; }
public List<Location> getLocation(String url, String[] cssClazz, String parentCode, Integer lv) { return getLocation(url, cssClazz, parentCode, lv); }
public Elements getElementsByConnection(String url, String clazzName) throws IOException {
try { CloseableHttpClient httpclient = HttpClients.custom() .setDefaultRequestConfig(RequestConfig.custom() .setCookieSpec(CookieSpecs.STANDARD).build()) .build(); HttpGet httpget = new HttpGet(url); httpget.setHeader("User-Agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0"); RequestConfig config = RequestConfig.custom() .setConnectTimeout(10000) .setSocketTimeout(10000) .build(); httpget.setConfig(config); CloseableHttpResponse response = httpclient.execute(httpget); HttpEntity entity = response.getEntity(); String content = EntityUtils.toString(entity, "GBK"); Document doc = Jsoup.parse(content); return doc.getElementsByClass(clazzName); } catch (ConnectTimeoutException e) { log.error(" ConnectTimeoutException URL={},clazzName={},errMsg={}", url, clazzName, e.getMessage()); }
return null; }
public String appengUrl(List<Location> locations) { Iterator<Location> it = locations.iterator(); String url = ""; StringBuilder sb = new StringBuilder(); while (it.hasNext()) { Location cation = it.next(); String str = cation.getUrl(); if (cation.getLv() == 3) { sb.append(str); } else { int i = cation.getUrl().indexOf(Constant.SLASH); sb.append(str.substring(0, i)).append(Constant.SLASH).append(sb); } } return url; }
}
|