• Stars
    star
    234
  • Rank 171,630 (Top 4 %)
  • Language
    PHP
  • License
    Creative Commons ...
  • Created almost 6 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The source code for the Standard Ebooks website.

Installation

PHP 7+ is required.

Installing on Ubuntu 22.04

# Install Apache, PHP, PHP-FPM, and various other dependencies.
sudo apt install -y git composer php-fpm php-cli php-gd php-xml php-apcu php-mbstring php-intl php-curl php-zip apache2 apache2-utils libfcgi0ldbl task-spooler ipv6calc mariadb-server attr libapache2-mod-xsendfile

# Create the site root and logs root and clone this repo into it.
sudo mkdir /standardebooks.org/
sudo chown $(whoami): /standardebooks.org
sudo mkdir /var/log/local/
cd /standardebooks.org/
git clone https://github.com/standardebooks/web/

# Install dependencies using Composer.
cd /standardebooks.org/web/
composer install

# Add standardebooks.test to your hosts file.
echo -e "127.0.0.1\tstandardebooks.test" | sudo tee -a /etc/hosts

# Create a self-signed SSL certificate for use with the local web site installation.
openssl req -x509 -nodes -days 99999 -newkey rsa:4096 -subj "/CN=standardebooks.test" -keyout /standardebooks.org/web/config/ssl/standardebooks.test.key -sha256 -out /standardebooks.org/web/config/ssl/standardebooks.test.crt

# Enable the necessary Apache modules.
sudo a2enmod headers expires ssl rewrite proxy proxy_fcgi xsendfile

# Link and enable the SE Apache configuration file.
sudo ln -s /standardebooks.org/web/config/apache/standardebooks.test.conf /etc/apache2/sites-available/
sudo a2ensite standardebooks.test
sudo systemctl restart apache2.service

