Git Product home page Git Product logo

regluit's Introduction

regluit - "The Unglue.it web application and website"

Another repo - https://github.com/EbookFoundation/regluit will eventually be the place for collaborative development for Unglue.it. Add issues and submit pull requests there. As of September 1, 2019, https://github.com/Gluejar/regluit is still being used for production builds.

The first version of the unglue.it codebase was a services-oriented project named "unglu". We decided that "unglu" was too complicated, so we started over and named the new project "regluit". regluit is a Django project that contains four main applications: core, frontend, api and payment that can be deployed and configured on as many ec2 instances that are needed to support traffic. The partitioning between these modules is not as clean as would be ideal. payment is particularly messy because we had to retool it twice because we had to switch from Paypal to Amazon Payments to Stripe.

regluit was originally developed on Django 1.3 (python 2.7) and currently runs on Django 1.11 Python 3.8).

Develop

Here are some instructions for setting up regluit for development on an Ubuntu system. If you are on OS X see notes below.

  • Ensure MySQL 5.7 and Redis are installed & running on your system.
  1. Create a MySQL database and user for unglueit.
  2. sudo apt-get upgrade gcc
  3. sudo apt-get install python-setuptools git python-lxml build-essential libssl-dev libffi-dev python3.8-dev libxml2-dev libxslt-dev libmysqlclient-dev
  4. sudo easy_install virtualenv virtualenvwrapper
  5. git clone [email protected]:Gluejar/regluit.git
  6. cd regluit
  7. mkvirtualenv regluit
  8. pip install -r requirements.txt
  9. add2virtualenv ..
  10. cp settings/dev.py settings/me.py
  11. mkdir settings/keys/
  12. cp settings/dummy/* settings/keys/
  13. Edit settings/me.py with proper mysql and redis configurations.
  14. Edit settings/keys/common.py and settings/keys/host.py with account and key information OR if you have the ansible vault password, run ansible-playbook create_keys.yml inside the vagrant directory.
  15. echo 'export DJANGO_SETTINGS_MODULE=regluit.settings.me' >> ~/.virtualenvs/regluit/bin/postactivate
  16. deactivate ; workon regluit
  17. django-admin.py migrate --noinput
  18. django-admin.py loaddata core/fixtures/initial_data.json core/fixtures/bookloader.json populate database with test data to run properly.
  19. redis-server to start the task broker
  20. celery -A regluit worker --loglevel=INFO start the celery daemon to perform asynchronous tasks like adding related editions, and display logging information in the foreground. Add --logfile=logs/celery.log if you want the logs to go into a log file.
  21. celery -A regluit beat --loglevel=INFO to start the celerybeat daemon to handle scheduled tasks.
  22. django-admin.py runserver 0.0.0.0:8000 (you can change the port number from the default value of 8000)
  23. make sure a redis server is running
  24. Point your browser to http://localhost:8000/

CSS development

  1. We used Less version 2.8 for CSS. http://incident57.com/less/. We use minified CSS.
  2. New CSS development is using SCSS. Install libsass and django-compressor.

Production Deployment

See http://github.com/EbookFoundation/regluit-provisioning

OS X Developer Notes

To run regluit on OS X you should have XCode installed

Install MySQL: brew install [email protected]
mysql_secure_installation mysqld_safe --user=root -p

We use pyenv and pipenv to set up an environment.

Edit or create .bashrc in ~ to enable virtualenvwrapper commands:

  1. pipenv install -r requirements.txt

  2. Edit .zshrc to include the following lines:

    eval "$(pyenv init -)" export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/10/bin export PATH=$PATH:/usr/local/opt/mysql-client/bin:$PATH export ANSIBLE_VAULT_PASSWORD_FILE=PATH_TO_VAULT_PASSWORD

If you get EnvironmentError: mysql_config not found you might need to set a path to mysqlconfig

You may need to set utf8 in /etc/my.cnf collation-server = utf8_unicode_ci

init-connect='SET NAMES utf8'
character-set-server = utf8

MARC Records

For unglued books with existing print edition MARC records

  1. Get the MARCXML record for the print edition from the Library of Congress.
    1. Find the book in catalog.loc.gov
    2. Click on the permalink in its record (will look something like lccn.loc.gov/2009009516)
    3. Download MARCXML
  2. At /marc/ungluify/ , enter the unglued edition in the Edition field, upload file, choose license
  3. The XML record will be automatically...
    • converted to suitable MARCXML and .mrc records, with both direct and via-unglue.it download links
    • written to S3
    • added to a new instance of MARCRecord
    • provided to ungluers at /marc/

For CC/PD books with existing records that link to the ebook edition

  1. Use /admin to create a new MARC record instance
  2. Upload the MARC records to s3 (or wherever)
  3. Add the URLs of the .xml and/or .mrc record(s) to the appropriate field(s)
  4. Select the relevant edition
  5. Select an appropriate marc_format:
    • use DIRECT if it links directly to the ebook file
    • use UNGLUE if it links to the unglue.it download page
    • if you have records with both DIRECT and UNGLUE links, you'll need two MARCRecord instances
    • if you have both kinds of link, put them in separate records, as marc_format can only take one value
      ungluify_record.py should only be used to modify records of print editions of unglued ebooks. It will not produce appropriate results for CC/PD ebooks.

For unglued ebooks without print edition MARC records, or CC/PD books without ebook MARC records

  1. Get a contract cataloger to produce quality records (.xml and .mrc formats)
    • we are using ung[x] as the format for our accession numbers, where [x] is the id of the MARCRecord instance, plus leading zeroes
  2. Upload those records to s3 (or wherever)
  3. Create a MARCRecord instance in /admin
  4. Add the URLs of the .xml and .mrc records to the appropriate fields
  5. Select the relevant edition
  6. Select an appropriate marc_format:
    • use DIRECT if it links directly to the ebook file
    • use UNGLUE if it links to the unglue.it download page
    • if you have records with both DIRECT and UNGLUE links, you'll need two MARCRecord instances
    • if you have both kinds of link, put them in separate records, as marc_format can only take one value

MySQL Migration

5.7 - 8.0 Notes

  • Many migration blockers were removed by by dumping, then restoring the database.
  • After that, RDS was able to migrate
  • needed to create the unglueit user from the mysql client

regluit's People

Contributors

eshellman avatar rdhyee avatar thatandromeda avatar edsu avatar nicholasantonov avatar jonahmania avatar jakace avatar krigar1184 avatar

Stargazers

みづな れい avatar Zine Eddine avatar  avatar Mohammad Hoseinzade avatar  avatar  avatar  avatar RogerVerhoeven avatar  avatar  avatar tg-z avatar Vasily Kolesnikov avatar Pavel avatar  avatar

Watchers

James Cloos avatar  avatar みづな れい avatar  avatar  avatar

regluit's Issues

redirect URL for gluejar.com, etc.

I've migrated the content of the gluejar.com site over to a Django thing, so we can shut down that piece of infrastructure and safely ignore it, as well as maintain gluejar.com more easily.

The code is in the gluejar_dot_com branch. Before I do a PR I want to talk domain redirects.

http://www.fir3net.com/Django/how-to-serve-multiple-domains-from-within-a-single-django-project.html was the most comprehensible thing I found, but I don't grok Apache.

I've set up gluejar_dot_com/urls.py so that all of the gluejar.com urls are being served right now from {{ base }}/gluejar_dot_com/{{ whatever }}, in hopes that that will make redirects straightforward. Mapping {{ base }}/gluejar_dot_com/{{ whatever }} to gluejar.com/{{ whatever }} will preserve the link structure on our existing site, because cool URIs don't change.

I'd like to make sure this is sane before issuing the PR -- I want the code to be such that when it's merged, all that needs to happen is the apache, cname, whatever, etc. work for the domain name.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.