Skip to content

jinyanzang/facebook-political-ads

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Facebook Political Ad Collector

This is the source code behind our project to collect political ads on Facebook. Built versions are available for Firefox and Chrome.

We're asking our readers to use this extension when they are browsing Facebook. While they are on Facebook a background script runs to collect ads they see. The extension shows those ads to users and asks them to decide whether or not a particular ad is political. Serverside, we use those ratings to train a naive bayes classifier that then automatically rates the other ads we've collected. The extension also asks the server for the most recent ads that the classifier thinks are political so that users can see political ads they haven't seen. We're careful to protect our user's privacy by not sending identifying information to our backend server.

We're open sourcing this project because we'd love your help. Collecting these ads is challenging, and the more eyes on the problem the better.

Download and Try It

Build and Develop Locally

The extension popup is a preact application and you can build a development version by running the following:

cd extension
npm install
npm watch

If you are a Firefox user you can open a clean browser instance with:

npm run ff

and any changes will automatically refresh the extension.

In Chrome you'll need to add an unpacked extension by following these directions.

The backend server is a rust application that runs on top of diesel and hyper. You'll need the diesel command line interface to get started and to create the database:

cargo install diesel_cli
diesel database setup

You can kick the tires by running:

cd backend
cargo build
cargo run --bin server -p server

We train the classifier using python and scikit learn and the source is in backend/classifier/. We're using pipenv to track dependencies. To get started you can run:

cd backend/classifier/
pipenv install
pipenv shell

And to build the classifier you'll want to run:

./classify build

To classify the ads you've collected you can run:

./classify classify

Stories

Where We Need Your Help

In general, the project needs more tests. We've written a couple of tests for parsing the Facebook timeline in the extension directory, and a few for the tricky bits in the server, but any help here would be great!

Also, the rust backend needs a bit of love and care, and there is a bit of a mess in backend/server/src/server.rs that could use cleaning up.

Packages

No packages published

Languages

  • HTML 66.7%
  • JavaScript 11.1%
  • Rust 10.9%
  • CSS 4.1%
  • Python 3.5%
  • Lua 1.9%
  • Other 1.8%