noting current problems with Drive instructions
[oweals/karmaworld.git] / README.md
1 # KarmaWorld
2 __Description__: A django application for sharing and uploading class notes.
3
4 __Copyright__: FinalsClub, a 501c3 non-profit organization
5
6 __License__: GPLv3 except where otherwise noted
7
8 __Contact__: info@karmanotes.org
9
10 v3.0 of the karmanotes.org website from the FinalsClub Foundation
11
12 # Purpose
13
14 KarmaWorld is an online database of college lecture notes.  KarmaWorld
15 empowers college students to participate in the free exchange of knowledge.
16
17 # Naming
18
19 The repository and the project are called KarmaWorld. One implementation
20 of KarmaWorld, which is run by FinalsClub Foundation, is called
21 [KarmaNotes](https://www.karmanotes.org/).
22
23 # Pre-Installation
24
25 ## Code
26
27 Before doing anything, you'll need the code. Grab it from github.
28
29 Clone the project from the central repo using your github account:
30
31     git clone git@github.com:FinalsClub/karmaworld.git
32
33 If you aren't using a system setup for github, then grab the project with
34 this command instead:
35
36     git clone https://github.com/FinalsClub/karmaworld.git
37
38 Generally speaking, this will create a subdirectory called `karmaworld` under
39 the directory where the `git` command was run. This git repository directory
40 will be referred to herein as `{project_root}`.
41
42 There might be some confusion as the git repository's directory will likely be
43 called `karmaworld` (this is `{project_root}`), but there is also a `karmaworld`
44 directory underneath that (`{project_root}/karmaworld`) alongside files like
45 `fabfile.py` (`{project_root}/fabfile.py`) and `README.md`
46 (`{project_root}/README.md`).
47
48 ## External Software Dependencies
49
50 ### pdf2htmlEX
51
52 KarmaWorld uses [pdf2htmlEX](https://github.com/coolwanglu/pdf2htmlEX) as
53 a dependency. pdf2htmlEX is used to convert uploaded PDF notes into HTML.
54
55 An [outdated version of pdf2htmlEX](https://github.com/FinalsClub/pdf2htmlEX)
56 is available which includes the
57 [patch](https://github.com/FinalsClub/pdf2htmlEX/commit/3c19f6abd8d59d1b58cf254b7160b332b3f5b517)
58 required for pdf2htmlEX to correctly work with KarmaWorld.
59
60 Newer versions can be used by applying the patch by hand. It's a fairly
61 simple two-line modification that can be done after installing
62 pdf2htmlEX.
63
64 ### SSL Certificate
65
66 If you wish to host your system publicly, you'll almost certainly want
67 an SSL certificate signed by a proper authority.
68
69 You may need to set the `SSL_REDIRECT` environment variable to `true` to
70 make KarmaWorld redirect insecure connections to secure ones.
71
72 Follow [Heroku's SSL setup](https://devcenter.heroku.com/articles/ssl-endpoint)
73 to get SSL running on your server with Heroku.
74
75 ## External Service Dependencies
76
77 Notice: This software makes use of external third party services which require
78 accounts to access the service APIs. Without these third parties available,
79 this software may require considerable overhaul. These services have
80 API keys, credentials, and other information that you must provide to KarmaWorld
81 as environment variables. The best way to persist these environment variables is
82 by using a `.env` file.  Copy `.env.example` to `.env` and populate the fields as required.
83
84 A number of services are required even if running the KarmaWorld web service
85 locally, some of the services are recommended, and some are completely optional
86 even if running the web service on Heroku.
87
88 Many of these services have free tiers and can be used without charge for
89 development testing purposes.
90
91 * Reminder
92   * Copy `.env.example` to `.env` and populate the environment variables there.
93 * Required Services
94   * [Google Drive](#google-drive)
95   * [Filepicker](#filepicker)
96   * [PostgreSQL](#postgresql)
97   * [Celery](#celery-queue)
98 * Optional but recommended
99   * [IndexDen](#indexden): enables searching through courses, notes, etc
100   * [Heroku](#heroku): the production environment used by karmanotes.org
101     * it might not be possible to run KarmaWorld on Heroku using a free
102       webapp.
103   * [Amazon S3](#s3-for-static-files): for static file hosting
104 * Entirely optional (though used in the production environment)
105   * [Twitter](#twitter): share updates about new uploads
106   * [Amazon Mechanical Turk](#amazon-mechanical-turk): generate quizzes, flashcards, etc
107   * [Amazon CloudFront](#amazon-cloudfront-cdn)
108   * [Amazon S3](#s3-for-filepicker): store files uploaded to Filepicker
109     * Filepicker does not support S3 storage in its free tier
110
111 ### Heroku
112 This project has chosen to use [Heroku](www.heroku.com) to host the Django and
113 celery software. While not a hard requirement, the more up-to-date parts of this
114 documentation will operate assuming Heroku is in use.
115
116 See README.heroku for more information.
117
118 #### pdf2htmlEX on Heroku
119 If using Heroku, the default
120 [KarmaNotes Heroku buildpack](https://github.com/FinalsClub/heroku-buildpack-karmanotes)
121 will [include](https://github.com/FinalsClub/heroku-buildpack-karmanotes/blob/master/bin/steps/pdf2htmlex)
122 the [required version of pdf2htmlEX](#pdf2htmlex).
123
124 ### Celery Queue
125 Celery uses the Apache Message Queueing Protocol for passing messages to its workers.
126
127 For production, we recommend using Heroku's CloudAMQP add-on, getting your own CloudAMQP account, or
128 running a queueing system on your own. The `CLOUDAMQP_URL` environment variable must be set correctly
129 for KarmaWorld to be able to use Celery. The `CELERY_QUEUE_NAME` environment variable
130 must be set to the name of the queue you wish to use. Settings this to something unique
131 allows multiple instances of KarmaWorld (or some other software) to share the same queueing server.
132
133 For development on localhost, `RabbitMQ` is the default for `djcelery` and is well supported. Ensure
134 `RabbitMQ` is installed for local development.
135
136 ### PostgreSQL
137
138 PostgreSQL is not necessarily required; other RDBMS could probably be fit into
139 place. However, the code was largely written assuming PostgreSQL will be used.
140 Change to another system with the caveat that it might take some work.
141
142 There are many cloud providers which provide PostgreSQL databases. Heroku has
143 an add-on for providing a PostgreSQL database. Ensure something like this
144 is made available and installed to the app.
145
146 For local development, ensure a PostgreSQL is running on localhost or is
147 otherwise accessible.
148
149 ### Amazon S3
150 The instructions for creating an [S3](http://aws.amazon.com/s3/) bucket may be
151 [found on Amazon.](http://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html)
152
153 Two, separate buckets may be used in production: one for static file hosting
154 and one as a communication bus with Filepicker.
155
156 #### S3 for Filepicker
157
158 This software uses S3 to store files which are sent to or received 
159 from Filepicker. Filepicker will need to know the S3 bucket name, access key,
160 and secret key.
161
162 Filepicker users can only make use of an S3 bucket with a paid account. For
163 development purposes, no Filepicker S3 bucket is needed. Skip all references to
164 the Filepicker S3 bucket in the development case.
165
166 The software will not need to know the S3 credentials for the Filepicker
167 bucket, because the software will upload files to the Filepicker S3 bucket
168 through Filepicker's API and it will link to or download files from the
169 Filepicker S3 bucket through Filepicker's URLs. This will be covered in the
170 [Filepicker section](#filepicker).
171
172 #### S3 for static files
173
174 This software uses S3 for hosting static files. The software will need to
175 update static files on the S3 bucket. As such, the software will need the
176 S3 bucket name, access key, and secret key via the environment variables. This
177 is described in subsections below.
178
179 To support static hosting, `DEFAULT_FILE_STORAGE` should be set to
180 `'storages.backends.s3boto.S3BotoStorage'`, unless there is a compelling reason
181 to change it.
182
183 There are three ways to setup access to the S3 buckets depending upon speed
184 and security. The more secure, the slower it will be to setup.
185
186 #### insecure S3 access
187 For quick and dirty insecure S3 access, create a single group and a single user
188 with full access to all buckets. Full access to all buckets is insecure!
189
190 Create an 
191 [Amazon IAM group](http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_CreatingAndListingGroups.html)
192 with full access to the S3 bucket. Select the "Amazon S3 Full Accesss" Policy
193 Template.
194
195 Create an
196 [Amazon IAM user](http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_SettingUpUser.html).
197 Copy the credentials into the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`
198 environment variables. Be sure to write down the access information, as it
199 will only be shown once.
200
201 #### secure S3 access
202 For secure S3 access, two users will be needed. One with access to the
203 Filepicker bucket and one with access to the static hosting bucket.
204
205 Note: this might need to be modified to prevent creation and deletion of
206 buckets?
207
208 Create an 
209 [Amazon IAM group](http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_CreatingAndListingGroups.html)
210 with full access to the S3 bucket. The quick way is to select the
211 "Amazon S3 Full Accesss" Policy Template and replace `"Resource": "*"` with 
212 `"Resource": "arn:aws:s3:::<static_bucket_name>"`.
213
214 Create an
215 [Amazon IAM user](http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_SettingUpUser.html).
216 Copy the credentials into the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`
217 environment variables. Be sure to write down the access information, as it
218 will only be shown once.
219
220 Ensure the created user is a member of the group with access to the S3
221 static files bucket.
222
223 Repeat the process again, creating a group for the Filepicker bucket and
224 creating a user with access to that group. These credentials will be passed
225 on to Filepicker.
226
227 #### somewhat secure S3 access
228 Create two groups as described in the `secure S3 access` section above.
229
230 Create a single user, save the credentials as described in the
231 `insecure S3 access` section above, and pass the credentials on to Filepicker.
232
233 Add the single user to both groups.
234
235 This is less secure because if your web server or Filepicker get compromised
236 (so there are two points for potential failure), the single compromised
237 user has full access to both buckets.
238
239 ### Amazon Cloudfront CDN
240 [Cloudfront CDN](http://aws.amazon.com/cloudfront/) assists static file hosting.
241
242 Follow
243 [Amazon's instructions](http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/GettingStarted.html)
244 to host static files out of the appropriate S3 bucket. Note that Django's static
245 file upload process has been modified to mark static files as publicly
246 assessible.
247
248 In the settings for the Cloudfront Distribution, copy the "Domain Name" from
249 General settings and set `CLOUDFRONT_DOMAIN` to it. For example, `abcdefghij.cloudfront.net`.
250
251 ### Amazon Mechanical Turk
252 Mechanical turk is employed to generate human feedback from uploaded notes.
253 This service is helpful for generating flash cards and quizzes.
254
255 This service is optional and it might cause unexpected charges when
256 deployed.  If the required environment variable is not found,
257 then no errors will occur and no mechanical turk tasks will be created, avoiding any unexpected
258 costs.
259
260 The `MTURK_HOST` environment variable is almost certainly
261 `"mechanicalturk.amazonaws.com"`.
262
263 The code will create and publish HITs on your behalf.
264
265 ### Google Drive
266 This software uses [Google Drive](https://developers.google.com/drive/) to
267 convert documents to and from various file formats.
268
269 A Google Drive service account with access to the Google Drive is required.
270 This may be done with a Google Apps account with administrative privileges, or ask
271 your business sysadmin.
272
273 Follow [Google's instructions](https://developers.google.com/drive/web/auth/web-server)
274 to create a Google Drive service account. If using Google Apps, it is worth
275 looking at [these instructions](https://developers.google.com/drive/delegation).
276
277 Google Drive used to use p12 files by default. Now a new-style JSON file is
278 downloaded by default when creating new credentials. Until the code has been
279 [updated](https://github.com/FinalsClub/karmaworld/issues/437) to use the
280 new-style JSON file, make sure to click the `Generate a new P12 key` button.
281
282 Convert the p12 file into a Base64 encoded string for the
283 `GOOGLE_SERVICE_KEY_BASE64` environment variable. There are many ways to do
284 this. If Python is available, the
285 [binascii library](https://docs.python.org/2/library/binascii.html#binascii.b2a_base64)
286 makes this very easy:
287
288         import binascii
289         with open('file.p12', 'r') as f:
290             print binascii.b2a_base64(f.read)
291
292 The following instructions require creating web application credentials as
293 separate. Ideally, we will
294 [remove this step](https://github.com/FinalsClub/karmaworld/issues/436).
295 Until then, please figure out how to create web application credentials.
296
297 Copy the contents of `client_secret_*.apps.googleusercontent.com.json` into the
298 `GOOGLE_CLIENT_SECRETS` environment variable.
299
300 ### Filepicker
301 This software uses [Filepicker.io](https://www.inkfilepicker.com/) for uploading
302 files. This requires an account with Filepicker.
303
304 Filepicker can use an additional third party file hosting site where it may
305 send uploaded files. This project, in production, uses Amazon S3 as the third
306 party. See the Amazon S3 section above for more information.  
307
308 Create a new App with Web SDK and provide the Heroku App URL for the
309 Application's URL. You'll be given an API Key for the App. Paste this into the
310 `FILEPICKER_API_KEY` environment variable.
311
312 Find the 'App Security' button on the left hand side of the web site. Make sure
313 'Use Security' is enabled. Generate a new secret key. Paste this key into the
314 `FILEPICKER_SECRET` environment variable.
315
316 If you have an upgraded plan, you can configure Filepicker to have access to
317 your Filepicker S3 bucket. Click 'Amazon S3' on the left hand side menu and
318 supply the credentials for the user with access to the Filepicker S3 bucket.
319
320 ### IndexDen
321 KarmaWorld uses IndexDen to create a searchable index of all the notes in the
322 system. Create an free IndexDen account at
323 [their homepage](http://indexden.com/). You will be given a private URL that
324 accesses your IndexDen account. This URL is visible on your dashboard (you
325 might need to scroll down).
326
327 Set the `INDEXDEN_PRIVATE_URL` environment variable to your private URL.
328
329 Set the `INDEXDEN_INDEX` environment variable to the name of the index you want
330 to use for KarmaWorld. The index will be created automatically when KarmaNotes
331 is run if it doesn't already exist. It may be created through the GUI if
332 desired.
333
334 ### Twitter
335
336 Twitter is used to post updates about new courses. Access to the Twitter API
337 will be required for this task.
338
339 If this Twitter feature is desired, the consumer key and secret as well as the
340 access token key and secret are needed by the software.
341
342 If the required environment variables are not found, then no errors will occur
343 and no tweets will be posted.
344
345 To set this up,
346 [create a new Twitter application](https://dev.twitter.com/apps/new).
347 Use your Heroku App URL for the website field. Leave the Callback field blank.
348
349 Make sure this application has read/write access. Generate an access token. Go
350 to your OAuth settings, and grab the "Consumer key", "Consumer secret",
351 "Access token", and "Access token secret". Paste these, respectively, into the
352 environment variables `TWITTER_CONSUMER_KEY`, `TWITTER_CONSUMER_SECRET`,
353 `TWITTER_ACCESS_TOKEN_KEY`, `TWITTER_ACCESS_TOKEN_SECRET`.
354
355 # Local
356
357 ## Configuring foreman
358
359 KarmaNotes runs on Heroku as a webapp and thus makes use of a Procfie. While
360 not strictly necessary, KarmaWorld can use the same basic Procfile which is
361 convenient and consistent.
362
363 To use the Procfile locally, we recommend using `foreman`. To install `foreman`
364 and other Heroku tools, install the
365 [Heroku toolbelt](https://toolbelt.heroku.com/).
366
367 Ensure environment variables are available to `foreman` by copying
368 `.env.example` to `.env` and update those variables as appropriate for your
369 local system.
370
371 ## pdf2htmlEX
372
373 This project uses [pdf2htmlEX](https://github.com/coolwanglu/pdf2htmlEX) as
374 a dependency. pdf2htmlEX is used to convert uploaded PDF notes into HTML. It
375 needs to be installed on the same system that KarmaWorld is running on.
376
377 ### using their source
378
379 See their instructions at
380 [https://github.com/coolwanglu/pdf2htmlEX/wiki/Building](https://github.com/coolwanglu/pdf2htmlEX/wiki/Building).
381
382 Make sure to [patch](https://github.com/FinalsClub/pdf2htmlEX/commit/3c19f6abd8d59d1b58cf254b7160b332b3f5b517)
383 the source code to expose two variables.
384
385 ### using our fork
386
387 You can use FinalsClub's [outdated version of pdf2htmlEX](https://github.com/FinalsClub/pdf2htmlEX).
388 See their installation instructions above, but don't worry about patching.
389
390 ### using their PPA
391
392 You can use [their upstream PPA](https://launchpad.net/~coolwanglu/+archive/ubuntu/pdf2htmlex).
393
394         apt-add-repository ppa:coolwanglu/pdf2htmlex
395         apt-get update
396         apt-get install pdf2htmlex
397
398 Then patch the javascript on your system by running this code in the shell.
399
400         cat >> `dpkg -L pdf2htmlex | grep pdf2htmlEX.js` <<PDF2HTMLEXHACK
401         Viewer.prototype['rescale'] = Viewer.prototype.rescale;
402         Viewer.prototype['scroll_to'] = Viewer.prototype.scroll_to;
403         PDF2HTMLEXHACK
404
405 ## Install
406
407   1. `virtualenv venv`
408   1. `source venv/bin/activate`
409   1. `pip install -r requirements.txt`
410     * on Debian systems, some packages are required for pip to succeed:
411     * `apt-get install python-dev libpython-dev python-psycopg2 libmemcached-dev libffi-dev libssl-dev postgresql-server-dev-X.Y`
412   1. `pip install -r requirements-dev.txt`
413
414 ## Configuration
415
416 Make sure [External Service Dependencies](#external_service_dependencies) are
417 satisfied. This includes running a local database and RabbitMQ instance as
418 desired.
419
420   1. configure `.env` as per [instructions](#external_service_dependencies)
421   1. `foreman run python manage.py syncdb --migrate --noinput`
422   1. `foreman run python manage.py createsuperuser`
423   1. `foreman run python manage.py fetch_usde_csv ./schools.csv`
424   1. `foreman run python manage.py import_usde_csv ./schools.csv`
425   1. `foreman run python manage.py sanitize_usde_schools`
426
427 * `fetch_usde_csv` downloads school records and stores them to `./schools.csv`. This file name
428      and location is arbitrary. As long as the same file is passed into `import_usde_csv` for
429      reading, everything should be fine.
430
431 * `fetching_usde_csv` requires `7zip` to be installed for processing compressed
432      archives. On Debian-based systems, this entails `apt-get install p7zip-full`
433
434 ## Run
435
436 Make sure you are inside your virtual environment (`source venv/bin/activate`).
437
438 If the code has changed or this is the first run, make sure any modified static
439 files get compressed with `foreman run python manage.py compress`. Static files
440 then need to be uploaded correctly with `foreman run python manage.py
441 collectstatic`.
442
443 Run `foreman start`.  `foreman` will load the `.env` file and manage running all
444 processes in a way that is similar to that of Heroku. This allows better
445 consistency with local, staging, and production deployments.
446
447 To run web-only, but no celery or beat, run `foreman start web` to specify
448 strictly the web worker.
449
450 Press ctrl-C to kill foreman. Foreman will run Django's runserver command.
451 If you wish to have more control over how this is done, you can do
452 `foreman run python manage.py runserver <options>`. For running any other
453 `manage.py` commands, you should also precede them with `foreman run` like just shown.
454 This simply ensures that the environment variables from `.env` are present.
455
456 # Heroku Install
457
458 KarmaNotes runs on Heroku as a webapp. This section addresses what was done
459 for KarmaNotes so that other implementations of KarmaWorld can be run on
460 Heroku.
461
462 Before anything else, download the [Heroku toolbelt](https://toolbelt.heroku.com/).
463
464 To run KarmaWorld on Heroku, do `heroku create` and `git push heroku master` as typical
465 for a Heroku application. Set your the variable `BUILDPACK_URL` to
466 `https://github.com/FinalsClub/heroku-buildpack-karmanotes` to use a buildpack
467 designed to support KarmaNotes.
468
469 You will need to import the US Department of Education's list of accredited schools.
470    1. Fetch USDE schools with
471       `heroku run python manage.py fetch_usde_csv ./schools.csv`
472    1. Upload the schools into the database with
473       `heroku run python /manage.py import_usde_csv ./schools.csv`
474    1. Clean up redundant information with
475       `heroku run python /manage.py sanitize_usde_schools`
476
477
478 # Django Database management
479
480 ## South
481
482 We have setup Django to use
483 [south](http://south.aeracode.org/wiki/QuickStartGuide) for migrations. When
484 changing models, it is important to run
485 `foreman run python manage.py schemamigration` which will create a migration
486  to reflect the model changes into the database. These changes can be pulled
487 into the database with `foreman run python manage.py migrate`.
488
489 Sometimes the database already has a migration performed on it, but that
490 information wasn't told to south. There are subtleties to the process which
491 require looking at the south docs. As a tip, start by looking at the `--fake`
492 flag.
493
494 # Assets from Third Parties
495
496 A number of assets have been added to the repository which come from external
497 sources. It would be difficult to keep a complete list in this README and keep
498 it up to date. Software which originally came from outside parties can
499 generally be found in `karmaworld/assets`.
500
501 Additionally, all third party Python projects (downloaded and installed with
502 pip) are listed in these files:
503
504 * `requirements.txt`
505 * `requirements-dev.txt`
506
507 # Thanks
508
509 * KarmaNotes.org is a project of the FinalsClub Foundation with generous funding from the William and Flora Hewlett Foundation
510
511 * Also thanks to [rdegges](https://github.com/rdegges/django-skel) for the django-skel template