# Link and enable the SE PHP-FPM pool.
sudo ln -s /standardebooks.org/web/config/php/fpm/standardebooks.test.ini /etc/php/*/cli/conf.d/
sudo ln -s /standardebooks.org/web/config/php/fpm/standardebooks.test.ini /etc/php/*/fpm/conf.d/
sudo ln -s /standardebooks.org/web/config/php/fpm/standardebooks.test.conf /etc/php/*/fpm/pool.d/
sudo systemctl restart "php*-fpm.service"

If everything went well you should now be able to open your web browser and visit https://standardebooks.test. However, you won’t see any ebooks if you visit https://standardebooks.test/ebooks. To install some ebooks, first you have to clone their source from GitHub, then deploy them to your local website using the ./scripts/deploy-ebook-to-www script:

# First, install the SE toolset, which will make the `se build` command-line executable available to the `deploy-ebook-to-www` script:
# https://standardebooks.org/tools

# Once the toolset is installed, clone a book and deploy it to your local SE site:
mkdir /standardebooks.org/ebooks/
cd /standardebooks.org/ebooks/
git clone --bare https://github.com/standardebooks/david-lindsay_a-voyage-to-arcturus
/standardebooks.org/web/scripts/deploy-ebook-to-www david-lindsay_a-voyage-to-arcturus.git

If everything went well, https://standardebooks.test/ebooks will show the one ebook you deployed.

Installation using Docker

We provide a Dockerfile for testing code changes. You can build an image with:

docker build . -t standardebooks -f vms/docker/Dockerfile

Then run the built image with:

docker run -dp 443:443 -v "$(pwd):/standardebooks.org/web" standardebooks:latest

The site will now be available at https://localhost/, although as it’s a self-signed certificate you’ll need to accept whatever browser security warnings come up.

Filesystem layout

  • /standardebooks.org/ebooks/ contains one directory per SE ebook, arranged in a flat hierarchy. These directories look like the URL-safe identifier for the ebook, end in .git, and are bare Git repos; they are the “source of truth” for SE ebooks.

    For example:

    /standardebooks.org/ebooks/algis-budrys_short-fiction.git/
    /standardebooks.org/ebooks/omar-khayyam_the-rubaiyat-of-omar-khayyam_edward-fitzgerald_edmund-dulac.git/
    
  • /standardebooks.org/web/www/ebooks/ contains a nested hierarchy of deployed ebook files, that are read by the website for display and download. For example, we might have:

    /standardebooks.org/web/www/ebooks/maurice-leblanc/
    /standardebooks.org/web/www/ebooks/maurice-leblanc/the-hollow-needle/
    /standardebooks.org/web/www/ebooks/maurice-leblanc/the-hollow-needle/alexander-teixeira-de-mattos/
    /standardebooks.org/web/www/ebooks/maurice-leblanc/813/
    /standardebooks.org/web/www/ebooks/maurice-leblanc/813/alexander-teixeira-de-mattos/
    

    These directories contain the full ebook source, as if it was pulled from Git. (But they are not actual Git repositories.) Additionally each one contains a ./downloads/ folder containing built ebook files for distribution.

    The website pulls all ebook information from what is contained in /standardebooks.org/web/www/ebooks/. It does not inspect /standardebooks.org/ebooks/. Therefore it is possible for one or the other to hold different catalogs if they become out of sync.

    To automatically populate your server with ebooks from https://github.com/standardebooks/, you can use sync-ebooks and deploy-ebook-to-www in the scripts directory. If you don’t want to clone all ebooks, don’t use sync-ebooks, and instead clone the books you want into /standardebooks.org/ebooks with git clone --bare. To clone a list of books, you can use while IFS= read -r line; do git clone --bare "${line}"; done < urllist.txt

  • /standardebooks.org/web/www/manual/ contains the compiled Standard Ebooks Manual of Style. Because it is compiled from other sources, the distributable PHP files are not included in this repo. To include the manual, clone the SEMoS repo and follow the instructions in its readme to compile it into /standardebooks.org/web/www/manual/x.y.z/.

Testing

This repository includes PHPStan to statically analyze the codebase and Safe PHP to replace old functions that don’t throw exceptions.

To run PHPStan, execute:

$> <REPO-ROOT>/vendor/bin/phpstan analyse -c <REPO-ROOT>/config/phpstan/phpstan.neon

If run successfully, it should output [OK] No errors.

Contributing

Before submitting design contributions, please discuss them with the Standard Ebooks lead. While we encourage discussion and contributions, we can’t guarantee that unsolicited design contributions will be accepted. You can open an issue to discuss potential design contributions with us before you begin.

Help wanted

  • Creating a search bar for the SE Manual of Style.

  • Finding a self-hosted replacement for GitHub, like possibly Gitea or GitLab, and figuring out how to reproducably install and update it on the SE server.

PHP code style

  • Indent with tabs.

  • Use single quotes for strings, unless the string must contain a printable escape character.

    $foo = 'baz';
    $bar = "\tbaz\n";
  • When composing strings always use string concatenation. Don’t evaluate PHP variables inside strings.

    Good:

    $foo = 'bar' . $fizz . 'buzz';

    Bad:

    $foo = "bar$fizzbuzz";
    $foo = "bar{$fizz}buzz";
  • Variable names are in camelCase.

    $fooBar = 'baz';
  • Object members are in PascalCase.

    $myObject->FooBar = 'baz';
  • Output to HTML is done using <?= $var ?>, not print($var) or any other printing function.

  • Check for null using === and !==.

  • Where possible, include type hints for functions. Due to PHP limitations this may not always be possible, for example in cases where null may be passed or returned.

  • If using regex to parse HTML, use | as the regex delimiter instead of /.

    preg_replace('|</foo>|ius', '</bar>', $text);
  • Omit closing PHP tags in files that are pure PHP.

  • Language constructs that can optionally have curly braces (like if) should always have curly braces.

    Good:

    if(true){
        print('Foo!');
    }
    else{
        print('Bar!');
    }

    Bad:

    if(true)
        print('Foo!');
    else
        print('Bar!');

More Repositories

1

tools

The Standard Ebooks toolset for producing our ebook files.
Python
1,210
star
2

manual

The source code for the Standard Ebooks Manual of Style.
Python
91
star
3

marcus-aurelius_meditations_george-long

Epub source for the Standard Ebooks edition of Meditations, by Marcus Aurelius. Translated by George Long
HTML
23
star
4

laozi_tao-te-ching_james-legge

Epub source for the Standard Ebooks edition of The Tao Te Ching, by Laozi. Translated by James Legge
HTML
14
star
5

philip-k-dick_short-fiction

Epub source for the Standard Ebooks edition of Short Fiction, by Philip K. Dick
HTML
11
star
6

anton-chekhov_short-fiction_constance-garnett

Epub source for the Standard Ebooks edition of Short Fiction, by Anton Chekhov. Translated by Constance Garnett
HTML
10
star
7

henry-david-thoreau_walden

Epub source for the Standard Ebooks edition of Walden, by Henry David Thoreau
HTML
7
star
8

hermann-hesse_siddhartha_gunther-olesch_anke-dreher_amy-coulter_stefan-langer_semyon-chaichenets

Epub source for the Standard Ebooks edition of Siddhartha, by Hermann Hesse. Translated by Gunther Olesch, Anke Dreher, Amy Coulter, Stefan Langer, and Semyon Chaichenets
HTML
6
star
9

james-joyce_dubliners

Epub source for the Standard Ebooks edition of Dubliners, by James Joyce
HTML
5
star
10

f-scott-fitzgerald_the-great-gatsby

Epub source for the Standard Ebooks edition of The Great Gatsby, by F. Scott Fitzgerald
HTML
5
star
11

standard-blackletter

A CC0 blackletter font created for the Standard Ebooks project.
5
star
12

edgar-allan-poe_short-fiction

Epub source for the Standard Ebooks edition of Short Fiction, by Edgar Allan Poe
HTML
5
star
13

leo-tolstoy_the-kingdom-of-god-is-within-you_leo-wiener

Epub source for the Standard Ebooks edition of The Kingdom of God Is Within You, by Leo Tolstoy. Translated by Leo Wiener
HTML
5
star
14

miguel-de-cervantes-saavedra_don-quixote_john-ormsby

Epub source for the Standard Ebooks edition of Don Quixote, by Miguel de Cervantes. Translated by John Ormsby
HTML
5
star
15

seneca_dialogues_aubrey-stewart

Epub source for the Standard Ebooks edition of Dialogues, by Seneca. Translated by Aubrey Stewart
HTML
5
star
16

upton-sinclair_the-jungle

Epub source for the Standard Ebooks edition of The Jungle, by Upton Sinclair
HTML
4
star
17

john-milton_paradise-lost

Epub source for the Standard Ebooks edition of Paradise Lost, by John Milton
HTML
4
star
18

w-somerset-maugham_the-moon-and-sixpence

Epub source for the Standard Ebooks edition of The Moon and Sixpence, by W. Somerset Maugham
HTML
4
star
19

john-stuart-mill_on-liberty

Epub source for the Standard Ebooks edition of On Liberty, by John Stuart Mill
HTML
4
star
20

friedrich-nietzsche_beyond-good-and-evil_helen-zimmern

Epub source for the Standard Ebooks edition of Beyond Good and Evil, by Friedrich Nietzsche. Translated by Helen Zimmern
HTML
4
star
21

lewis-carroll_alices-adventures-in-wonderland_john-tenniel

Epub source for the Standard Ebooks edition of Alice's Adventures in Wonderland, by Lewis Carroll. Illustrated by John Tenniel
HTML
4
star
22

robert-w-chambers_the-king-in-yellow

Epub source for the Standard Ebooks edition of The King in Yellow, by Robert W. Chambers
HTML
4
star
23

mary-shelley_frankenstein

Epub source for the Standard Ebooks edition of Frankenstein, by Mary Shelley
HTML
4
star
24

sun-tzu_the-art-of-war_lionel-giles

Epub source for the Standard Ebooks edition of The Art of War, by Sun Tzu. Translated by Lionel Giles
HTML
3
star
25

george-macdonald_the-princess-and-the-goblin

Epub source for the Standard Ebooks edition of The Princess and the Goblin, by George MacDonald
HTML
3
star
26

ambrose-bierce_the-devils-dictionary

Epub source for the Standard Ebooks edition of The Devil’s Dictionary, by Ambrose Bierce
HTML
3
star
27

arthur-conan-doyle_the-lost-world

Epub source for the Standard Ebooks edition of The Lost World, by Arthur Conan Doyle
HTML
3
star
28

bram-stoker_dracula

Epub source for the Standard Ebooks edition of Dracula, by Bram Stoker
HTML
3
star
29

a-a-milne_winnie-the-pooh

Epub source for the Standard Ebooks edition of Winnie the Pooh, by A. A. Milne
HTML
3
star
30

oscar-wilde_the-importance-of-being-earnest

Epub source for the Standard Ebooks edition of The Importance of Being Earnest, by Oscar Wilde
HTML
3
star
31

mark-twain_the-adventures-of-huckleberry-finn

Epub source for the Standard Ebooks edition of The Adventures of Huckleberry Finn, by Mark Twain
HTML
3
star
32

charles-babbage_passages-from-the-life-of-a-philosopher

Epub source for the Standard Ebooks edition of Passages from the Life of a Philosopher, by Charles Babbage
HTML
3
star
33

anthony-hope_the-prisoner-of-zenda

Epub source for the Standard Ebooks edition of The Prisoner of Zenda, by Anthony Hope
HTML
3
star
34

p-t-barnum_the-art-of-money-getting

Epub source for the Standard Ebooks edition of The Art of Money Getting, by P. T. Barnum
HTML
3
star
35

niccolo-machiavelli_the-prince_w-k-marriott

Epub source for the Standard Ebooks edition of The Prince, by Niccolò Machiavelli. Translated by W. K. Marriot
HTML
3
star
36

robert-louis-stevenson_treasure-island

Epub source for the Standard Ebooks edition of Treasure Island, by Robert Louis Stevenson
HTML
3
star
37

edgar-rice-burroughs_a-princess-of-mars

Epub source for the Standard Ebooks edition of A Princess of Mars, by Edgar Rice Burroughs
HTML
3
star
38

h-g-wells_the-time-machine

Epub source for the Standard Ebooks edition of The Time Machine, by H. G. Wells
HTML
3
star
39

g-k-chesterton_the-napoleon-of-notting-hill

Epub source for the Standard Ebooks edition of The Napoleon of Notting Hill, by G. K. Chesterton
HTML
2
star
40

jules-verne_journey-to-the-center-of-the-earth_f-a-malleson

Epub source for the Standard Ebooks edition of Journey to the Center of the Earth, by Jules Verne
HTML
2
star
41

jane-austen_pride-and-prejudice

Epub source for the Standard Ebooks edition of Pride and Prejudice, by Jane Austen
HTML
2
star
42

william-hazlitt_table-talk

Epub source for the Standard Ebooks edition of Table-Talk, by William Hazlitt
HTML
2
star
43

rudyard-kipling_the-jungle-book

Epub source for the Standard Ebooks edition of The Jungle Book, by Rudyard Kipling
HTML
2
star
44

h-p-lovecraft_short-fiction

Epub source for the Standard Ebooks edition of Short Fiction, by H. P. Lovecraft
HTML
2
star
45

t-s-eliot_poetry

Epub source for the Standard Ebooks edition of Poetry, by T. S. Eliot
HTML
2
star
46

david-lindsay_a-voyage-to-arcturus

Epub source for the Standard Ebooks edition of A Voyage to Arcturus, by David Lindsay
HTML
2
star
47

charlotte-bronte_jane-eyre

Epub source for the Standard Ebooks edition of Jane Eyre: An Autobiography, by Charlotte Brontë
HTML
2
star
48

joseph-conrad_heart-of-darkness

Epub source for the Standard Ebooks edition of Heart of Darkness, by Joseph Conrad
HTML
2
star
49

jack-london_white-fang

Epub source for the Standard Ebooks edition of White Fang, by Jack London
HTML
2
star
50

charles-dickens_oliver-twist

Epub source for the Standard Ebooks edition of Oliver Twist, by Charles Dickens
HTML
2
star
51

thomas-bulfinch_bulfinchs-mythology

Epub source for the Standard Ebooks edition of Bulfinch’s Mythology, by Thomas Bulfinch
HTML
2
star
52

herman-melville_moby-dick

Epub source for the Standard Ebooks edition of Moby Dick, by Herman Melville
HTML
2
star
53

gaston-leroux_the-phantom-of-the-opera_alexander-teixeira-de-mattos

Epub source for the Standard Ebooks edition of The Phantom of the Opera, by Gaston Leroux. Translated by Alexander Teixeira de Mattos.
HTML
2
star
54

george-meredith_the-shaving-of-shagpat

Epub source for the Standard Ebooks edition of The Shaving of Shagpat, by George Meredith
HTML
2
star
55

g-k-chesterton_the-innocence-of-father-brown

Epub source for the Standard Ebooks edition of The Innocence of Father Brown, by G. K. Chesterton
HTML
2
star
56

william-makepeace-thackeray_the-luck-of-barry-lyndon

Epub source for the Standard Ebooks edition of The Luck of Barry Lyndon, by William Makepeace Thackeray
HTML
2
star
57

sublime-text-se-plugin

A Sublime Text plugin to make several helpful Standard Ebooks commands available.
Python
2
star
58

agatha-christie_the-murder-on-the-links

Epub source for the Standard Ebooks edition of The Murder on the Links, by Agatha Christie
HTML
2
star
59

john-bunyan_the-pilgrims-progress

Epub source for the Standard Ebooks edition of The Pilgrim’s Progress, by John Bunyan
HTML
2
star
60

james-stephens_irish-fairy-tales

Epub source for the Standard Ebooks edition of Irish Fairy Tales, by James Stephens
HTML
2
star
61

thomas-carlyle_sartor-resartus

Epub source for the Standard Ebooks edition of Sartor Resartus, by Thomas Carlyle
HTML
2
star
62

emily-bronte_wuthering-heights

Epub source for the Standard Ebooks edition of Wuthering Heights, by Emily Brontë
HTML
2
star
63

voltaire_candide_the-modern-library

Epub source for the Standard Ebooks edition of Candide, by Voltaire. Translated by the Modern Library
HTML
2
star
64

lord-dunsany_the-gods-of-pegana

Epub source for the Standard Ebooks edition of The Gods of Pegāna, by Lord Dunsany
HTML
2
star
65

benjamin-franklin_the-autobiography-of-benjamin-franklin

Epub source for the Standard Ebooks edition of The Autobiography of Benjamin Franklin, by Benjamin Franklin
HTML
2
star
66

h-g-wells_the-war-of-the-worlds

Epub source for the Standard Ebooks edition of The War of the Worlds, by H. G. Wells
HTML
2
star
67

mark-twain_the-adventures-of-tom-sawyer

Epub source for the Standard Ebooks edition of The Adventures of Tom Sawyer, by Mark Twain
HTML
2
star
68

fyodor-dostoevsky_the-brothers-karamazov_constance-garnett

Epub source for the Standard Ebooks edition of The Brothers Karamazov, by Fyodor Dostoevsky. Translated by Constance Garnett
HTML
2
star
69

christopher-marlowe_the-tragical-history-of-doctor-faustus

Epub source for the Standard Ebooks edition of The Tragical History of Doctor Faustus, by Christopher Marlowe
HTML
2
star
70

lewis-carroll_through-the-looking-glass_john-tenniel

Epub source for the Standard Ebooks edition of Through the Looking-Glass, by Lewis Carroll. Illustrated by John Tenniel
HTML
2
star
71

agatha-christie_the-mystery-of-the-blue-train

Epub source for the Standard Ebooks edition of The Mystery of the Blue Train, by Agatha Christie
HTML
2
star
72

h-g-wells_short-fiction

Epub source for the Standard Ebooks edition of Short Fiction, by H. G. Wells
HTML
2
star
73

robert-louis-stevenson_the-strange-case-of-dr-jekyll-and-mr-hyde

Epub source for the Standard Ebooks edition of The Strange Case of Dr. Jekyll and Mr. Hyde, by Robert Louis Stevenson
HTML
2
star
74

karl-marx_friedrich-engels_the-communist-manifesto_samuel-moore

Epub source for the Standard Ebooks edition of The Communist Manifesto, by karl-marx_friedrich-engels. Translated by samuel-moore
HTML
2
star
75

h-beam-piper_space-viking

Epub source for the Standard Ebooks edition of Space Viking, by H. Beam Piper
HTML
2
star
76

fyodor-dostoevsky_the-idiot_eva-m-martin

Epub source for the Standard Ebooks edition of The Idiot, by Fyodor Dostoevsky. Translated by Eva M. Martin
HTML
2
star
77

edgar-allan-poe_the-narrative-of-arthur-gordon-pym-of-nantucket

Epub source for the Standard Ebooks edition of The Narrative of Gordon Arthur Pym of Nantucket, by Edgar Allan Poe
HTML
2
star
78

mark-twain_a-connecticut-yankee-in-king-arthurs-court

Epub source for the Standard Ebooks edition of A Connecticut Yankee in King Arthur's Court, by Mark Twain
HTML
2
star
79

friedrich-nietzsche_thus-spake-zarathustra_thomas-common

Epub source for the Standard Ebooks edition of Thus Spake Zarathustra, by Friedrich Nietzsche. Translated by Thomas Common
HTML
2
star
80

julius-caesar_commentaries-on-the-gallic-war_w-a-mcdevitte_w-s-bohn

Epub source for the Standard Ebooks edition of Commentaries on the Gallic War, by Julius Caesar. Translated by W. A. McDevitte and W. S. Bohn
HTML
2
star
81

f-scott-fitzgerald_this-side-of-paradise

Epub source for the Standard Ebooks edition of This Side of Paradise, by F. Scott Fitzgerald
HTML
2
star
82

arthur-conan-doyle_the-adventures-of-sherlock-holmes

Epub source for the Standard Ebooks edition of The Adventures of Sherlock Holmes, by Arthur Conan Doyle
HTML
2
star
83

philip-james-bailey_festus

Epub source for the Standard Ebooks edition of Festus, by Philip James Bailey
HTML
1
star
84

alfred-lord-tennyson_idylls-of-the-king

Epub source for the Standard Ebooks edition of Idylls of the King, by Alfred, Lord Tennyson
HTML
1
star
85

jack-london_the-call-of-the-wild

Epub source for the Standard Ebooks edition of The Call of the Wild, by Jack London
HTML
1
star
86

laurence-sterne_the-life-and-opinions-of-tristram-shandy-gentleman

Epub source for the Standard Ebooks edition of The Life and Opinions of Tristram Shandy, Gentleman, by Laurence Sterne
HTML
1
star
87

jonathan-swift_gullivers-travels

Epub source for the Standard Ebooks edition of Gulliver’s Travels, by Jonathan Swift
HTML
1
star
88

h-beam-piper_little-fuzzy

Epub source for the Standard Ebooks edition of Little Fuzzy, by H. Beam Piper
HTML
1
star
89

ameen-rihani_poetry

Epub source for the Standard Ebooks edition of Poetry, by Ameen Rihani
HTML
1
star
90

william-makepeace-thackeray_vanity-fair

Epub source for the Standard Ebooks edition of Vanity Fair, by William Makepeace Thackeray
HTML
1
star
91

anton-chekhov_the-duel_constance-garnett

Epub source for the Standard Ebooks edition of The Duel, by Anton Chekhov. Translated by Constance Garnett
HTML
1
star
92

leo-tolstoy_anna-karenina_constance-garnett

Epub source for the Standard Ebooks edition of Anna Karenina, by Leo Tolstoy. Translated by Constance Garnett
HTML
1
star
93

robert-e-howard_short-fiction

Epub source for the Standard Ebooks edition of Short Fiction, by Robert E. Howard
HTML
1
star
94

franklin-w-dixon_the-house-on-the-cliff

Epub source for the Standard Ebooks edition of The House on the Cliff, by Franklin W. Dixon
HTML
1
star
95

charles-kingsley_the-water-babies

Epub source for the Standard Ebooks edition of The Water-Babies, by Charles Kingsley
HTML
1
star
96

charles-dickens_david-copperfield

Epub source for the Standard Ebooks edition of David Copperfield, by Charles Dickens
HTML
1
star
97

g-k-chesterton_the-wisdom-of-father-brown

Epub source for the Standard Ebooks edition of The Wisdom of Father Brown, by G. K. Chesterton
HTML
1
star
98

george-eliot_daniel-deronda

Epub source for the Standard Ebooks edition of Daniel Deronda, by George Eliot
HTML
1
star
99

erskine-childers_the-riddle-of-the-sands

Epub source for the Standard Ebooks edition of The Riddle of the Sands, by Erskine Childers
HTML
1
star
100

sinclair-lewis_main-street

Epub source for the Standard Ebooks edition of Main Street, by Sinclair Lewis
HTML
1
star