• Stars
    star
    216
  • Rank 183,179 (Top 4 %)
  • Language
    PHP
  • License
    GNU Affero Genera...
  • Created over 12 years ago
  • Updated 11 months ago

Reviews

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

Repository Details

Self-hosted pastebin software written in PHP. Pastes are editable, forkable, may have multiple files and are stored in git repositories.

phorkie - Git based pastebin

Self-hosted pastebin software written in PHP. Pastes are editable, may have multiple files and are stored in git repositories.

Homepage | Bug tracker | Git repository ยท GitHub mirror | News

Features

  • every paste is a git repository
    • repositories can be cloned
    • clone url can be displayed
    • remote pastes can be forked (rel="vcs-git" and gist.github.com)
    • single click forking of forks on different servers to your own
  • paste editing
    • add new files
    • delete existing files
    • replace file with upload
  • embedding of pastes in your blog (via JavaScript or oEmbed)
  • multiple files in one paste - option to edit single files in a multi-file paste
  • syntax highlighting with GeSHi
  • rST and Markdown rendering
  • image upload + display
  • OpenID authentication
  • external tool support
    • xmllint
    • php syntax check
  • history in the sidebar
    • old files can be downloaded easily
  • search across pastes: description, file names and file content
    • options: quoting, logical and, or, not, partial words
  • webhook support - get notified when pastes are created, edited or deleted
  • atom feed for new and updated pastes
  • notifies remote instances via linkbacks when a paste has been forked
  • text file detection for unknown file types

Download

phorkie is released as self-contained .phar file that includes all dependencies, as well as a normal zip file.

See phorkie downloads page for all released versions.

Installation

.phar

Download phorkie-0.8.1.phar and put it in your web server's document root directory.

No further setup needed.

Note

Only valid if your webserver is configured to let PHP handle .phar files.

Unfortunately, no Linux distribution has this activated by default. You can do it yourself, though - see Enable .phar handling in your web server.

Warning

PHP has some bugs in its .phar handling code (e.g. with FPM).

So currently, the .phar option is considered experimental.

Zip package

  1. Unzip the phorkie release file:

    $ tar xjvf phorkie-0.8.1.tar.bz2
    
  2. Create the git directories:

    $ mkdir -p www/repos/git www/repos/work
    $ chmod og+w www/repos/git www/repos/work
    
  3. Install dependencies

  4. Copy data/config.php.dist to data/config.php and adjust it to your needs:

    $ cp data/config.php.dist data/config.php
    $ $EDITOR data/config.php
    

    Look at config.default.php for values that you may adjust.

  5. Set your web server's document root to /path/to/phorkie/www/ Alternatively, you can add a symlink to the www folder into your web server's existing document root tree (being careful to keep main phorkie folder outside the document root for security purposes) and ensure you set the baseurl config option appropriately. You must also set the RewriteBase in the .htaccess file or adjust the nginx configuration accordingly.

  6. Open http://yourhost/setup in your web browser to see if everything is working fine.

  7. Go to http://yourhost/

  8. If you like phorkie, send a mail to [email protected]

Dependencies

phorkie stands on the shoulders of giants.

It requires the following programs to be installed on your machine:

  • Git v1.7.5 or later
  • PHP v8.0.0 or later
    • with the mbstring extension
  • A dozen of libraries

Use composer to install all dependencies:

$ composer install --no-dev

Note that the .phar package already contains all dependencies.

Search

phorkie makes use of an Elasticsearch installation, if you have one.

It is used to provide search capabilities and the list of recent pastes.

Elasticsearch version 2.4 is supported.

You have to install the delete-by-query plugin:

$ cd /usr/share/elasticsearch
$ bin/plugin install delete-by-query
$ systemctl restart elasticsearch

The plugin is missing if you get the following error:

type: routing_missing_exception
reason: routing is required for [phorkie]\/[file]\/[_query]

Setup

Edit config.php, setting the elasticsearch property to the HTTP URL of the index, e.g.

http://localhost:9200/phorkie/

You must use a search namespace with Elasticsearch such as phorkie/. Run the index script to import all existing pastes into the index:

php scripts/index.php

That's all. Open phorkie in your browser, and you'll notice the search box in the top menu.

Reset

In case something really went wrong and you need to reset the search index, run the following command:

$ curl -XDELETE http://localhost:9200/phorkie/
{"ok":true,"acknowledged"}

