Skip to content

Utility to parse the LFC website for ticket sales and email out updates.

License

Notifications You must be signed in to change notification settings

awpeacock/lfc-ticket-parser

Repository files navigation

LFC Ticket Parser

Utility to read in the Liverpool Football Club Tickets Availability page, retrieve sales dates for fixtures and email them out in iCalendar format.

Please note: this does not parse ambulatory or hospitality seating, and will not return any currently active sales (that ship has sailed).

Usage

Before running the parse, you will need to configure it using environment variables.

Example .env file

The following properties tell the parser where to retrieve the index page from, and the domain will be used for all the relative links representing the inidividual fixture pages:

DOMAIN=https://www.liverpoolfc.com
INDEX_URL=/tickets/tickets-availability

The parser will attempt to email the generated ICS file via SMTP after processing, and these properties are required in order for it to be able to do so (EMAIL_PORT and EMAIL_SECURE can be amended if you wish to communicate with your mail server insecurely):

EMAIL_HOST=<SMTP Server Hostname>
EMAIL_PORT=465
EMAIL_SECURE=true
EMAIL_USER=<SMTP Account Username>
EMAIL_PASS=<SMTP Account Password>
EMAIL_FROM=LFC Ticket Parser<SMTP Account Email Address>
EMAIL_TO=<Recipient Email Address>

In order for the parser to determine whether fixture details have changed, it needs to store details somewhere to refer back to. Presently, the only database supported is AWS DynamoDB, and you will need the following properties to communicate with it:

DB_CLIENT=DynamoDB
DB_TABLE=<Table Name>

The following properties are only needed if you run the parser remotely from where the database is hosted:

AWS_ACCESS_KEY_ID=<IAM User Access Key>
AWS_SECRET_ACCESS_KEY=<IAM User Secret Access Key>
AWS_REGION=<Region DB is Hosted>

If no database is configured, the parser will not fail, it will still parse the website and send out the email but it will send out all fixture details every time.

Running locally

Once configured, to run it locally from within a Node environment, you only need to run the following command:

npm start

Running as an AWS Lambda

If you wish to run it as an AWS Lambda service, then you need to follow these steps:

  1. Compile the Javascript code - this will create a zip file lfct-aws-js.zip in the outputs folder (creating that folder if it doesn't already exist):
npm run build:aws
  1. Create your new Lambda service.
  2. In the content editor, upload the newly created zip file.
  3. Be sure to setup the environment variables above, within Configuration > Environment Variables.

You can then run this Lambda through whichever method you choose (for example, an EventBridge schedule).

Future Plans

If time permits, I may add more configuration to allow you to restrict which fixtures it returns (e.g. do not parse away fixtures, fixtures that require x credits, etc.)