Compare commits
No commits in common. "master" and "raw_icon" have entirely different histories.
|
@ -1,8 +0,0 @@
|
||||||
Dockerfile
|
|
||||||
.git
|
|
||||||
npm-debug.log
|
|
||||||
node_modules
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
data
|
|
||||||
*.DS_Store
|
|
|
@ -1,2 +0,0 @@
|
||||||
**/*.min.js
|
|
||||||
config.js
|
|
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
"env": {
|
|
||||||
"es6": true,
|
|
||||||
"node": true
|
|
||||||
},
|
|
||||||
"extends": "eslint:recommended",
|
|
||||||
"rules": {
|
|
||||||
"indent": [
|
|
||||||
"error",
|
|
||||||
2
|
|
||||||
],
|
|
||||||
"linebreak-style": [
|
|
||||||
"error",
|
|
||||||
"unix"
|
|
||||||
],
|
|
||||||
"quotes": [
|
|
||||||
"error",
|
|
||||||
"single"
|
|
||||||
],
|
|
||||||
"semi": [
|
|
||||||
"error",
|
|
||||||
"always"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -4,4 +4,3 @@ node_modules
|
||||||
*.swo
|
*.swo
|
||||||
data
|
data
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
config.json
|
|
||||||
|
|
68
Dockerfile
68
Dockerfile
|
@ -1,68 +0,0 @@
|
||||||
FROM node:14.8.0-stretch
|
|
||||||
|
|
||||||
RUN mkdir -p /usr/src/app && \
|
|
||||||
chown node:node /usr/src/app
|
|
||||||
|
|
||||||
USER node:node
|
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
|
||||||
|
|
||||||
COPY --chown=node:node . .
|
|
||||||
|
|
||||||
RUN npm install && \
|
|
||||||
npm install redis@0.8.1 && \
|
|
||||||
npm install pg@4.1.1 && \
|
|
||||||
npm install memcached@2.2.2 && \
|
|
||||||
npm install aws-sdk@2.738.0 && \
|
|
||||||
npm install rethinkdbdash@2.3.31
|
|
||||||
|
|
||||||
ENV STORAGE_TYPE=memcached \
|
|
||||||
STORAGE_HOST=127.0.0.1 \
|
|
||||||
STORAGE_PORT=11211\
|
|
||||||
STORAGE_EXPIRE_SECONDS=2592000\
|
|
||||||
STORAGE_DB=2 \
|
|
||||||
STORAGE_AWS_BUCKET= \
|
|
||||||
STORAGE_AWS_REGION= \
|
|
||||||
STORAGE_USENAME= \
|
|
||||||
STORAGE_PASSWORD= \
|
|
||||||
STORAGE_FILEPATH=
|
|
||||||
|
|
||||||
ENV LOGGING_LEVEL=verbose \
|
|
||||||
LOGGING_TYPE=Console \
|
|
||||||
LOGGING_COLORIZE=true
|
|
||||||
|
|
||||||
ENV HOST=0.0.0.0\
|
|
||||||
PORT=7777\
|
|
||||||
KEY_LENGTH=10\
|
|
||||||
MAX_LENGTH=400000\
|
|
||||||
STATIC_MAX_AGE=86400\
|
|
||||||
RECOMPRESS_STATIC_ASSETS=true
|
|
||||||
|
|
||||||
ENV KEYGENERATOR_TYPE=phonetic \
|
|
||||||
KEYGENERATOR_KEYSPACE=
|
|
||||||
|
|
||||||
ENV RATELIMITS_NORMAL_TOTAL_REQUESTS=500\
|
|
||||||
RATELIMITS_NORMAL_EVERY_MILLISECONDS=60000 \
|
|
||||||
RATELIMITS_WHITELIST_TOTAL_REQUESTS= \
|
|
||||||
RATELIMITS_WHITELIST_EVERY_MILLISECONDS= \
|
|
||||||
# comma separated list for the whitelisted \
|
|
||||||
RATELIMITS_WHITELIST=example1.whitelist,example2.whitelist \
|
|
||||||
\
|
|
||||||
RATELIMITS_BLACKLIST_TOTAL_REQUESTS= \
|
|
||||||
RATELIMITS_BLACKLIST_EVERY_MILLISECONDS= \
|
|
||||||
# comma separated list for the blacklisted \
|
|
||||||
RATELIMITS_BLACKLIST=example1.blacklist,example2.blacklist
|
|
||||||
ENV DOCUMENTS=about=./about.md
|
|
||||||
|
|
||||||
EXPOSE ${PORT}
|
|
||||||
STOPSIGNAL SIGINT
|
|
||||||
ENTRYPOINT [ "bash", "docker-entrypoint.sh" ]
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s \
|
|
||||||
--retries=3 CMD [ "sh", "-c", "echo -n 'curl localhost:7777... '; \
|
|
||||||
(\
|
|
||||||
curl -sf localhost:7777 > /dev/null\
|
|
||||||
) && echo OK || (\
|
|
||||||
echo Fail && exit 2\
|
|
||||||
)"]
|
|
||||||
CMD ["npm", "start"]
|
|
300
README.md
300
README.md
|
@ -1,9 +1,6 @@
|
||||||
# Haste
|
# Haste
|
||||||
|
|
||||||
Haste is an open-source pastebin software written in node.js, which is easily
|
Haste is an open-source pastebin software written in node.js, which is easily installable in any network. It can be backed by either redis or filesystem, and has a very easy adapter interface for other stores. A publicly available version can be found at [hastebin.com](http://hastebin.com)
|
||||||
installable in any network. It can be backed by either redis or filesystem,
|
|
||||||
and has a very easy adapter interface for other stores. A publicly available
|
|
||||||
version can be found at [hastebin.com](http://hastebin.com)
|
|
||||||
|
|
||||||
Major design objectives:
|
Major design objectives:
|
||||||
|
|
||||||
|
@ -11,14 +8,11 @@ Major design objectives:
|
||||||
* Be really simple
|
* Be really simple
|
||||||
* Be easy to set up and use
|
* Be easy to set up and use
|
||||||
|
|
||||||
Haste works really well with a little utility called
|
Haste works really well with a little utility called haste-client, allowing you to do things like:
|
||||||
[haste-client](https://github.com/seejohnrun/haste-client), allowing you
|
|
||||||
to do things like:
|
|
||||||
|
|
||||||
`cat something | haste`
|
`cat something | haste`
|
||||||
|
|
||||||
which will output a URL to share containing the contents of `cat something`'s
|
which will output a URL to share containing the contents of `cat something`'s STDOUT
|
||||||
STDOUT. Check the README there for more details and usages.
|
|
||||||
|
|
||||||
## Tested Browsers
|
## Tested Browsers
|
||||||
|
|
||||||
|
@ -31,31 +25,20 @@ STDOUT. Check the README there for more details and usages.
|
||||||
1. Download the package, and expand it
|
1. Download the package, and expand it
|
||||||
2. Explore the settings inside of config.js, but the defaults should be good
|
2. Explore the settings inside of config.js, but the defaults should be good
|
||||||
3. `npm install`
|
3. `npm install`
|
||||||
4. `npm start` (you may specify an optional `<config-path>` as well)
|
4. `npm start`
|
||||||
|
|
||||||
## Settings
|
## Settings
|
||||||
|
|
||||||
* `host` - the host the server runs on (default localhost)
|
* `host` - the host the server runs on (default localhost)
|
||||||
* `port` - the port the server runs on (default 7777)
|
* `port` - the port the server runs on (default 7777)
|
||||||
* `keyLength` - the length of the keys to user (default 10)
|
* `keyLength` - the length of the keys to user (default 10)
|
||||||
* `maxLength` - maximum length of a paste (default 400000)
|
* `maxLength` - maximum length of a paste (default none)
|
||||||
* `staticMaxAge` - max age for static assets (86400)
|
* `staticMaxAge` - max age for static assets (86400)
|
||||||
* `recompressStaticAssets` - whether or not to compile static js assets (true)
|
* `recompressStatisAssets` - whether or not to compile static js assets (true)
|
||||||
* `documents` - static documents to serve (ex: http://hastebin.com/about.com)
|
* `documents` - static documents to serve (ex: http://hastebin.com/about.com) in addition to static assets. These will never expire.
|
||||||
in addition to static assets. These will never expire.
|
|
||||||
* `storage` - storage options (see below)
|
* `storage` - storage options (see below)
|
||||||
* `logging` - logging preferences
|
* `logging` - logging preferences
|
||||||
* `keyGenerator` - key generator options (see below)
|
* `keyGenerator` - key generator options (see below)
|
||||||
* `rateLimits` - settings for rate limiting (see below)
|
|
||||||
|
|
||||||
## Rate Limiting
|
|
||||||
|
|
||||||
When present, the `rateLimits` option enables built-in rate limiting courtesy
|
|
||||||
of `connect-ratelimit`. Any of the options supported by that library can be
|
|
||||||
used and set in `config.js`.
|
|
||||||
|
|
||||||
See the README for [connect-ratelimit](https://github.com/dharmafly/connect-ratelimit)
|
|
||||||
for more information!
|
|
||||||
|
|
||||||
## Key Generation
|
## Key Generation
|
||||||
|
|
||||||
|
@ -80,15 +63,13 @@ Generates a random key
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The _optional_ keySpace argument is a string of acceptable characters
|
The _optional_ keySpace argument is a string of acceptable characters for the key.
|
||||||
for the key.
|
|
||||||
|
|
||||||
## Storage
|
## Storage
|
||||||
|
|
||||||
### File
|
### File
|
||||||
|
|
||||||
To use file storage (the default) change the storage section in `config.js` to
|
To use file storage (the default) change the storage section in `config.js` to something like:
|
||||||
something like:
|
|
||||||
|
|
||||||
``` json
|
``` json
|
||||||
{
|
{
|
||||||
|
@ -97,16 +78,13 @@ something like:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
where `path` represents where you want the files stored.
|
Where `path` represents where you want the files stored
|
||||||
|
|
||||||
File storage currently does not support paste expiration, you can follow [#191](https://github.com/seejohnrun/haste-server/issues/191) for status updates.
|
|
||||||
|
|
||||||
### Redis
|
### Redis
|
||||||
|
|
||||||
To use redis storage you must install the `redis` package in npm, and have
|
To use redis storage you must install the redis package in npm globall using
|
||||||
`redis-server` running on the machine.
|
|
||||||
|
|
||||||
`npm install redis`
|
`npm install redis --global`
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
Once you've done that, your config section should look like:
|
||||||
|
|
||||||
|
@ -119,241 +97,10 @@ Once you've done that, your config section should look like:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
You can also set an `expire` option to the number of seconds to expire keys in. This is off by default, but will constantly kick back expirations on each view or post.
|
||||||
This is off by default, but will constantly kick back expirations on each view
|
|
||||||
or post.
|
|
||||||
|
|
||||||
All of which are optional except `type` with very logical default values.
|
All of which are optional except `type` with very logical default values.
|
||||||
|
|
||||||
If your Redis server is configured for password authentification, use the `password` field.
|
|
||||||
|
|
||||||
### Postgres
|
|
||||||
|
|
||||||
To use postgres storage you must install the `pg` package in npm
|
|
||||||
|
|
||||||
`npm install pg`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "postgres",
|
|
||||||
"connectionUrl": "postgres://user:password@host:5432/database"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also just set the environment variable for `DATABASE_URL` to your database connection url.
|
|
||||||
|
|
||||||
You will have to manually add a table to your postgres database:
|
|
||||||
|
|
||||||
`create table entries (id serial primary key, key varchar(255) not null, value text not null, expiration int, unique(key));`
|
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
|
||||||
This is off by default, but will constantly kick back expirations on each view
|
|
||||||
or post.
|
|
||||||
|
|
||||||
All of which are optional except `type` with very logical default values.
|
|
||||||
|
|
||||||
### MongoDB
|
|
||||||
|
|
||||||
To use mongodb storage you must install the 'mongodb' package in npm
|
|
||||||
|
|
||||||
`npm install mongodb`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "mongo",
|
|
||||||
"connectionUrl": "mongodb://localhost:27017/database"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also just set the environment variable for `DATABASE_URL` to your database connection url.
|
|
||||||
|
|
||||||
Unlike with postgres you do NOT have to create the table in your mongo database prior to running.
|
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
|
||||||
This is off by default, but will constantly kick back expirations on each view or post.
|
|
||||||
|
|
||||||
### Memcached
|
|
||||||
|
|
||||||
To use memcache storage you must install the `memcached` package via npm
|
|
||||||
|
|
||||||
`npm install memcached`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "memcached",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"port": 11211
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
|
||||||
This behaves just like the redis expirations, but does not push expirations
|
|
||||||
forward on GETs.
|
|
||||||
|
|
||||||
All of which are optional except `type` with very logical default values.
|
|
||||||
|
|
||||||
### RethinkDB
|
|
||||||
|
|
||||||
To use the RethinkDB storage system, you must install the `rethinkdbdash` package via npm
|
|
||||||
|
|
||||||
`npm install rethinkdbdash`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like this:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "rethinkdb",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"port": 28015,
|
|
||||||
"db": "haste"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
In order for this to work, the database must be pre-created before the script is ran.
|
|
||||||
Also, you must create an `uploads` table, which will store all the data for uploads.
|
|
||||||
|
|
||||||
You can optionally add the `user` and `password` properties to use a user system.
|
|
||||||
|
|
||||||
### Google Datastore
|
|
||||||
|
|
||||||
To use the Google Datastore storage system, you must install the `@google-cloud/datastore` package via npm
|
|
||||||
|
|
||||||
`npm install @google-cloud/datastore`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like this:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "google-datastore"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Authentication is handled automatically by [Google Cloud service account credentials](https://cloud.google.com/docs/authentication/getting-started), by providing authentication details to the GOOGLE_APPLICATION_CREDENTIALS environmental variable.
|
|
||||||
|
|
||||||
### Amazon S3
|
|
||||||
|
|
||||||
To use [Amazon S3](https://aws.amazon.com/s3/) as a storage system, you must
|
|
||||||
install the `aws-sdk` package via npm:
|
|
||||||
|
|
||||||
`npm install aws-sdk`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like this:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"type": "amazon-s3",
|
|
||||||
"bucket": "your-bucket-name",
|
|
||||||
"region": "us-east-1"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Authentication is handled automatically by the client. Check
|
|
||||||
[Amazon's documentation](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html)
|
|
||||||
for more information. You will need to grant your role these permissions to
|
|
||||||
your bucket:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"Version": "2012-10-17",
|
|
||||||
"Statement": [
|
|
||||||
{
|
|
||||||
"Action": [
|
|
||||||
"s3:GetObject",
|
|
||||||
"s3:PutObject"
|
|
||||||
],
|
|
||||||
"Effect": "Allow",
|
|
||||||
"Resource": "arn:aws:s3:::your-bucket-name-goes-here/*"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Docker
|
|
||||||
|
|
||||||
### Build image
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker build --tag haste-server .
|
|
||||||
```
|
|
||||||
|
|
||||||
### Run container
|
|
||||||
|
|
||||||
For this example we will run haste-server, and connect it to a redis server
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker run --name haste-server-container --env STORAGE_TYPE=redis --env STORAGE_HOST=redis-server --env STORAGE_PORT=6379 haste-server
|
|
||||||
```
|
|
||||||
|
|
||||||
### Use docker-compose example
|
|
||||||
|
|
||||||
There is an example `docker-compose.yml` which runs haste-server together with memcached
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker-compose up
|
|
||||||
```
|
|
||||||
|
|
||||||
### Configuration
|
|
||||||
|
|
||||||
The docker image is configured using environmental variables as you can see in the example above.
|
|
||||||
|
|
||||||
Here is a list of all the environment variables
|
|
||||||
|
|
||||||
### Storage
|
|
||||||
|
|
||||||
| Name | Default value | Description |
|
|
||||||
| :--------------------: | :-----------: | :-----------------------------------------------------------------------------------------------------------: |
|
|
||||||
| STORAGE_TYPE | memcached | Type of storage . Accepted values: "memcached","redis","postgres","rethinkdb", "amazon-s3", and "file" |
|
|
||||||
| STORAGE_HOST | 127.0.0.1 | Storage host. Applicable for types: memcached, redis, postgres, and rethinkdb |
|
|
||||||
| STORAGE_PORT | 11211 | Port on the storage host. Applicable for types: memcached, redis, postgres, and rethinkdb |
|
|
||||||
| STORAGE_EXPIRE_SECONDS | 2592000 | Number of seconds to expire keys in. Applicable for types. Redis, postgres, memcached. `expire` option to the |
|
|
||||||
| STORAGE_DB | 2 | The name of the database. Applicable for redis, postgres, and rethinkdb |
|
|
||||||
| STORAGE_PASSWORD | | Password for database. Applicable for redis, postges, rethinkdb . |
|
|
||||||
| STORAGE_USERNAME | | Database username. Applicable for postgres, and rethinkdb |
|
|
||||||
| STORAGE_AWS_BUCKET | | Applicable for amazon-s3. This is the name of the S3 bucket |
|
|
||||||
| STORAGE_AWS_REGION | | Applicable for amazon-s3. The region in which the bucket is located |
|
|
||||||
| STORAGE_FILEPATH | | Path to file to save data to. Applicable for type file |
|
|
||||||
|
|
||||||
### Logging
|
|
||||||
|
|
||||||
| Name | Default value | Description |
|
|
||||||
| :---------------: | :-----------: | :---------: |
|
|
||||||
| LOGGING_LEVEL | verbose | |
|
|
||||||
| LOGGING_TYPE= | Console |
|
|
||||||
| LOGGING_COLORIZE= | true |
|
|
||||||
|
|
||||||
### Basics
|
|
||||||
|
|
||||||
| Name | Default value | Description |
|
|
||||||
| :----------------------: | :--------------: | :---------------------------------------------------------------------------------------: |
|
|
||||||
| HOST | 0.0.0.0 | The hostname which the server answers on |
|
|
||||||
| PORT | 7777 | The port on which the server is running |
|
|
||||||
| KEY_LENGTH | 10 | the length of the keys to user |
|
|
||||||
| MAX_LENGTH | 400000 | maximum length of a paste |
|
|
||||||
| STATIC_MAX_AGE | 86400 | max age for static assets |
|
|
||||||
| RECOMPRESS_STATIC_ASSETS | true | whether or not to compile static js assets |
|
|
||||||
| KEYGENERATOR_TYPE | phonetic | Type of key generator. Acceptable values: "phonetic", or "random" |
|
|
||||||
| KEYGENERATOR_KEYSPACE | | keySpace argument is a string of acceptable characters |
|
|
||||||
| DOCUMENTS | about=./about.md | Comma separated list of static documents to serve. ex: \n about=./about.md,home=./home.md |
|
|
||||||
|
|
||||||
### Rate limits
|
|
||||||
|
|
||||||
| Name | Default value | Description |
|
|
||||||
| :----------------------------------: | :-----------------------------------: | :--------------------------------------------------------------------------------------: |
|
|
||||||
| RATELIMITS_NORMAL_TOTAL_REQUESTS | 500 | By default anyone uncategorized will be subject to 500 requests in the defined timespan. |
|
|
||||||
| RATELIMITS_NORMAL_EVERY_MILLISECONDS | 60000 | The timespan to allow the total requests for uncategorized users |
|
|
||||||
| RATELIMITS_WHITELIST_TOTAL_REQUESTS | | By default client names in the whitelist will not have their requests limited. |
|
|
||||||
| RATELIMITS_WHITELIST_EVERY_SECONDS | | By default client names in the whitelist will not have their requests limited. |
|
|
||||||
| RATELIMITS_WHITELIST | example1.whitelist,example2.whitelist | Comma separated list of the clients which are in the whitelist pool |
|
|
||||||
| RATELIMITS_BLACKLIST_TOTAL_REQUESTS | | By default client names in the blacklist will be subject to 0 requests per hours. |
|
|
||||||
| RATELIMITS_BLACKLIST_EVERY_SECONDS | | By default client names in the blacklist will be subject to 0 requests per hours |
|
|
||||||
| RATELIMITS_BLACKLIST | example1.blacklist,example2.blacklist | Comma separated list of the clients which are in the blacklistpool. |
|
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
|
||||||
John Crepezzi <john.crepezzi@gmail.com>
|
John Crepezzi <john.crepezzi@gmail.com>
|
||||||
|
@ -362,28 +109,15 @@ John Crepezzi <john.crepezzi@gmail.com>
|
||||||
|
|
||||||
(The MIT License)
|
(The MIT License)
|
||||||
|
|
||||||
Copyright © 2011-2012 John Crepezzi
|
Copyright © 2011 John Crepezzi
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
this software and associated documentation files (the ‘Software’), to deal in
|
|
||||||
the Software without restriction, including without limitation the rights to
|
|
||||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
||||||
of the Software, and to permit persons to whom the Software is furnished to do
|
|
||||||
so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE
|
|
||||||
|
|
||||||
### Other components:
|
### Other components:
|
||||||
|
|
||||||
* jQuery: MIT/GPL license
|
* jQuery: MIT/GPL license
|
||||||
* highlight.js: Copyright © 2006, Ivan Sagalaev
|
* highlight.js: Copyright © 2006, Ivan Sagalaev
|
||||||
* highlightjs-coffeescript: WTFPL - Copyright © 2011, Dmytrii Nagirniak
|
|
||||||
|
|
45
about.md
45
about.md
|
@ -1,33 +1,52 @@
|
||||||
# Haste
|
# Haste
|
||||||
|
|
||||||
Sharing code is a good thing, and it should be _really_ easy to do it.
|
Sharing code is a good thing, and it should be _really_ easy to do it.
|
||||||
A lot of times, I want to show you something I'm seeing - and that's where we
|
A lot of times, I want to show you something I'm seeing - and that's where we use pastebins.
|
||||||
use pastebins.
|
|
||||||
|
|
||||||
Haste is the prettiest, easiest to use pastebin ever made.
|
Haste is the prettiest, easist to use pastebin ever made.
|
||||||
|
|
||||||
## Basic Usage
|
## Basic Usage
|
||||||
|
|
||||||
Type what you want me to see, click "Save", and then copy the URL. Send that
|
Type what you want me to see, click "Save", and then copy the URL. Send that URL
|
||||||
URL to someone and they'll see what you see.
|
to someone and they'll see what you see.
|
||||||
|
|
||||||
To make a new entry, click "New" (or type 'control + n')
|
To make a new entry, click "New" (or type 'control + n')
|
||||||
|
|
||||||
## From the Console
|
## From the Console
|
||||||
|
|
||||||
[bin-client](git.webionite.com/ceda_ei/bin-client)
|
Most of the time I want to show you some text, its coming from my current console session.
|
||||||
|
We should make it really easy to take code from the console and send it to people.
|
||||||
|
|
||||||
Add the following to your bashrc/zshrc
|
`cat something | haste` # http://hastebin.com/1238193
|
||||||
```
|
|
||||||
export MKR_BIN='https://bin.webionite.com/'
|
You can even take this a step further, and cut out the last step of copying the URL with:
|
||||||
export HASTEBIN=1
|
|
||||||
```
|
* osx: `cat something | haste | pbcopy`
|
||||||
|
* linux: `cat something | haste | xsel`
|
||||||
|
|
||||||
|
After running that, the STDOUT output of `cat something` will show up at a URL which has
|
||||||
|
been conveniently copied to your clipboard.
|
||||||
|
|
||||||
|
That's all there is to that, and you can install it with `gem install haste` right now.
|
||||||
|
* osx: you will need to have an up to date version of Xcode
|
||||||
|
* linux: you will need to have rubygems and ruby-devel installed
|
||||||
|
|
||||||
|
## Duration
|
||||||
|
|
||||||
|
Pastes will stay for 30 days from their last view.
|
||||||
|
|
||||||
|
## Privacy
|
||||||
|
|
||||||
|
While the contents of hastebin.com are not directly crawled by any search robot that
|
||||||
|
obeys "robots.txt", there should be no great expectation of privacy. Post things at your
|
||||||
|
own risk. Not responsible for any loss of data or removed pastes.
|
||||||
|
|
||||||
## Open Source
|
## Open Source
|
||||||
|
|
||||||
Haste can easily be installed behind your network, and it's all open source!
|
Haste can easily be installed behind your network, and its all open source!
|
||||||
|
|
||||||
* [haste-server](https://git.webionite.com/Webionite/haste-server)
|
* [haste-client](https://github.com/seejohnrun/haste-client)
|
||||||
|
* [haste-server](https://github.com/seejohnrun/haste-server)
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
"host": "0.0.0.0",
|
"host": "localhost",
|
||||||
"port": 7777,
|
"port": 7777,
|
||||||
|
|
||||||
"keyLength": 10,
|
"keyLength": 10,
|
||||||
|
@ -23,17 +23,12 @@
|
||||||
"type": "phonetic"
|
"type": "phonetic"
|
||||||
},
|
},
|
||||||
|
|
||||||
"rateLimits": {
|
|
||||||
"categories": {
|
|
||||||
"normal": {
|
|
||||||
"totalRequests": 500,
|
|
||||||
"every": 60000
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"storage": {
|
"storage": {
|
||||||
"type": "file"
|
"type": "redis",
|
||||||
|
"host": "localhost",
|
||||||
|
"port": 6379,
|
||||||
|
"db": 2,
|
||||||
|
"expire": 2592000
|
||||||
},
|
},
|
||||||
|
|
||||||
"documents": {
|
"documents": {
|
|
@ -1,19 +0,0 @@
|
||||||
version: '3.0'
|
|
||||||
services:
|
|
||||||
haste-server:
|
|
||||||
build: .
|
|
||||||
networks:
|
|
||||||
- db-network
|
|
||||||
environment:
|
|
||||||
- STORAGE_TYPE=memcached
|
|
||||||
- STORAGE_HOST=memcached
|
|
||||||
- STORAGE_PORT=11211
|
|
||||||
ports:
|
|
||||||
- 7777:7777
|
|
||||||
memcached:
|
|
||||||
image: memcached:latest
|
|
||||||
networks:
|
|
||||||
- db-network
|
|
||||||
|
|
||||||
networks:
|
|
||||||
db-network:
|
|
|
@ -1,108 +0,0 @@
|
||||||
const {
|
|
||||||
HOST,
|
|
||||||
PORT,
|
|
||||||
KEY_LENGTH,
|
|
||||||
MAX_LENGTH,
|
|
||||||
STATIC_MAX_AGE,
|
|
||||||
RECOMPRESS_STATIC_ASSETS,
|
|
||||||
STORAGE_TYPE,
|
|
||||||
STORAGE_HOST,
|
|
||||||
STORAGE_PORT,
|
|
||||||
STORAGE_EXPIRE_SECONDS,
|
|
||||||
STORAGE_DB,
|
|
||||||
STORAGE_AWS_BUCKET,
|
|
||||||
STORAGE_AWS_REGION,
|
|
||||||
STORAGE_PASSWORD,
|
|
||||||
STORAGE_USERNAME,
|
|
||||||
STORAGE_FILEPATH,
|
|
||||||
LOGGING_LEVEL,
|
|
||||||
LOGGING_TYPE,
|
|
||||||
LOGGING_COLORIZE,
|
|
||||||
KEYGENERATOR_TYPE,
|
|
||||||
KEY_GENERATOR_KEYSPACE,
|
|
||||||
RATE_LIMITS_NORMAL_TOTAL_REQUESTS,
|
|
||||||
RATE_LIMITS_NORMAL_EVERY_MILLISECONDS,
|
|
||||||
RATE_LIMITS_WHITELIST_TOTAL_REQUESTS,
|
|
||||||
RATE_LIMITS_WHITELIST_EVERY_MILLISECONDS,
|
|
||||||
RATE_LIMITS_WHITELIST,
|
|
||||||
RATE_LIMITS_BLACKLIST_TOTAL_REQUESTS,
|
|
||||||
RATE_LIMITS_BLACKLIST_EVERY_MILLISECONDS,
|
|
||||||
RATE_LIMITS_BLACKLIST,
|
|
||||||
DOCUMENTS,
|
|
||||||
} = process.env;
|
|
||||||
|
|
||||||
const config = {
|
|
||||||
host: HOST,
|
|
||||||
port: PORT,
|
|
||||||
|
|
||||||
keyLength: KEY_LENGTH,
|
|
||||||
|
|
||||||
maxLength: MAX_LENGTH,
|
|
||||||
|
|
||||||
staticMaxAge: STATIC_MAX_AGE,
|
|
||||||
|
|
||||||
recompressStaticAssets: RECOMPRESS_STATIC_ASSETS,
|
|
||||||
|
|
||||||
logging: [
|
|
||||||
{
|
|
||||||
level: LOGGING_LEVEL,
|
|
||||||
type: LOGGING_TYPE,
|
|
||||||
colorize: LOGGING_COLORIZE,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
|
|
||||||
keyGenerator: {
|
|
||||||
type: KEYGENERATOR_TYPE,
|
|
||||||
keyspace: KEY_GENERATOR_KEYSPACE,
|
|
||||||
},
|
|
||||||
|
|
||||||
rateLimits: {
|
|
||||||
whitelist: RATE_LIMITS_WHITELIST ? RATE_LIMITS_WHITELIST.split(",") : [],
|
|
||||||
blacklist: RATE_LIMITS_BLACKLIST ? RATE_LIMITS_BLACKLIST.split(",") : [],
|
|
||||||
categories: {
|
|
||||||
normal: {
|
|
||||||
totalRequests: RATE_LIMITS_NORMAL_TOTAL_REQUESTS,
|
|
||||||
every: RATE_LIMITS_NORMAL_EVERY_MILLISECONDS,
|
|
||||||
},
|
|
||||||
whitelist:
|
|
||||||
RATE_LIMITS_WHITELIST_EVERY_MILLISECONDS ||
|
|
||||||
RATE_LIMITS_WHITELIST_TOTAL_REQUESTS
|
|
||||||
? {
|
|
||||||
totalRequests: RATE_LIMITS_WHITELIST_TOTAL_REQUESTS,
|
|
||||||
every: RATE_LIMITS_WHITELIST_EVERY_MILLISECONDS,
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
blacklist:
|
|
||||||
RATE_LIMITS_BLACKLIST_EVERY_MILLISECONDS ||
|
|
||||||
RATE_LIMITS_BLACKLIST_TOTAL_REQUESTS
|
|
||||||
? {
|
|
||||||
totalRequests: RATE_LIMITS_WHITELIST_TOTAL_REQUESTS,
|
|
||||||
every: RATE_LIMITS_BLACKLIST_EVERY_MILLISECONDS,
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
storage: {
|
|
||||||
type: STORAGE_TYPE,
|
|
||||||
host: STORAGE_HOST,
|
|
||||||
port: STORAGE_PORT,
|
|
||||||
expire: STORAGE_EXPIRE_SECONDS,
|
|
||||||
bucket: STORAGE_AWS_BUCKET,
|
|
||||||
region: STORAGE_AWS_REGION,
|
|
||||||
connectionUrl: `postgres://${STORAGE_USERNAME}:${STORAGE_PASSWORD}@${STORAGE_HOST}:${STORAGE_PORT}/${STORAGE_DB}`,
|
|
||||||
db: STORAGE_DB,
|
|
||||||
user: STORAGE_USERNAME,
|
|
||||||
password: STORAGE_PASSWORD,
|
|
||||||
path: STORAGE_FILEPATH,
|
|
||||||
},
|
|
||||||
|
|
||||||
documents: DOCUMENTS
|
|
||||||
? DOCUMENTS.split(",").reduce((acc, item) => {
|
|
||||||
const keyAndValueArray = item.replace(/\s/g, "").split("=");
|
|
||||||
return { ...acc, [keyAndValueArray[0]]: keyAndValueArray[1] };
|
|
||||||
}, {})
|
|
||||||
: null,
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(JSON.stringify(config));
|
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# We use this file to translate environmental variables to .env files used by the application
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
node ./docker-entrypoint.js > ./config.js
|
|
||||||
|
|
||||||
exec "$@"
|
|
|
@ -1,5 +1,4 @@
|
||||||
var winston = require('winston');
|
var winston = require('winston');
|
||||||
var Busboy = require('busboy');
|
|
||||||
|
|
||||||
// For handling serving stored documents
|
// For handling serving stored documents
|
||||||
|
|
||||||
|
@ -16,56 +15,34 @@ var DocumentHandler = function(options) {
|
||||||
DocumentHandler.defaultKeyLength = 10;
|
DocumentHandler.defaultKeyLength = 10;
|
||||||
|
|
||||||
// Handle retrieving a document
|
// Handle retrieving a document
|
||||||
DocumentHandler.prototype.handleGet = function(request, response, config) {
|
DocumentHandler.prototype.handleGet = function(key, response, skipExpire) {
|
||||||
const key = request.params.id.split('.')[0];
|
|
||||||
const skipExpire = !!config.documents[key];
|
|
||||||
|
|
||||||
this.store.get(key, function(ret) {
|
this.store.get(key, function(ret) {
|
||||||
if (ret) {
|
if (ret) {
|
||||||
winston.verbose('retrieved document', { key: key });
|
winston.verbose('retrieved document', { key: key });
|
||||||
response.writeHead(200, { 'content-type': 'application/json' });
|
response.writeHead(200, { 'content-type': 'application/json' });
|
||||||
if (request.method === 'HEAD') {
|
|
||||||
response.end();
|
|
||||||
} else {
|
|
||||||
response.end(JSON.stringify({ data: ret, key: key }));
|
response.end(JSON.stringify({ data: ret, key: key }));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
winston.warn('document not found', { key: key });
|
winston.warn('document not found', { key: key });
|
||||||
response.writeHead(404, { 'content-type': 'application/json' });
|
response.writeHead(404, { 'content-type': 'application/json' });
|
||||||
if (request.method === 'HEAD') {
|
|
||||||
response.end();
|
|
||||||
} else {
|
|
||||||
response.end(JSON.stringify({ message: 'Document not found.' }));
|
response.end(JSON.stringify({ message: 'Document not found.' }));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}, skipExpire);
|
}, skipExpire);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Handle retrieving the raw version of a document
|
// Handle retrieving the raw version of a document
|
||||||
DocumentHandler.prototype.handleRawGet = function(request, response, config) {
|
DocumentHandler.prototype.handleRawGet = function(key, response, skipExpire) {
|
||||||
const key = request.params.id.split('.')[0];
|
|
||||||
const skipExpire = !!config.documents[key];
|
|
||||||
|
|
||||||
this.store.get(key, function(ret) {
|
this.store.get(key, function(ret) {
|
||||||
if (ret) {
|
if (ret) {
|
||||||
winston.verbose('retrieved raw document', { key: key });
|
winston.verbose('retrieved raw document', { key: key });
|
||||||
response.writeHead(200, { 'content-type': 'text/plain; charset=UTF-8' });
|
response.writeHead(200, { 'content-type': 'text/plain' });
|
||||||
if (request.method === 'HEAD') {
|
|
||||||
response.end();
|
|
||||||
} else {
|
|
||||||
response.end(ret);
|
response.end(ret);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
winston.warn('raw document not found', { key: key });
|
winston.warn('raw document not found', { key: key });
|
||||||
response.writeHead(404, { 'content-type': 'application/json' });
|
response.writeHead(404, { 'content-type': 'application/json' });
|
||||||
if (request.method === 'HEAD') {
|
|
||||||
response.end();
|
|
||||||
} else {
|
|
||||||
response.end(JSON.stringify({ message: 'Document not found.' }));
|
response.end(JSON.stringify({ message: 'Document not found.' }));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}, skipExpire);
|
}, skipExpire);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -74,25 +51,24 @@ DocumentHandler.prototype.handlePost = function (request, response) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var buffer = '';
|
var buffer = '';
|
||||||
var cancelled = false;
|
var cancelled = false;
|
||||||
|
request.on('data', function(data) {
|
||||||
// What to do when done
|
if (!buffer) {
|
||||||
var onSuccess = function () {
|
response.writeHead(200, { 'content-type': 'application/json' });
|
||||||
// Check length
|
}
|
||||||
|
buffer += data.toString();
|
||||||
if (_this.maxLength && buffer.length > _this.maxLength) {
|
if (_this.maxLength && buffer.length > _this.maxLength) {
|
||||||
cancelled = true;
|
cancelled = true;
|
||||||
winston.warn('document >maxLength', { maxLength: _this.maxLength });
|
winston.warn('document >maxLength', { maxLength: _this.maxLength });
|
||||||
response.writeHead(400, { 'content-type': 'application/json' });
|
response.writeHead(400, { 'content-type': 'application/json' });
|
||||||
response.end(
|
response.end(JSON.stringify({ message: 'Document exceeds maximum length.' }));
|
||||||
JSON.stringify({ message: 'Document exceeds maximum length.' })
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
// And then save if we should
|
});
|
||||||
|
request.on('end', function(end) {
|
||||||
|
if (cancelled) return;
|
||||||
_this.chooseKey(function(key) {
|
_this.chooseKey(function(key) {
|
||||||
_this.store.set(key, buffer, function(res) {
|
_this.store.set(key, buffer, function(res) {
|
||||||
if (res) {
|
if (res) {
|
||||||
winston.verbose('added document', { key: key });
|
winston.verbose('added document', { key: key });
|
||||||
response.writeHead(200, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ key: key }));
|
response.end(JSON.stringify({ key: key }));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -102,42 +78,17 @@ DocumentHandler.prototype.handlePost = function (request, response) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
|
||||||
|
|
||||||
// If we should, parse a form to grab the data
|
|
||||||
var ct = request.headers['content-type'];
|
|
||||||
if (ct && ct.split(';')[0] === 'multipart/form-data') {
|
|
||||||
var busboy = new Busboy({ headers: request.headers });
|
|
||||||
busboy.on('field', function (fieldname, val) {
|
|
||||||
if (fieldname === 'data') {
|
|
||||||
buffer = val;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
busboy.on('finish', function () {
|
|
||||||
onSuccess();
|
|
||||||
});
|
|
||||||
request.pipe(busboy);
|
|
||||||
// Otherwise, use our own and just grab flat data from POST body
|
|
||||||
} else {
|
|
||||||
request.on('data', function (data) {
|
|
||||||
buffer += data.toString();
|
|
||||||
});
|
|
||||||
request.on('end', function () {
|
|
||||||
if (cancelled) { return; }
|
|
||||||
onSuccess();
|
|
||||||
});
|
});
|
||||||
request.on('error', function(error) {
|
request.on('error', function(error) {
|
||||||
winston.error('connection error: ' + error.message);
|
winston.error('connection error: ' + error.message);
|
||||||
response.writeHead(500, { 'content-type': 'application/json' });
|
response.writeHead(500, { 'content-type': 'application/json' });
|
||||||
response.end(JSON.stringify({ message: 'Connection error.' }));
|
response.end(JSON.stringify({ message: 'Connection error.' }));
|
||||||
cancelled = true;
|
|
||||||
});
|
});
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Keep choosing keys until one isn't taken
|
// Get a random key that hasn't been already used
|
||||||
DocumentHandler.prototype.chooseKey = function(callback) {
|
DocumentHandler.prototype.chooseKey = function(callback) {
|
||||||
var key = this.acceptableKey();
|
var key = this.keyGenerator.createKey(this.keyLength);
|
||||||
var _this = this;
|
var _this = this;
|
||||||
this.store.get(key, function(ret) {
|
this.store.get(key, function(ret) {
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@ -145,11 +96,7 @@ DocumentHandler.prototype.chooseKey = function(callback) {
|
||||||
} else {
|
} else {
|
||||||
callback(key);
|
callback(key);
|
||||||
}
|
}
|
||||||
}, true); // Don't bump expirations when key searching
|
});
|
||||||
};
|
|
||||||
|
|
||||||
DocumentHandler.prototype.acceptableKey = function() {
|
|
||||||
return this.keyGenerator.createKey(this.keyLength);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = DocumentHandler;
|
module.exports = DocumentHandler;
|
||||||
|
|
|
@ -1,56 +0,0 @@
|
||||||
/*global require,module,process*/
|
|
||||||
|
|
||||||
var AWS = require('aws-sdk');
|
|
||||||
var winston = require('winston');
|
|
||||||
|
|
||||||
var AmazonS3DocumentStore = function(options) {
|
|
||||||
this.expire = options.expire;
|
|
||||||
this.bucket = options.bucket;
|
|
||||||
this.client = new AWS.S3({region: options.region});
|
|
||||||
};
|
|
||||||
|
|
||||||
AmazonS3DocumentStore.prototype.get = function(key, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
|
|
||||||
var req = {
|
|
||||||
Bucket: _this.bucket,
|
|
||||||
Key: key
|
|
||||||
};
|
|
||||||
|
|
||||||
_this.client.getObject(req, function(err, data) {
|
|
||||||
if(err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
callback(data.Body.toString('utf-8'));
|
|
||||||
if (_this.expire && !skipExpire) {
|
|
||||||
winston.warn('amazon s3 store cannot set expirations on keys');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
AmazonS3DocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
|
|
||||||
var req = {
|
|
||||||
Bucket: _this.bucket,
|
|
||||||
Key: key,
|
|
||||||
Body: data,
|
|
||||||
ContentType: 'text/plain'
|
|
||||||
};
|
|
||||||
|
|
||||||
_this.client.putObject(req, function(err, data) {
|
|
||||||
if (err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
callback(true);
|
|
||||||
if (_this.expire && !skipExpire) {
|
|
||||||
winston.warn('amazon s3 store cannot set expirations on keys');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = AmazonS3DocumentStore;
|
|
|
@ -1,89 +0,0 @@
|
||||||
/*global require,module,process*/
|
|
||||||
|
|
||||||
const Datastore = require('@google-cloud/datastore');
|
|
||||||
const winston = require('winston');
|
|
||||||
|
|
||||||
class GoogleDatastoreDocumentStore {
|
|
||||||
|
|
||||||
// Create a new store with options
|
|
||||||
constructor(options) {
|
|
||||||
this.kind = "Haste";
|
|
||||||
this.expire = options.expire;
|
|
||||||
this.datastore = new Datastore();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save file in a key
|
|
||||||
set(key, data, callback, skipExpire) {
|
|
||||||
var expireTime = (skipExpire || this.expire === undefined) ? null : new Date(Date.now() + this.expire * 1000);
|
|
||||||
|
|
||||||
var taskKey = this.datastore.key([this.kind, key])
|
|
||||||
var task = {
|
|
||||||
key: taskKey,
|
|
||||||
data: [
|
|
||||||
{
|
|
||||||
name: 'value',
|
|
||||||
value: data,
|
|
||||||
excludeFromIndexes: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'expiration',
|
|
||||||
value: expireTime
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
this.datastore.insert(task).then(() => {
|
|
||||||
callback(true);
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
callback(false);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get a file from a key
|
|
||||||
get(key, callback, skipExpire) {
|
|
||||||
var taskKey = this.datastore.key([this.kind, key])
|
|
||||||
|
|
||||||
this.datastore.get(taskKey).then((entity) => {
|
|
||||||
if (skipExpire || entity[0]["expiration"] == null) {
|
|
||||||
callback(entity[0]["value"]);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// check for expiry
|
|
||||||
if (entity[0]["expiration"] < new Date()) {
|
|
||||||
winston.info("document expired", {key: key, expiration: entity[0]["expiration"], check: new Date(null)});
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// update expiry
|
|
||||||
var task = {
|
|
||||||
key: taskKey,
|
|
||||||
data: [
|
|
||||||
{
|
|
||||||
name: 'value',
|
|
||||||
value: entity[0]["value"],
|
|
||||||
excludeFromIndexes: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'expiration',
|
|
||||||
value: new Date(Date.now() + this.expire * 1000)
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
this.datastore.update(task).then(() => {
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
winston.error("failed to update expiration", {error: err});
|
|
||||||
});
|
|
||||||
callback(entity[0]["value"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
winston.error("Error retrieving value from Google Datastore", {error: err});
|
|
||||||
callback(false);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = GoogleDatastoreDocumentStore;
|
|
|
@ -1,54 +0,0 @@
|
||||||
const memcached = require('memcached');
|
|
||||||
const winston = require('winston');
|
|
||||||
|
|
||||||
class MemcachedDocumentStore {
|
|
||||||
|
|
||||||
// Create a new store with options
|
|
||||||
constructor(options) {
|
|
||||||
this.expire = options.expire;
|
|
||||||
|
|
||||||
const host = options.host || '127.0.0.1';
|
|
||||||
const port = options.port || 11211;
|
|
||||||
const url = `${host}:${port}`;
|
|
||||||
this.connect(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a connection
|
|
||||||
connect(url) {
|
|
||||||
this.client = new memcached(url);
|
|
||||||
|
|
||||||
winston.info(`connecting to memcached on ${url}`);
|
|
||||||
|
|
||||||
this.client.on('failure', function(error) {
|
|
||||||
winston.info('error connecting to memcached', {error});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save file in a key
|
|
||||||
set(key, data, callback, skipExpire) {
|
|
||||||
this.client.set(key, data, skipExpire ? 0 : this.expire || 0, (error) => {
|
|
||||||
callback(!error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get a file from a key
|
|
||||||
get(key, callback, skipExpire) {
|
|
||||||
this.client.get(key, (error, data) => {
|
|
||||||
const value = error ? false : data;
|
|
||||||
|
|
||||||
callback(value);
|
|
||||||
|
|
||||||
// Update the key so that the expiration is pushed forward
|
|
||||||
if (value && !skipExpire) {
|
|
||||||
this.set(key, data, (updateSucceeded) => {
|
|
||||||
if (!updateSucceeded) {
|
|
||||||
winston.error('failed to update expiration on GET', {key});
|
|
||||||
}
|
|
||||||
}, skipExpire);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = MemcachedDocumentStore;
|
|
|
@ -1,88 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
var MongoClient = require('mongodb').MongoClient,
|
|
||||||
winston = require('winston');
|
|
||||||
|
|
||||||
var MongoDocumentStore = function (options) {
|
|
||||||
this.expire = options.expire;
|
|
||||||
this.connectionUrl = process.env.DATABASE_URl || options.connectionUrl;
|
|
||||||
};
|
|
||||||
|
|
||||||
MongoDocumentStore.prototype.set = function (key, data, callback, skipExpire) {
|
|
||||||
var now = Math.floor(new Date().getTime() / 1000),
|
|
||||||
that = this;
|
|
||||||
|
|
||||||
this.safeConnect(function (err, db) {
|
|
||||||
if (err)
|
|
||||||
return callback(false);
|
|
||||||
|
|
||||||
db.collection('entries').update({
|
|
||||||
'entry_id': key,
|
|
||||||
$or: [
|
|
||||||
{ expiration: -1 },
|
|
||||||
{ expiration: { $gt: now } }
|
|
||||||
]
|
|
||||||
}, {
|
|
||||||
'entry_id': key,
|
|
||||||
'value': data,
|
|
||||||
'expiration': that.expire && !skipExpire ? that.expire + now : -1
|
|
||||||
}, {
|
|
||||||
upsert: true
|
|
||||||
}, function (err, existing) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('error persisting value to mongodb', { error: err });
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
callback(true);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
MongoDocumentStore.prototype.get = function (key, callback, skipExpire) {
|
|
||||||
var now = Math.floor(new Date().getTime() / 1000),
|
|
||||||
that = this;
|
|
||||||
|
|
||||||
this.safeConnect(function (err, db) {
|
|
||||||
if (err)
|
|
||||||
return callback(false);
|
|
||||||
|
|
||||||
db.collection('entries').findOne({
|
|
||||||
'entry_id': key,
|
|
||||||
$or: [
|
|
||||||
{ expiration: -1 },
|
|
||||||
{ expiration: { $gt: now } }
|
|
||||||
]
|
|
||||||
}, function (err, entry) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('error persisting value to mongodb', { error: err });
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
callback(entry === null ? false : entry.value);
|
|
||||||
|
|
||||||
if (entry !== null && entry.expiration !== -1 && that.expire && !skipExpire) {
|
|
||||||
db.collection('entries').update({
|
|
||||||
'entry_id': key
|
|
||||||
}, {
|
|
||||||
$set: {
|
|
||||||
'expiration': that.expire + now
|
|
||||||
}
|
|
||||||
}, function (err, result) { });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
MongoDocumentStore.prototype.safeConnect = function (callback) {
|
|
||||||
MongoClient.connect(this.connectionUrl, function (err, db) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('error connecting to mongodb', { error: err });
|
|
||||||
callback(err);
|
|
||||||
} else {
|
|
||||||
callback(undefined, db);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = MongoDocumentStore;
|
|
|
@ -1,80 +0,0 @@
|
||||||
/*global require,module,process*/
|
|
||||||
|
|
||||||
var winston = require('winston');
|
|
||||||
const {Pool} = require('pg');
|
|
||||||
|
|
||||||
// create table entries (id serial primary key, key varchar(255) not null, value text not null, expiration int, unique(key));
|
|
||||||
|
|
||||||
// A postgres document store
|
|
||||||
var PostgresDocumentStore = function (options) {
|
|
||||||
this.expireJS = options.expire;
|
|
||||||
|
|
||||||
const connectionString = process.env.DATABASE_URL || options.connectionUrl;
|
|
||||||
this.pool = new Pool({connectionString});
|
|
||||||
};
|
|
||||||
|
|
||||||
PostgresDocumentStore.prototype = {
|
|
||||||
|
|
||||||
// Set a given key
|
|
||||||
set: function (key, data, callback, skipExpire) {
|
|
||||||
var now = Math.floor(new Date().getTime() / 1000);
|
|
||||||
var that = this;
|
|
||||||
this.safeConnect(function (err, client, done) {
|
|
||||||
if (err) { return callback(false); }
|
|
||||||
client.query('INSERT INTO entries (key, value, expiration) VALUES ($1, $2, $3)', [
|
|
||||||
key,
|
|
||||||
data,
|
|
||||||
that.expireJS && !skipExpire ? that.expireJS + now : null
|
|
||||||
], function (err) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('error persisting value to postgres', { error: err });
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
callback(true);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
// Get a given key's data
|
|
||||||
get: function (key, callback, skipExpire) {
|
|
||||||
var now = Math.floor(new Date().getTime() / 1000);
|
|
||||||
var that = this;
|
|
||||||
this.safeConnect(function (err, client, done) {
|
|
||||||
if (err) { return callback(false); }
|
|
||||||
client.query('SELECT id,value,expiration from entries where KEY = $1 and (expiration IS NULL or expiration > $2)', [key, now], function (err, result) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('error retrieving value from postgres', { error: err });
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
callback(result.rows.length ? result.rows[0].value : false);
|
|
||||||
if (result.rows.length && that.expireJS && !skipExpire) {
|
|
||||||
client.query('UPDATE entries SET expiration = $1 WHERE ID = $2', [
|
|
||||||
that.expireJS + now,
|
|
||||||
result.rows[0].id
|
|
||||||
], function (err) {
|
|
||||||
if (!err) {
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
// A connection wrapper
|
|
||||||
safeConnect: function (callback) {
|
|
||||||
this.pool.connect((error, client, done) => {
|
|
||||||
if (error) {
|
|
||||||
winston.error('error connecting to postgres', {error});
|
|
||||||
callback(error);
|
|
||||||
} else {
|
|
||||||
callback(undefined, client, done);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = PostgresDocumentStore;
|
|
|
@ -1,46 +0,0 @@
|
||||||
const crypto = require('crypto');
|
|
||||||
const rethink = require('rethinkdbdash');
|
|
||||||
const winston = require('winston');
|
|
||||||
|
|
||||||
const md5 = (str) => {
|
|
||||||
const md5sum = crypto.createHash('md5');
|
|
||||||
md5sum.update(str);
|
|
||||||
return md5sum.digest('hex');
|
|
||||||
};
|
|
||||||
|
|
||||||
class RethinkDBStore {
|
|
||||||
constructor(options) {
|
|
||||||
this.client = rethink({
|
|
||||||
silent: true,
|
|
||||||
host: options.host || '127.0.0.1',
|
|
||||||
port: options.port || 28015,
|
|
||||||
db: options.db || 'haste',
|
|
||||||
user: options.user || 'admin',
|
|
||||||
password: options.password || ''
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
set(key, data, callback) {
|
|
||||||
this.client.table('uploads').insert({ id: md5(key), data: data }).run((error) => {
|
|
||||||
if (error) {
|
|
||||||
callback(false);
|
|
||||||
winston.error('failed to insert to table', error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
callback(true);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
get(key, callback) {
|
|
||||||
this.client.table('uploads').get(md5(key)).run((error, result) => {
|
|
||||||
if (error || !result) {
|
|
||||||
callback(false);
|
|
||||||
if (error) winston.error('failed to insert to table', error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
callback(result.data);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = RethinkDBStore;
|
|
|
@ -1,7 +1,7 @@
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
var crypto = require('crypto');
|
|
||||||
|
|
||||||
var winston = require('winston');
|
var winston = require('winston');
|
||||||
|
var hashlib = require('hashlib');
|
||||||
|
|
||||||
// For storing in files
|
// For storing in files
|
||||||
// options[type] = file
|
// options[type] = file
|
||||||
|
@ -12,21 +12,12 @@ var FileDocumentStore = function(options) {
|
||||||
this.expire = options.expire;
|
this.expire = options.expire;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Generate md5 of a string
|
// Save data in a file, key as md5 - since we don't know what we could be passed here
|
||||||
FileDocumentStore.md5 = function(str) {
|
|
||||||
var md5sum = crypto.createHash('md5');
|
|
||||||
md5sum.update(str);
|
|
||||||
return md5sum.digest('hex');
|
|
||||||
};
|
|
||||||
|
|
||||||
// Save data in a file, key as md5 - since we don't know what we could
|
|
||||||
// be passed here
|
|
||||||
FileDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
FileDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
||||||
try {
|
try {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
fs.mkdir(this.basePath, '700', function() {
|
fs.mkdir(this.basePath, '700', function() {
|
||||||
var fn = _this.basePath + '/' + FileDocumentStore.md5(key);
|
fs.writeFile(_this.basePath + '/' + hashlib.md5(key), data, 'utf8', function(err) {
|
||||||
fs.writeFile(fn, data, 'utf8', function(err) {
|
|
||||||
if (err) {
|
if (err) {
|
||||||
callback(false);
|
callback(false);
|
||||||
}
|
}
|
||||||
|
@ -46,8 +37,7 @@ FileDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
||||||
// Get data from a file from key
|
// Get data from a file from key
|
||||||
FileDocumentStore.prototype.get = function(key, callback, skipExpire) {
|
FileDocumentStore.prototype.get = function(key, callback, skipExpire) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var fn = this.basePath + '/' + FileDocumentStore.md5(key);
|
fs.readFile(this.basePath + '/' + hashlib.md5(key), 'utf8', function(err, data) {
|
||||||
fs.readFile(fn, 'utf8', function(err, data) {
|
|
||||||
if (err) {
|
if (err) {
|
||||||
callback(false);
|
callback(false);
|
||||||
}
|
}
|
|
@ -1,32 +0,0 @@
|
||||||
const fs = require('fs');
|
|
||||||
|
|
||||||
module.exports = class DictionaryGenerator {
|
|
||||||
|
|
||||||
constructor(options, readyCallback) {
|
|
||||||
// Check options format
|
|
||||||
if (!options) throw Error('No options passed to generator');
|
|
||||||
if (!options.path) throw Error('No dictionary path specified in options');
|
|
||||||
|
|
||||||
// Load dictionary
|
|
||||||
fs.readFile(options.path, 'utf8', (err, data) => {
|
|
||||||
if (err) throw err;
|
|
||||||
|
|
||||||
this.dictionary = data.split(/[\n\r]+/);
|
|
||||||
|
|
||||||
if (readyCallback) readyCallback();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generates a dictionary-based key, of keyLength words
|
|
||||||
createKey(keyLength) {
|
|
||||||
let text = '';
|
|
||||||
|
|
||||||
for (let i = 0; i < keyLength; i++) {
|
|
||||||
const index = Math.floor(Math.random() * this.dictionary.length);
|
|
||||||
text += this.dictionary[index];
|
|
||||||
}
|
|
||||||
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
|
@ -1,27 +1,32 @@
|
||||||
// Draws inspiration from pwgen and http://tools.arantius.com/password
|
// Draws inspiration from pwgen and http://tools.arantius.com/password
|
||||||
|
var PhoneticKeyGenerator = function(options) {
|
||||||
const randOf = (collection) => {
|
// No options
|
||||||
return () => {
|
|
||||||
return collection[Math.floor(Math.random() * collection.length)];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Helper methods to get an random vowel or consonant
|
// Generate a phonetic key
|
||||||
const randVowel = randOf('aeiou');
|
PhoneticKeyGenerator.prototype.createKey = function(keyLength) {
|
||||||
const randConsonant = randOf('bcdfghjklmnpqrstvwxyz');
|
var text = '';
|
||||||
|
for (var i = 0; i < keyLength; i++) {
|
||||||
module.exports = class PhoneticKeyGenerator {
|
text += (i % 2 == 0) ? this.randConsonant() : this.randVowel();
|
||||||
|
|
||||||
// Generate a phonetic key of alternating consonant & vowel
|
|
||||||
createKey(keyLength) {
|
|
||||||
let text = '';
|
|
||||||
const start = Math.round(Math.random());
|
|
||||||
|
|
||||||
for (let i = 0; i < keyLength; i++) {
|
|
||||||
text += (i % 2 == start) ? randConsonant() : randVowel();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
PhoneticKeyGenerator.consonants = 'bcdfghjklmnpqrstvwxy';
|
||||||
|
PhoneticKeyGenerator.vowels = 'aeiou';
|
||||||
|
|
||||||
|
// Get an random vowel
|
||||||
|
PhoneticKeyGenerator.prototype.randVowel = function() {
|
||||||
|
return PhoneticKeyGenerator.vowels[
|
||||||
|
Math.floor(Math.random() * PhoneticKeyGenerator.vowels.length)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
// Get an random consonant
|
||||||
|
PhoneticKeyGenerator.prototype.randConsonant = function() {
|
||||||
|
return PhoneticKeyGenerator.consonants[
|
||||||
|
Math.floor(Math.random() * PhoneticKeyGenerator.consonants.length)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = PhoneticKeyGenerator;
|
||||||
|
|
|
@ -1,20 +1,14 @@
|
||||||
module.exports = class RandomKeyGenerator {
|
var RandomKeyGenerator = function(options) {
|
||||||
|
|
||||||
// Initialize a new generator with the given keySpace
|
|
||||||
constructor(options = {}) {
|
|
||||||
this.keyspace = options.keyspace || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
this.keyspace = options.keyspace || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
||||||
}
|
|
||||||
|
|
||||||
// Generate a key of the given length
|
|
||||||
createKey(keyLength) {
|
|
||||||
var text = '';
|
|
||||||
|
|
||||||
for (var i = 0; i < keyLength; i++) {
|
|
||||||
const index = Math.floor(Math.random() * this.keyspace.length);
|
|
||||||
text += this.keyspace.charAt(index);
|
|
||||||
}
|
|
||||||
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Generate a random key
|
||||||
|
RandomKeyGenerator.prototype.createKey = function(keyLength) {
|
||||||
|
var text = '';
|
||||||
|
for (var i = 0; i < keyLength; i++) {
|
||||||
|
text += this.keyspace.charAt(Math.floor(Math.random() * this.keyspace.length));
|
||||||
|
}
|
||||||
|
return text;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = RandomKeyGenerator;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
var redis = require('redis');
|
var redis = require('redis');
|
||||||
var winston = require('winston');
|
var winston = require('winston');
|
||||||
|
var hashlib = require('hashlib');
|
||||||
|
|
||||||
// For storing in redis
|
// For storing in redis
|
||||||
// options[type] = redis
|
// options[type] = redis
|
||||||
|
@ -8,13 +9,9 @@ var winston = require('winston');
|
||||||
// options[db] - The db to use (default 0)
|
// options[db] - The db to use (default 0)
|
||||||
// options[expire] - The time to live for each key set (default never)
|
// options[expire] - The time to live for each key set (default never)
|
||||||
|
|
||||||
var RedisDocumentStore = function(options, client) {
|
var RedisDocumentStore = function(options) {
|
||||||
this.expire = options.expire;
|
this.expire = options.expire;
|
||||||
if (client) {
|
if (!RedisDocumentStore.client) {
|
||||||
winston.info('using predefined redis client');
|
|
||||||
RedisDocumentStore.client = client;
|
|
||||||
} else if (!RedisDocumentStore.client) {
|
|
||||||
winston.info('configuring redis');
|
|
||||||
RedisDocumentStore.connect(options);
|
RedisDocumentStore.connect(options);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -25,21 +22,9 @@ RedisDocumentStore.connect = function(options) {
|
||||||
var port = options.port || 6379;
|
var port = options.port || 6379;
|
||||||
var index = options.db || 0;
|
var index = options.db || 0;
|
||||||
RedisDocumentStore.client = redis.createClient(port, host);
|
RedisDocumentStore.client = redis.createClient(port, host);
|
||||||
// authenticate if password is provided
|
RedisDocumentStore.client.select(index, function(err, reply) {
|
||||||
if (options.password) {
|
|
||||||
RedisDocumentStore.client.auth(options.password);
|
|
||||||
}
|
|
||||||
|
|
||||||
RedisDocumentStore.client.on('error', function(err) {
|
|
||||||
winston.error('redis disconnected', err);
|
|
||||||
});
|
|
||||||
|
|
||||||
RedisDocumentStore.client.select(index, function(err) {
|
|
||||||
if (err) {
|
if (err) {
|
||||||
winston.error(
|
winston.error('error connecting to redis index ' + index, { error: err.message });
|
||||||
'error connecting to redis index ' + index,
|
|
||||||
{ error: err }
|
|
||||||
);
|
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -51,7 +36,7 @@ RedisDocumentStore.connect = function(options) {
|
||||||
// Save file in a key
|
// Save file in a key
|
||||||
RedisDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
RedisDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
RedisDocumentStore.client.set(key, data, function(err) {
|
RedisDocumentStore.client.set(key, data, function(err, reply) {
|
||||||
if (err) {
|
if (err) {
|
||||||
callback(false);
|
callback(false);
|
||||||
}
|
}
|
||||||
|
@ -67,7 +52,7 @@ RedisDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
||||||
// Expire a key in expire time if set
|
// Expire a key in expire time if set
|
||||||
RedisDocumentStore.prototype.setExpiration = function(key) {
|
RedisDocumentStore.prototype.setExpiration = function(key) {
|
||||||
if (this.expire) {
|
if (this.expire) {
|
||||||
RedisDocumentStore.client.expire(key, this.expire, function(err) {
|
RedisDocumentStore.client.expire(key, this.expire, function(err, reply) {
|
||||||
if (err) {
|
if (err) {
|
||||||
winston.error('failed to set expiry on key: ' + key);
|
winston.error('failed to set expiry on key: ' + key);
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
51
package.json
51
package.json
|
@ -1,47 +1,52 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
"name": "haste",
|
"name": "haste",
|
||||||
"version": "0.1.0",
|
"version": "0.0.1",
|
||||||
|
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Private Pastebin Server",
|
|
||||||
"keywords": [
|
"description": "Private Paste",
|
||||||
"paste",
|
|
||||||
"pastebin"
|
"keywords": [ "paste", "pastebin" ],
|
||||||
],
|
|
||||||
"author": {
|
"author": {
|
||||||
"name": "John Crepezzi",
|
"name": "John Crepezzi",
|
||||||
"email": "john.crepezzi@gmail.com",
|
"email": "john.crepezzi@gmail.com",
|
||||||
"url": "http://seejohncode.com/"
|
"url": "http://seejohncode.com/"
|
||||||
},
|
},
|
||||||
|
|
||||||
"main": "haste",
|
"main": "haste",
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"busboy": "0.2.4",
|
"winston": "*",
|
||||||
"connect": "^3.7.0",
|
"hashlib": "*",
|
||||||
"connect-ratelimit": "0.0.7",
|
"connect": "*",
|
||||||
"connect-route": "0.1.5",
|
"uglify-js": "*"
|
||||||
"pg": "^8.0.0",
|
|
||||||
"redis": "0.8.1",
|
|
||||||
"redis-url": "0.1.0",
|
|
||||||
"st": "^2.0.0",
|
|
||||||
"uglify-js": "3.1.6",
|
|
||||||
"winston": "^2.0.0"
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"mocha": "^8.1.3"
|
"jasmine-node": "*"
|
||||||
},
|
},
|
||||||
|
|
||||||
"bundledDependencies": [],
|
"bundledDependencies": [],
|
||||||
|
|
||||||
|
"engines": {
|
||||||
|
"node": "*"
|
||||||
|
},
|
||||||
|
|
||||||
"bin": {
|
"bin": {
|
||||||
"haste-server": "./server.js"
|
"haste-server": "./server.js"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"server.js",
|
"files": [ "server.js", "lib", "static" ],
|
||||||
"lib",
|
|
||||||
"static"
|
|
||||||
],
|
|
||||||
"directories": {
|
"directories": {
|
||||||
"lib": "./lib"
|
"lib": "./lib"
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server.js",
|
"start": "node server.js",
|
||||||
"test": "mocha --recursive"
|
"test": "jasmine-node spec"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
138
server.js
138
server.js
|
@ -1,29 +1,22 @@
|
||||||
// vim: set ts=2 sw=2 sts=2 et:
|
|
||||||
var http = require('http');
|
var http = require('http');
|
||||||
|
var url = require('url');
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
|
|
||||||
var uglify = require('uglify-js');
|
|
||||||
var winston = require('winston');
|
var winston = require('winston');
|
||||||
var connect = require('connect');
|
var connect = require('connect');
|
||||||
var route = require('connect-route');
|
|
||||||
var connect_st = require('st');
|
|
||||||
var connect_rate_limit = require('connect-ratelimit');
|
|
||||||
|
|
||||||
var DocumentHandler = require('./lib/document_handler');
|
var DocumentHandler = require('./lib/document_handler');
|
||||||
|
|
||||||
// Load the configuration and set some defaults
|
// Load the configuration and set some defaults
|
||||||
var config = require('./config.json');
|
var config = JSON.parse(fs.readFileSync('config.js', 'utf8'));
|
||||||
config.port = process.env.PORT || config.port || 7777;
|
config.port = config.port || 7777;
|
||||||
config.host = process.env.HOST || config.host || 'localhost';
|
config.host = config.host || 'localhost';
|
||||||
|
|
||||||
// Set up the logger
|
// Set up the logger
|
||||||
if (config.logging) {
|
if (config.logging) {
|
||||||
try {
|
try {
|
||||||
winston.remove(winston.transports.Console);
|
winston.remove(winston.transports.Console);
|
||||||
} catch(e) {
|
} catch(er) { }
|
||||||
/* was not present */
|
|
||||||
}
|
|
||||||
|
|
||||||
var detail, type;
|
var detail, type;
|
||||||
for (var i = 0; i < config.logging.length; i++) {
|
for (var i = 0; i < config.logging.length; i++) {
|
||||||
detail = config.logging[i];
|
detail = config.logging[i];
|
||||||
|
@ -41,48 +34,42 @@ if (!config.storage) {
|
||||||
if (!config.storage.type) {
|
if (!config.storage.type) {
|
||||||
config.storage.type = 'file';
|
config.storage.type = 'file';
|
||||||
}
|
}
|
||||||
|
var Store = require('./lib/' + config.storage.type + '_document_store');
|
||||||
var Store, preferredStore;
|
var preferredStore = new Store(config.storage);
|
||||||
|
|
||||||
if (process.env.REDISTOGO_URL && config.storage.type === 'redis') {
|
|
||||||
var redisClient = require('redis-url').connect(process.env.REDISTOGO_URL);
|
|
||||||
Store = require('./lib/document_stores/redis');
|
|
||||||
preferredStore = new Store(config.storage, redisClient);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Store = require('./lib/document_stores/' + config.storage.type);
|
|
||||||
preferredStore = new Store(config.storage);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compress the static javascript assets
|
// Compress the static javascript assets
|
||||||
if (config.recompressStaticAssets) {
|
if (config.recompressStaticAssets) {
|
||||||
|
var jsp = require("uglify-js").parser;
|
||||||
|
var pro = require("uglify-js").uglify;
|
||||||
var list = fs.readdirSync('./static');
|
var list = fs.readdirSync('./static');
|
||||||
for (var j = 0; j < list.length; j++) {
|
for (var i = 0; i < list.length; i++) {
|
||||||
var item = list[j];
|
var item = list[i];
|
||||||
|
var orig_code, ast;
|
||||||
if ((item.indexOf('.js') === item.length - 3) && (item.indexOf('.min.js') === -1)) {
|
if ((item.indexOf('.js') === item.length - 3) && (item.indexOf('.min.js') === -1)) {
|
||||||
var dest = item.substring(0, item.length - 3) + '.min' + item.substring(item.length - 3);
|
dest = item.substring(0, item.length - 3) + '.min' + item.substring(item.length - 3);
|
||||||
var orig_code = fs.readFileSync('./static/' + item, 'utf8');
|
orig_code = fs.readFileSync('./static/' + item, 'utf8');
|
||||||
|
ast = jsp.parse(orig_code);
|
||||||
fs.writeFileSync('./static/' + dest, uglify.minify(orig_code).code, 'utf8');
|
ast = pro.ast_mangle(ast);
|
||||||
|
ast = pro.ast_squeeze(ast);
|
||||||
|
fs.writeFileSync('./static/' + dest, pro.gen_code(ast), 'utf8');
|
||||||
winston.info('compressed ' + item + ' into ' + dest);
|
winston.info('compressed ' + item + ' into ' + dest);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send the static documents into the preferred store, skipping expirations
|
// Send the static documents into the preferred store, skipping expirations
|
||||||
var path, data;
|
|
||||||
for (var name in config.documents) {
|
for (var name in config.documents) {
|
||||||
path = config.documents[name];
|
var path = config.documents[name];
|
||||||
data = fs.readFileSync(path, 'utf8');
|
fs.readFile(path, 'utf8', function(err, data) {
|
||||||
winston.info('loading static document', { name: name, path: path });
|
if (data && !err) {
|
||||||
if (data) {
|
|
||||||
preferredStore.set(name, data, function(cb) {
|
preferredStore.set(name, data, function(cb) {
|
||||||
winston.debug('loaded static document', { success: cb });
|
winston.info('loaded static document', { name: name, path: path });
|
||||||
}, true);
|
}, true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
winston.warn('failed to load static document', { name: name, path: path });
|
winston.warn('failed to load static document', { name: name, path: path });
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pick up a key generator
|
// Pick up a key generator
|
||||||
|
@ -99,69 +86,38 @@ var documentHandler = new DocumentHandler({
|
||||||
keyGenerator: keyGenerator
|
keyGenerator: keyGenerator
|
||||||
});
|
});
|
||||||
|
|
||||||
var app = connect();
|
// Set the server up with a static cache
|
||||||
|
connect.createServer(
|
||||||
// Rate limit all requests
|
// First look for api calls
|
||||||
if (config.rateLimits) {
|
connect.router(function(app) {
|
||||||
config.rateLimits.end = true;
|
|
||||||
app.use(connect_rate_limit(config.rateLimits));
|
|
||||||
}
|
|
||||||
|
|
||||||
function raw(request, response) {
|
|
||||||
return documentHandler.handleRawGet(request, response, config);
|
|
||||||
}
|
|
||||||
|
|
||||||
// first look at API calls
|
|
||||||
app.use(route(function(router) {
|
|
||||||
// get raw documents - support getting with extension
|
// get raw documents - support getting with extension
|
||||||
router.get('/raw/:id', raw);
|
app.get('/raw/:id', function(request, response, next) {
|
||||||
router.get('/:id/raw', raw);
|
var skipExpire = !!config.documents[request.params.id];
|
||||||
router.head('/raw/:id', raw);
|
var key = request.params.id.split('.')[0];
|
||||||
router.head('/:id/raw', raw);
|
return documentHandler.handleRawGet(key, response, skipExpire);
|
||||||
|
});
|
||||||
// add documents
|
// add documents
|
||||||
|
app.post('/documents', function(request, response, next) {
|
||||||
router.post('/documents', function(request, response) {
|
|
||||||
return documentHandler.handlePost(request, response);
|
return documentHandler.handlePost(request, response);
|
||||||
});
|
});
|
||||||
|
|
||||||
// get documents
|
// get documents
|
||||||
router.get('/documents/:id', function(request, response) {
|
app.get('/documents/:id', function(request, response, next) {
|
||||||
return documentHandler.handleGet(request, response, config);
|
var skipExpire = !!config.documents[request.params.id];
|
||||||
|
return documentHandler.handleGet(request.params.id, response, skipExpire);
|
||||||
});
|
});
|
||||||
|
}),
|
||||||
router.head('/documents/:id', function(request, response) {
|
// Otherwise, static
|
||||||
return documentHandler.handleGet(request, response, config);
|
connect.staticCache(),
|
||||||
});
|
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge }),
|
||||||
}));
|
|
||||||
|
|
||||||
// Otherwise, try to match static files
|
|
||||||
app.use(connect_st({
|
|
||||||
path: __dirname + '/static',
|
|
||||||
content: { maxAge: config.staticMaxAge },
|
|
||||||
passthrough: true,
|
|
||||||
index: false
|
|
||||||
}));
|
|
||||||
|
|
||||||
// Then we can loop back - and everything else should be a token,
|
// Then we can loop back - and everything else should be a token,
|
||||||
// so route it back to /
|
// so route it back to /index.html
|
||||||
app.use(route(function(router) {
|
connect.router(function(app) {
|
||||||
router.get('/:id', function(request, response, next) {
|
app.get('/:id', function(request, response, next) {
|
||||||
if (request.headers.accept && request.headers.accept.includes('html')) {
|
request.url = request.originalUrl = '/index.html';
|
||||||
request.sturl = '/';
|
|
||||||
next();
|
next();
|
||||||
} else {
|
|
||||||
return raw(request, response);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}));
|
}),
|
||||||
|
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge })
|
||||||
// And match index
|
).listen(config.port, config.host);
|
||||||
app.use(connect_st({
|
|
||||||
path: __dirname + '/static',
|
|
||||||
content: { maxAge: config.staticMaxAge },
|
|
||||||
index: 'index.html'
|
|
||||||
}));
|
|
||||||
|
|
||||||
http.createServer(app).listen(config.port, config.host);
|
|
||||||
|
|
||||||
winston.info('listening on ' + config.host + ':' + config.port);
|
winston.info('listening on ' + config.host + ':' + config.port);
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
var DocumentHandler = require('../lib/document_handler');
|
||||||
|
|
||||||
|
describe('document_handler', function() {
|
||||||
|
|
||||||
|
describe('randomKey', function() {
|
||||||
|
|
||||||
|
it('should choose a key of the proper length', function() {
|
||||||
|
var dh = new DocumentHandler({ keyLength: 6 });
|
||||||
|
expect(dh.randomKey().length).toBe(6);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should choose a default key length', function() {
|
||||||
|
var dh = new DocumentHandler();
|
||||||
|
expect(dh.keyLength).toBe(DocumentHandler.defaultKeyLength);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
|
@ -0,0 +1,89 @@
|
||||||
|
var RedisDocumentStore = require('../lib/redis_document_store');
|
||||||
|
|
||||||
|
var winston = require('winston');
|
||||||
|
winston.remove(winston.transports.Console);
|
||||||
|
|
||||||
|
describe('redis_document_store', function() {
|
||||||
|
|
||||||
|
/* reconnect to redis on each test */
|
||||||
|
afterEach(function() {
|
||||||
|
if (RedisDocumentStore.client) {
|
||||||
|
RedisDocumentStore.client.quit();
|
||||||
|
RedisDocumentStore.client = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('set', function() {
|
||||||
|
|
||||||
|
it('should be able to set a key and have an expiration set', function() {
|
||||||
|
var store = new RedisDocumentStore({ expire: 10 });
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
store.set('hello1', 'world', function(worked) {
|
||||||
|
_this.result = worked;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return typeof(this.result) === 'boolean';
|
||||||
|
});
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
RedisDocumentStore.client.ttl('hello1', function(err, res) {
|
||||||
|
expect(res).toBeGreaterThan(1);
|
||||||
|
_this.done = true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return this.done;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not set an expiration when told not to', function() {
|
||||||
|
var store = new RedisDocumentStore({ expire: 10 });
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
store.set('hello2', 'world', function(worked) {
|
||||||
|
_this.result = worked;
|
||||||
|
}, true);
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return typeof(this.result) === 'boolean';
|
||||||
|
});
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
RedisDocumentStore.client.ttl('hello2', function(err, res) {
|
||||||
|
expect(res).toBe(-1);
|
||||||
|
_this.done = true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return this.done;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not set an expiration when expiration is off', function() {
|
||||||
|
var store = new RedisDocumentStore({ expire: false });
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
store.set('hello3', 'world', function(worked) {
|
||||||
|
_this.result = worked;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return typeof(this.result) === 'boolean';
|
||||||
|
});
|
||||||
|
runs(function() {
|
||||||
|
var _this = this;
|
||||||
|
RedisDocumentStore.client.ttl('hello3', function(err, res) {
|
||||||
|
expect(res).toBe(-1);
|
||||||
|
_this.done = true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
waitsFor(function() {
|
||||||
|
return this.done;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
|
@ -1,5 +1,5 @@
|
||||||
body {
|
body {
|
||||||
background: #fcfcfc;
|
background: #002B36;
|
||||||
padding: 20px 50px;
|
padding: 20px 50px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ body {
|
||||||
textarea {
|
textarea {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
color: #000;
|
color: #fff;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -17,8 +17,6 @@ textarea {
|
||||||
outline: none;
|
outline: none;
|
||||||
resize: none;
|
resize: none;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* the line numbers */
|
/* the line numbers */
|
||||||
|
@ -27,13 +25,12 @@ textarea {
|
||||||
color: #7d7d7d;
|
color: #7d7d7d;
|
||||||
z-index: -1000;
|
z-index: -1000;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
/* top: 20px; */
|
top: 20px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
width: 30px; /* 30 to get 20 away from box */
|
width: 30px; /* 30 to get 20 away from box */
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
user-select: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* code box when locked */
|
/* code box when locked */
|
||||||
|
@ -45,8 +42,6 @@ textarea {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
outline: none;
|
outline: none;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
overflow: inherit;
|
|
||||||
background: #fcfcfc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#box code {
|
#box code {
|
||||||
|
@ -57,35 +52,32 @@ textarea {
|
||||||
/* key */
|
/* key */
|
||||||
|
|
||||||
#key {
|
#key {
|
||||||
display: flex;
|
position: fixed;
|
||||||
justify-content: space-between;
|
top: 0px;
|
||||||
width: 100%;
|
right: 0px;
|
||||||
position: sticky;
|
z-index: +1000; /* watch out */
|
||||||
flex-wrap: row;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#box1 {
|
#box1 {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: #fcfcfc;
|
background: #00222b;
|
||||||
}
|
}
|
||||||
|
|
||||||
#box2 {
|
#box2 {
|
||||||
display: flex;
|
background: #08323c;
|
||||||
justify-content: right;
|
|
||||||
background: #fcfcfc;
|
|
||||||
font-size: 0px;
|
font-size: 0px;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.logo, a.logo:visited {
|
#box1 a.logo, #box1 a.logo:visited {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: url(logo.png);
|
background: url(logo.png);
|
||||||
width: 126px;
|
width: 126px;
|
||||||
min-width: 126px;
|
|
||||||
height: 42px;
|
height: 42px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.logo:hover {
|
#box1 a.logo:hover {
|
||||||
background-position: 0 bottom;
|
background-position: 0 bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,26 +111,18 @@ a.logo:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
#box3, #messages li {
|
#box3, #messages li {
|
||||||
position: absolute;
|
background: #173e48;
|
||||||
right: 100px;
|
|
||||||
background: #fcfcfc;
|
|
||||||
font-family: Helvetica, sans-serif;
|
font-family: Helvetica, sans-serif;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
user-select: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#box3 .label {
|
#box3 .label, #messages li {
|
||||||
color: #000;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messages li {
|
|
||||||
color: #FFF;
|
|
||||||
right: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#box3 .shortcut {
|
#box3 .shortcut {
|
||||||
color: #c4dce3;
|
color: #c4dce3;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
@ -163,15 +147,18 @@ a.logo:hover {
|
||||||
#box2 .function.twitter { background-position: -153px top; }
|
#box2 .function.twitter { background-position: -153px top; }
|
||||||
#box2 .function.enabled.twitter { background-position: -153px center; }
|
#box2 .function.enabled.twitter { background-position: -153px center; }
|
||||||
#box2 .function.enabled.twitter:hover { background-position: -153px bottom; }
|
#box2 .function.enabled.twitter:hover { background-position: -153px bottom; }
|
||||||
#box2 .button-picture{ border-width: 0; font-size: inherit; }
|
|
||||||
|
|
||||||
#messages {
|
#messages {
|
||||||
|
position:fixed;
|
||||||
|
top:0px;
|
||||||
|
right:138px;
|
||||||
margin:0;
|
margin:0;
|
||||||
padding:0;
|
padding:0;
|
||||||
|
width:400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#messages li {
|
#messages li {
|
||||||
background:rgba(252,252,252,0.8);
|
background:rgba(23,62,72,0.8);
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
list-style:none;
|
list-style:none;
|
||||||
}
|
}
|
||||||
|
@ -179,4 +166,3 @@ a.logo:hover {
|
||||||
#messages li.error {
|
#messages li.error {
|
||||||
background:rgba(102,8,0,0.8);
|
background:rgba(102,8,0,0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
/* global $, hljs, window, document */
|
|
||||||
|
|
||||||
///// represents a single document
|
///// represents a single document
|
||||||
|
|
||||||
var haste_document = function() {
|
var haste_document = function() {
|
||||||
|
@ -44,10 +42,10 @@ haste_document.prototype.load = function(key, callback, lang) {
|
||||||
value: high.value,
|
value: high.value,
|
||||||
key: key,
|
key: key,
|
||||||
language: high.language || lang,
|
language: high.language || lang,
|
||||||
lineCount: res.data.split('\n').length
|
lineCount: res.data.split("\n").length
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
error: function() {
|
error: function(err) {
|
||||||
callback(false);
|
callback(false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -64,7 +62,6 @@ haste_document.prototype.save = function(data, callback) {
|
||||||
type: 'post',
|
type: 'post',
|
||||||
data: data,
|
data: data,
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
contentType: 'text/plain; charset=utf-8',
|
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
_this.locked = true;
|
_this.locked = true;
|
||||||
_this.key = res.key;
|
_this.key = res.key;
|
||||||
|
@ -73,7 +70,7 @@ haste_document.prototype.save = function(data, callback) {
|
||||||
value: high.value,
|
value: high.value,
|
||||||
key: res.key,
|
key: res.key,
|
||||||
language: high.language,
|
language: high.language,
|
||||||
lineCount: data.split('\n').length
|
lineCount: data.split("\n").length
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
error: function(res) {
|
error: function(res) {
|
||||||
|
@ -168,9 +165,9 @@ haste.extensionMap = {
|
||||||
rb: 'ruby', py: 'python', pl: 'perl', php: 'php', scala: 'scala', go: 'go',
|
rb: 'ruby', py: 'python', pl: 'perl', php: 'php', scala: 'scala', go: 'go',
|
||||||
xml: 'xml', html: 'xml', htm: 'xml', css: 'css', js: 'javascript', vbs: 'vbscript',
|
xml: 'xml', html: 'xml', htm: 'xml', css: 'css', js: 'javascript', vbs: 'vbscript',
|
||||||
lua: 'lua', pas: 'delphi', java: 'java', cpp: 'cpp', cc: 'cpp', m: 'objectivec',
|
lua: 'lua', pas: 'delphi', java: 'java', cpp: 'cpp', cc: 'cpp', m: 'objectivec',
|
||||||
vala: 'vala', sql: 'sql', sm: 'smalltalk', lisp: 'lisp', ini: 'ini',
|
vala: 'vala', cs: 'cs', sql: 'sql', sm: 'smalltalk', lisp: 'lisp', ini: 'ini',
|
||||||
diff: 'diff', bash: 'bash', sh: 'bash', tex: 'tex', erl: 'erlang', hs: 'haskell',
|
diff: 'diff', bash: 'bash', sh: 'bash', tex: 'tex', erl: 'erlang', hs: 'haskell',
|
||||||
md: 'markdown', txt: '', coffee: 'coffee', swift: 'swift'
|
md: 'markdown', txt: ''
|
||||||
};
|
};
|
||||||
|
|
||||||
// Look up the extension preferred for a type
|
// Look up the extension preferred for a type
|
||||||
|
@ -277,7 +274,7 @@ haste.prototype.configureButtons = function() {
|
||||||
$where: $('#box2 .new'),
|
$where: $('#box2 .new'),
|
||||||
label: 'New',
|
label: 'New',
|
||||||
shortcut: function(evt) {
|
shortcut: function(evt) {
|
||||||
return evt.ctrlKey && evt.keyCode === 78;
|
return evt.ctrlKey && evt.keyCode === 78
|
||||||
},
|
},
|
||||||
shortcutDescription: 'control + n',
|
shortcutDescription: 'control + n',
|
||||||
action: function() {
|
action: function() {
|
||||||
|
@ -303,16 +300,16 @@ haste.prototype.configureButtons = function() {
|
||||||
},
|
},
|
||||||
shortcutDescription: 'control + shift + r',
|
shortcutDescription: 'control + shift + r',
|
||||||
action: function() {
|
action: function() {
|
||||||
window.location.href = '/raw/' + _this.doc.key;
|
window.open('/raw/' + _this.doc.key);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
$where: $('#box2 .twitter'),
|
$where: $('#box2 .twitter'),
|
||||||
label: 'Twitter',
|
label: 'Twitter',
|
||||||
shortcut: function(evt) {
|
shortcut: function(evt) {
|
||||||
return _this.options.twitter && _this.doc.locked && evt.shiftKey && evt.ctrlKey && evt.keyCode == 84;
|
return _this.options.twitter && _this.doc.locked && evt.ctrlKey && evt.keyCode == 84;
|
||||||
},
|
},
|
||||||
shortcutDescription: 'control + shift + t',
|
shortcutDescription: 'control + t',
|
||||||
action: function() {
|
action: function() {
|
||||||
window.open('https://twitter.com/share?url=' + encodeURI(window.location.href));
|
window.open('https://twitter.com/share?url=' + encodeURI(window.location.href));
|
||||||
}
|
}
|
||||||
|
@ -332,14 +329,14 @@ haste.prototype.configureButton = function(options) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Show the label
|
// Show the label
|
||||||
options.$where.mouseenter(function() {
|
options.$where.mouseenter(function(evt) {
|
||||||
$('#box3 .label').text(options.label);
|
$('#box3 .label').text(options.label);
|
||||||
$('#box3 .shortcut').text(options.shortcutDescription || '');
|
$('#box3 .shortcut').text(options.shortcutDescription || '');
|
||||||
$('#box3').show();
|
$('#box3').show();
|
||||||
$(this).append($('#pointer').remove().show());
|
$(this).append($('#pointer').remove().show());
|
||||||
});
|
});
|
||||||
// Hide the label
|
// Hide the label
|
||||||
options.$where.mouseleave(function() {
|
options.$where.mouseleave(function(evt) {
|
||||||
$('#box3').hide();
|
$('#box3').hide();
|
||||||
$('#pointer').hide();
|
$('#pointer').hide();
|
||||||
});
|
});
|
||||||
|
@ -372,7 +369,7 @@ $(function() {
|
||||||
// For browsers like Internet Explorer
|
// For browsers like Internet Explorer
|
||||||
if (document.selection) {
|
if (document.selection) {
|
||||||
this.focus();
|
this.focus();
|
||||||
var sel = document.selection.createRange();
|
sel = document.selection.createRange();
|
||||||
sel.text = myValue;
|
sel.text = myValue;
|
||||||
this.focus();
|
this.focus();
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 6.7 KiB |
File diff suppressed because one or more lines are too long
|
@ -1,12 +1,13 @@
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>Webionite hastebin</title>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<title>hastebin</title>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="tomorrow.css"/>
|
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
|
||||||
<link rel="stylesheet" type="text/css" href="application.css"/>
|
<link rel="stylesheet" type="text/css" href="application.css"/>
|
||||||
|
|
||||||
<script type="text/javascript" src="jquery.min.js"></script>
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
|
||||||
<script type="text/javascript" src="highlight.min.js"></script>
|
<script type="text/javascript" src="highlight.min.js"></script>
|
||||||
<script type="text/javascript" src="application.min.js"></script>
|
<script type="text/javascript" src="application.min.js"></script>
|
||||||
|
|
||||||
|
@ -38,27 +39,30 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<ul id="messages"></ul>
|
||||||
|
|
||||||
<div id="key">
|
<div id="key">
|
||||||
<a href="/about.md" class="logo"></a>
|
|
||||||
<div>
|
|
||||||
<div id="pointer" style="display:none;"></div>
|
<div id="pointer" style="display:none;"></div>
|
||||||
|
<div id="box1">
|
||||||
|
<a href="/about.md" class="logo"></a>
|
||||||
|
</div>
|
||||||
<div id="box2">
|
<div id="box2">
|
||||||
<button class="save function button-picture">Save</button>
|
<div class="save function"></div>
|
||||||
<button class="new function button-picture">New</button>
|
<div class="new function"></div>
|
||||||
<button class="duplicate function button-picture">Duplicate & Edit</button>
|
<div class="duplicate function"></div>
|
||||||
<button class="raw function button-picture">Just Text</button>
|
<div class="raw function"></div>
|
||||||
|
<div class="twitter function"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="box3" style="display:none;">
|
<div id="box3" style="display:none;">
|
||||||
<div class="label"></div>
|
<div class="label"></div>
|
||||||
<div class="shortcut"></div>
|
<div class="shortcut"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul id="messages"></ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="linenos"></div>
|
<div id="linenos"></div>
|
||||||
<pre id="box" style="display:none;" class="hljs" tabindex="0"><code></code></pre>
|
<pre id="box" style="display:none;" tabindex="0"><code></code></pre>
|
||||||
<textarea spellcheck="false" style="display:none;"></textarea>
|
<textarea spellcheck="false" style="display:none;"></textarea>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
File diff suppressed because one or more lines are too long
BIN
static/logo.png
BIN
static/logo.png
Binary file not shown.
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,98 @@
|
||||||
|
/*
|
||||||
|
|
||||||
|
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
display: block; padding: 0.5em;
|
||||||
|
background: #002b36; color: #92a0a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .comment,
|
||||||
|
pre .template_comment,
|
||||||
|
pre .diff .header,
|
||||||
|
pre .doctype,
|
||||||
|
pre .lisp .string,
|
||||||
|
pre .javadoc {
|
||||||
|
color: #586e75;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .keyword,
|
||||||
|
pre .css .rule .keyword,
|
||||||
|
pre .winutils,
|
||||||
|
pre .javascript .title,
|
||||||
|
pre .method,
|
||||||
|
pre .addition,
|
||||||
|
pre .css .tag,
|
||||||
|
pre .lisp .title {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .number,
|
||||||
|
pre .command,
|
||||||
|
pre .string,
|
||||||
|
pre .tag .value,
|
||||||
|
pre .phpdoc,
|
||||||
|
pre .tex .formula,
|
||||||
|
pre .regexp,
|
||||||
|
pre .hexcolor {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .title,
|
||||||
|
pre .localvars,
|
||||||
|
pre .function .title,
|
||||||
|
pre .chunk,
|
||||||
|
pre .decorator,
|
||||||
|
pre .builtin,
|
||||||
|
pre .built_in,
|
||||||
|
pre .lisp .title,
|
||||||
|
pre .identifier,
|
||||||
|
pre .title .keymethods,
|
||||||
|
pre .id,
|
||||||
|
pre .header {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .tag .title,
|
||||||
|
pre .rules .property,
|
||||||
|
pre .django .tag .keyword {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .attribute,
|
||||||
|
pre .variable,
|
||||||
|
pre .instancevar,
|
||||||
|
pre .lisp .body,
|
||||||
|
pre .smalltalk .number,
|
||||||
|
pre .constant,
|
||||||
|
pre .class .title,
|
||||||
|
pre .parent,
|
||||||
|
pre .haskell .label {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .preprocessor,
|
||||||
|
pre .pi,
|
||||||
|
pre .shebang,
|
||||||
|
pre .symbol,
|
||||||
|
pre .diff .change,
|
||||||
|
pre .special,
|
||||||
|
pre .keymethods,
|
||||||
|
pre .attr_selector,
|
||||||
|
pre .important,
|
||||||
|
pre .subst,
|
||||||
|
pre .cdata {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .deletion {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre .tex .formula,
|
||||||
|
pre .code {
|
||||||
|
background: #073642;
|
||||||
|
}
|
|
@ -1,72 +0,0 @@
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
|
||||||
.hljs-comment,
|
|
||||||
.hljs-quote {
|
|
||||||
color: #8e908c;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Red */
|
|
||||||
.hljs-variable,
|
|
||||||
.hljs-template-variable,
|
|
||||||
.hljs-tag,
|
|
||||||
.hljs-name,
|
|
||||||
.hljs-selector-id,
|
|
||||||
.hljs-selector-class,
|
|
||||||
.hljs-regexp,
|
|
||||||
.hljs-deletion {
|
|
||||||
color: #c82829;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
|
||||||
.hljs-number,
|
|
||||||
.hljs-built_in,
|
|
||||||
.hljs-builtin-name,
|
|
||||||
.hljs-literal,
|
|
||||||
.hljs-type,
|
|
||||||
.hljs-params,
|
|
||||||
.hljs-meta,
|
|
||||||
.hljs-link {
|
|
||||||
color: #f5871f;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
|
||||||
.hljs-attribute {
|
|
||||||
color: #eab700;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Green */
|
|
||||||
.hljs-string,
|
|
||||||
.hljs-symbol,
|
|
||||||
.hljs-bullet,
|
|
||||||
.hljs-addition {
|
|
||||||
color: #718c00;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
|
||||||
.hljs-title,
|
|
||||||
.hljs-section {
|
|
||||||
color: #4271ae;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
|
||||||
.hljs-keyword,
|
|
||||||
.hljs-selector-tag {
|
|
||||||
color: #8959a8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs {
|
|
||||||
display: block;
|
|
||||||
overflow-x: auto;
|
|
||||||
background: white;
|
|
||||||
color: #4d4d4c;
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-emphasis {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
/* global describe, it */
|
|
||||||
|
|
||||||
var assert = require('assert');
|
|
||||||
|
|
||||||
var DocumentHandler = require('../lib/document_handler');
|
|
||||||
var Generator = require('../lib/key_generators/random');
|
|
||||||
|
|
||||||
describe('document_handler', function() {
|
|
||||||
|
|
||||||
describe('randomKey', function() {
|
|
||||||
|
|
||||||
it('should choose a key of the proper length', function() {
|
|
||||||
var gen = new Generator();
|
|
||||||
var dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
|
||||||
assert.equal(6, dh.acceptableKey().length);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should choose a default key length', function() {
|
|
||||||
var gen = new Generator();
|
|
||||||
var dh = new DocumentHandler({ keyGenerator: gen });
|
|
||||||
assert.equal(dh.keyLength, DocumentHandler.defaultKeyLength);
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
|
@ -1,33 +0,0 @@
|
||||||
/* global describe, it */
|
|
||||||
|
|
||||||
const assert = require('assert');
|
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
|
|
||||||
const Generator = require('../../lib/key_generators/dictionary');
|
|
||||||
|
|
||||||
describe('RandomKeyGenerator', function() {
|
|
||||||
describe('randomKey', function() {
|
|
||||||
it('should throw an error if given no options', () => {
|
|
||||||
assert.throws(() => {
|
|
||||||
new Generator();
|
|
||||||
}, Error);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should throw an error if given no path', () => {
|
|
||||||
assert.throws(() => {
|
|
||||||
new Generator({});
|
|
||||||
}, Error);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should return a key of the proper number of words from the given dictionary', () => {
|
|
||||||
const path = '/tmp/haste-server-test-dictionary';
|
|
||||||
const words = ['cat'];
|
|
||||||
fs.writeFileSync(path, words.join('\n'));
|
|
||||||
|
|
||||||
const gen = new Generator({path}, () => {
|
|
||||||
assert.equal('catcatcat', gen.createKey(3));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,27 +0,0 @@
|
||||||
/* global describe, it */
|
|
||||||
|
|
||||||
const assert = require('assert');
|
|
||||||
|
|
||||||
const Generator = require('../../lib/key_generators/phonetic');
|
|
||||||
|
|
||||||
const vowels = 'aeiou';
|
|
||||||
const consonants = 'bcdfghjklmnpqrstvwxyz';
|
|
||||||
|
|
||||||
describe('RandomKeyGenerator', () => {
|
|
||||||
describe('randomKey', () => {
|
|
||||||
it('should return a key of the proper length', () => {
|
|
||||||
const gen = new Generator();
|
|
||||||
assert.equal(6, gen.createKey(6).length);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should alternate consonants and vowels', () => {
|
|
||||||
const gen = new Generator();
|
|
||||||
|
|
||||||
const key = gen.createKey(3);
|
|
||||||
|
|
||||||
assert.ok(consonants.includes(key[0]));
|
|
||||||
assert.ok(consonants.includes(key[2]));
|
|
||||||
assert.ok(vowels.includes(key[1]));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,19 +0,0 @@
|
||||||
/* global describe, it */
|
|
||||||
|
|
||||||
const assert = require('assert');
|
|
||||||
|
|
||||||
const Generator = require('../../lib/key_generators/random');
|
|
||||||
|
|
||||||
describe('RandomKeyGenerator', () => {
|
|
||||||
describe('randomKey', () => {
|
|
||||||
it('should return a key of the proper length', () => {
|
|
||||||
const gen = new Generator();
|
|
||||||
assert.equal(6, gen.createKey(6).length);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should use a key from the given keyset if given', () => {
|
|
||||||
const gen = new Generator({keyspace: 'A'});
|
|
||||||
assert.equal('AAAAAA', gen.createKey(6));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,54 +0,0 @@
|
||||||
/* global it, describe, afterEach */
|
|
||||||
|
|
||||||
var assert = require('assert');
|
|
||||||
|
|
||||||
var winston = require('winston');
|
|
||||||
winston.remove(winston.transports.Console);
|
|
||||||
|
|
||||||
var RedisDocumentStore = require('../lib/document_stores/redis');
|
|
||||||
|
|
||||||
describe('redis_document_store', function() {
|
|
||||||
|
|
||||||
/* reconnect to redis on each test */
|
|
||||||
afterEach(function() {
|
|
||||||
if (RedisDocumentStore.client) {
|
|
||||||
RedisDocumentStore.client.quit();
|
|
||||||
RedisDocumentStore.client = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('set', function() {
|
|
||||||
|
|
||||||
it('should be able to set a key and have an expiration set', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: 10 });
|
|
||||||
store.set('hello1', 'world', function() {
|
|
||||||
RedisDocumentStore.client.ttl('hello1', function(err, res) {
|
|
||||||
assert.ok(res > 1);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not set an expiration when told not to', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: 10 });
|
|
||||||
store.set('hello2', 'world', function() {
|
|
||||||
RedisDocumentStore.client.ttl('hello2', function(err, res) {
|
|
||||||
assert.equal(-1, res);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
}, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not set an expiration when expiration is off', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: false });
|
|
||||||
store.set('hello3', 'world', function() {
|
|
||||||
RedisDocumentStore.client.ttl('hello3', function(err, res) {
|
|
||||||
assert.equal(-1, res);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
Loading…
Reference in New Issue