Phorkie will automatically re-index everything when setupcheck is enabled in the configuration file.

You may also manually run the reindexing script with:

$ php scripts/index.php

HowTo

Make git repositories clonable

HTTP

By default, the pastes are clonable via http as long as the repos/git/ directory is within the www/ directory.

No further setup needed.

git-daemon

You may use git-daemon to provide public git:// clone urls. Install the git-daemon-run package on Debian/Ubuntu.

Make the repositories available by symlinking the paste repository directory ($GLOBALS['phorkie']['cfg']['repos'] setting) into /var/cache/git, e.g.:

$ ln -s /home/user/www/paste/repos/git /var/cache/git/paste

Edit your config.php and set the $GLOBALS['phorkie']['cfg']['git']['public'] setting to git://$yourhostname/git/paste/. The rest will be appended automatically.

You're on your own to setup writable repositories.

Protect your site with OpenID

You have the option of enabling OpenID authentication to help secure your pastes on phorkie. Set the $GLOBALS['phorkie']['auth'] values in the data/config.php file as desired.

There are two different types of security you can apply. First, you can restrict to one of three securityLevels:

  • completely open (0)
  • protection of write-enabled functions such as add, edit, etc. (1)
  • full site protection (2)

Additionally, you can restrict your site to listedUsersOnly. You will need to add the individual OpenID urls to the $GLOBALS['phorkie']['auth']['users'] variable.

Get information about paste editors

Phorkie stores the user's OpenID or IP address (when not logged in) when a paste is edited. It is possible to get this information for each single commit:

// IP / OpenID for the latest commit
$ git notes --ref=identity show
127.0.0.1

// show IP / OpenID for a given commit
$ git notes --ref=identity show 29f82a
http://cweiske.de/

Notifications via webhooks

Depending on how you use phorkie, it might be nice to notify some other service when pastes are added or updated. Phorkie contains a simply mechanism to post data to a given URL which you can then use as needed.

The data are json-encoded POSTed to the URLs contained in the $GLOBALS['phorkie']['cfg']['webhooks'] setting array, with a MIME type of application/vnd.phorkie.webhook+json:

{
    'event': 'create',
    'author': {
        'name':'Anonymous',
        'email': 'anonymous@phorkie',
    },
    'repository': {
        'name': 'webhooktest',
        'url': 'http://example.org/33',
        'description': 'webhooktest',
        'owner': {
            'name': 'Anonymous',
            'email': 'anonymous@phorkie',
        }
    }
}

The event may be create, edit or delete.

Technical details

URLs

/
Index page.
/[0-9]+
Display page for paste
/[0-9]+/edit
Edit the paste
/[0-9]+/edit/(.+)
Edit a single file of the paste
/[0-9]+/embed
JavaScript code that embeds the whole paste in a HTML page
/[0-9]+/embed/(.+)
JavaScript code that embeds a single file in a HTML page
/[0-9]+/raw/(.+)
Display raw file contents
/[0-9]+/tool/[a-zA-Z]+/(.+)
Run a tool on the given file
/[0-9]+/rev/[a-z0-9]+
Show specific revision of the paste
/[0-9]+/delete
Delete the paste
/[0-9]+/doap
Show DOAP document for paste
/[0-9]+/fork
Create a fork of the paste
/search?q=..(&page=[0-9]+)?
Search for term, with optional page
/list(/[0-9]+)?
List all pastes, with optional page
/fork-remote
Fork a remote URL
/help
Show help page
/new
Shows form for new paste
/login
Login page for protecting site
/setup
Check if everything is setup correctly and all dependencies are installed
/user
Edit logged-in user information

Internal directory layout

repos/
  work/
    1/ - work directory for paste #1
    2/ - work directory for paste #2
  git/
    1.git/ - git repository for paste #1
      description - Description for the repository
    2.git/ - git repository for paste #2

nginx rewrites

If you use nginx, place the following lines into your server block:

if (!-e $request_uri) {
  rewrite ^/([0-9]+)$ /display.php?id=$1;
  rewrite ^/([0-9]+)/delete$ /delete.php?id=$1;
  rewrite ^/([0-9]+)/delete/confirm$ /delete.php?id=$1&confirm=1;
  rewrite ^/([0-9]+)/doap$ /doap.php?id=$1;
  rewrite ^/([0-9]+)/edit$ /edit.php?id=$1;
  rewrite ^/([0-9]+)/edit/(.+)$ /edit.php?id=$1&file=$2;
  rewrite ^/([0-9]+)/embed$ /embed.php?id=$1;
  rewrite ^/([0-9]+)/embed/(.+)$ /embed.php?id=$1&file=$2;
  rewrite ^/([0-9]+)/fork$ /fork.php?id=$1;
  rewrite ^/([0-9]+)/raw/(.+)$ /raw.php?id=$1&file=$2;
  rewrite ^/([0-9]+)/rev/(.+)$ /revision.php?id=$1&rev=$2;
  rewrite ^/([0-9]+)/rev-raw/(.+)/(.+)$ /raw.php?id=$1&rev=$2&file=$3;
  rewrite ^/([0-9]+)/tool/([^/]+)/(.+)$ /tool.php?id=$1&tool=$2&file=$3;

  rewrite ^/fork-remote$ /fork-remote.php;
  rewrite ^/help$ /help.php;
  rewrite ^/new$ /new.php;

  rewrite ^/feed/new$ /feed-new.php;
  rewrite ^/feed/updated$ /feed-updated.php;

  rewrite ^/list$ /list.php;
  rewrite ^/list/([0-9]+)$ /list.php?page=$1;

  rewrite ^/search$ /search.php;
  rewrite ^/search/([0-9]+)$ /search.php?page=$1;

  rewrite ^/login$ /login.php;
  rewrite ^/setup$ /setup.php;
  rewrite ^/user$ /user.php;
}

Lighttpd rewrites

url.rewrite-once += (
    "^/([0-9]+)$" => "/display.php?id=$1",
    "^/([0-9]+)/delete$" => "/delete.php?id=$1",
    "^/([0-9]+)/delete/confirm" => "/delete.php?&id=$1&confirm=1",
    "^/([0-9]+)/doap$" => "/doap.php?id=$1",
    "^/([0-9]+)/edit$" => "/edit.php?id=$1",
    "^/([0-9]+)/edit/(.+)" => "/edit.php?id=$1&file=$2",
    "^/([0-9]+)/embed$" => "/embed.php?id=$1",
    "^/([0-9]+)/embed/(.+)$" => "/embed.php?id=$1",
    "^/([0-9]+)/fork$" => "/fork.php?id=$1",
    "^/([0-9]+)/raw/(.+)$" => "/raw.php?id=$1&file=$2",
    "^/([0-9]+)/rev/(.+)$" => "/revision.php?id=$1&rev=$2",
    "^/([0-9]+)/rev-raw/(.+)/(.+)$" => "/raw.php?id=$1&rev=$2&file=$3",
    "^/([0-9]+)/tool/([^/]+)/(.+)$" => "/tool.php?id=$1&tool=$2&file=$3",

    "^/fork-remote$" => "/fork-remote.php",
    "^/help$" => "/help.php",
    "^/new$" => "/new.php",

    "^/feed/new$" => "/feed-new.php",
    "^/feed/updated$" => "/feed-updated.php",

    "^/list$" => "/list.php",
    "^/list/([0-9]+)$" => "/list.php?page=$1",

    "^/search$" => "/search.php",
    "^/search/([0-9]+)$" => "/search.php?page=$1",

    "^/login$" => "/login.php",
    "^/setup$" => "/setup.php",
    "^/user$" => "/user.php"
)

Development

Releasing a new version

  1. Update ChangeLog, NEWS.rst, build.xml and README.rst.

  2. Update local dependencies:

    $ phing collectdeps
    
  3. Build .tar.bz2 and .phar release files with:

    $ phing zip
    $ phing phar
    
  4. Test.

  5. Tag the release in git

  6. Run the script to update the homepage

    $ cd /home/cweiske/Dev/html/cweiske.de $ ./scripts/update-phorkie.sh

More Repositories

1

jsonmapper

Map nested JSON structures onto PHP classes
PHP
1,552
star
2

phpfarm

UNMAINTAINED AND OUT OF DATE. Tool to install multiple versions of PHP beside each other
Shell
142
star
3

SemanticScuttle

SemanticScuttle is a social bookmarking tool experimenting new features like structured tags and collaborative tag descriptions. Report bugs on sourceforge.
PHP
110
star
4

phinde

Self-hosted search engine for your static blog
PHP
54
star
5

php-sqllint

