acg-crawler icon indicating copy to clipboard operation
acg-crawler copied to clipboard

A ACG crawler for crawling the ACG news!

acg-crawler

A ACG crawler for crawling the ACG news!

To do lists

~~- subscribe page~~

~~- unscribe page~~

~~- store subscribed email lists~~

~~- get subscribed email lists~~

  • send email via GMAIL SMTP server (not yet...)

~~- send email via MailGun API~~

~~- send log email via MailGun API~~

  • (enhancement) crawl more resources

  • finish the Deployment section

~~- (security) add CSRF-token for every pages (Including AnimeNews, AnimeHotNews, unscribe/subscribe email address)~~

~~- (security) user input validation (email)~~

Requirement

  • Operating System: Ubuntu/16.04 (The Ubuntu 14.04 is not available for this project.)
  • Apache Tomcat version: 7
  • JAVA: 1.7+(recommendation version is 1.8)
  • Apache Tomcat 7 (version 8 is not sure to be worked well...)

Deployment (Manual approach)

We assume that we have installed the JSP environment in our target host.

  • target host: VPS (recommendation)
  • clone the repo
  • install the gradle (sudo apt-get install gradle)
  • using the command gradle tomcatRunWar to generate the acg-crawler.war.i(The war file is in the /path/to/acg-crawler/build/libs)
  • create the Auth.ini to set the Mailgun info and GMAIL info.
  • export the runnable acg-crawler.jar.
  • Remember to copy the assets folder to the WEB-INF folder in WAR file.
  • Remember to move the runnable jar file and auth.ini in the same directory path.
  • set the crontab command: java -jar /path/to/acg-crawler.jar to crawl data, send email and send error log mail.
  • enjoy it!

auth.ini

The sample auth.ini file contents are as follows:

[MAILGUN]
api-key=key-XXXXXXXXXXX
domain-name=peter279k.com.tw
api-base-url=https://api.mailgun.net/v3/peter279k.com.tw/messages
[email protected]
from-email-account=AnimeNews <[email protected]>
[GMAIL]
account=your-gmail-addresss
password=your-gmail-password

SETUP.sh

#!/bin/bash

echo "This project has built in the Ubuntu 16.04LTS (in development environment)"

sudo apt-get install gradle git-core
sudo apt-get install default-jdk default-jre tomcat7

git clone https://github.com/peter279k/acg-crawler.git
cd acg-crawler/

cp -r ./assets src/main/webapp/WEB-INF

# remember to generate the runnable jar file from eclipse IDE.

gradle clean
gradle war

sudo mkdir /home/tomcat7
sudo chown -R tomcat7 /home/tomcat7
sudo chmod u+wrx /home/tomcat7 -R

sudo cp build/libs/acg-crawler.war /var/lib/tomcat7/webapps
sudo service tomcat7 restart

echo "Finish the deployment and visit the url: domain-name:8080/acg-crawler"
echo "\n"
echo "Don't forget to use scp uploading your jar and war files"

Security

If you found some vulnerabilities about this web application project, please feel free to send the email to [email protected].

Thanks!