Command line tool to validate (syntax check) SQL files. Mirror of http://git.cweiske.de/php-sqllint.git/
PHP
48
star
6

phancap

Web service to create website screenshots. Mirror of http://git.cweiske.de/phancap.git
PHP
37
star
7

stouyapi

Static API to keep the OUYA working in 2019. Mirror of https://git.cweiske.de/stouyapi.git
JavaScript
32
star
8

phubb

PHP WebSub server. Mirror of http://git.cweiske.de/phubb.git/
PHP
27
star
9

shpub

command line micropub client
PHP
23
star
10

indieauth-openid

Mirror of http://git.cweiske.de/indieauth-openid.git/
PHP
13
star
11

shutter-scp

scp upload plugin for Shutter, the screenshot tool
Perl
13
star
12

noxon-api

An attempt to document the API between Noxon iRadio devices and the servers at vtuner.com and my-noxon.net
PHP
12
star
13

adept-analysis

trying to understand adobe digital edition's protocol
11
star
14

anoweco

Anonymous web comments for the indieweb
PHP
11
star
15

ssh-dyndns

dyndns via ssh+tinydns (dbjdns/dbndns). Mirror of http://git.cweiske.de/?p=ssh-dyndns.git
Shell
10
star
16

careless

Removes LCP DRM encryption from .epub ebook files
10
star
17

surrogator

simple libravatar server
PHP
10
star
18

stapibas

Standalone pingback server. Mirror of http://git.cweiske.de/stapibas.git/
PHP
10
star
19

instagram2micropub

Downloads images of a (private) instagram profile and sends them to a Micropub endpoint
PHP
10
star
20

headphoneindicator

Android app that shows if the headset is plugged in
Java
8
star
21

tt-rss-subtome

SubToMe.com plugin for Tiny Tiny RSS. Mirror of http://git.cweiske.de/tt-rss-subtome.git/
PHP
7
star
22

noxon-gateway

Push your own content onto Noxon iRadio devices.
PHP
7
star
23

MIME_Type_PlainDetect

Detect the MIME type of source code files
PHP
7
star
24

ouya-store-api

OUYA store API documentation. Mirror of http://git.cweiske.de/ouya-store-api.git/
HTML
5
star
25

roundcube-nextcloud_sql_addressbook

Roundcube plugin that allows access to NextCloud address books. Mirror of https://git.cweiske.de/roundcube-nextcloud_sql_addressbook.git
PHP
5
star
26

tmdb2mkvtags

Generate a Matroska tags file from TMDb information. Mirror of https://git.cweiske.de/tmdb2mkvtags.git
PHP
5
star
27

xposed-ouya-plain-purchases

Xposed module that deactivates encryption on the OUYA Android gaming console. Mirror of https://git.cweiske.de/xposed-ouya-plain-purchases.git
Java
4
star
28

louyapi

Local OUYA API server app
Java
4
star
29

auerswald-callnotifier

Notifies you about incoming/outgoing calls of a Auerswald COMpact 3000
PHP
4
star
30

tolino-api-docs

Servers the Tolino Vision 3/4 HD talk to (Firmware 14.x). Mirror of https://git.cweiske.de/tolino-api-docs.git
CSS
4
star
31

usb-wde1-tools

Tools to collect and analyze data from the USB-WDE1 weather receiver from ELV.de. Mirror of http://git.cweiske.de/?p=usb-wde1-tools.git
Shell
3
star
32

errbot-exec

Execute an external command when errbot is talked to.
Python
2
star
33

enigma2-curlytx

Display plain text files fetched via HTTP
Python
2
star
34

RngToRnc

Convert an RelaxNG schema to the compact syntax. Backup of http://pantor.com/download.html
2
star
35

playVideoOnDreambox

Firefox addon (extension) that adds a "Play on Dreambox" button to the toolbar. Pressing it plays the video of the current tab on your Dreambox satellite receiver.
JavaScript
1
star
36

youtube-dl-server

Fetch information about video pages with the help of youtube-dl
PHP
1
star
37

bdrem

Birthday reminder that sends mails. Mirror of http://git.cweiske.de/bdrem.git/
PHP
1
star
38

ouya-romlauncher

Tool to make SNES roms startable via the normal OUYA launcher. Mirror of http://git.cweiske.de/ouya-romlauncher.git/
Java
1
star
39

libratone-firmwares

Firmware files for Libratone Zipp speakers
1
star