Skip to content

weberjn/jBM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jBM - Online Bookmark Manager

jBM is a Java Web Application to collect your bookmarks online. Data is stored in PostgreSQL.

Add bookmarks with a bookmarklet, the web gui or an Android app.

jBM is a Java port of SemanticScuttle and contains some code of it.

License

GNU General Public License, version 2

Setup

Database

create a PostgreSQL database for jBM and execute the tables-postgresql.sql script.

check that local socket access has md5:

host    all             all             127.0.0.1/32            md5

create the database and a database user (not a unix user):

postgres@host:~$ psql
psql (9.4.12)
Type "help" for help.
postgres=# CREATE USER jbm  WITH PASSWORD 'sosecret';
CREATE ROLE
postgres=# CREATE DATABASE jbm owner jbm;
CREATE DATABASE
postgres=# GRANT ALL PRIVILEGES  ON DATABASE jbm TO jbm;
GRANT

create the tables with the tables-postgresql.sql script as jbm user and use the -h option:

postgres@host:~$ psql -h host -U jbm -d jbm -a -f tables-postgresql.sql

Tomcat

add these driver jars to tomcat/lib

  • postgresql-9.4.1212.jar
  • javax.persistence-2.1.1.jar
  • eclipselink-2.6.4.jar

add a jBM-custom.properties to tomcat/lib like

javax.persistence.jdbc.driver=org.postgresql.Driver
javax.persistence.jdbc.url=jdbc:postgresql://host/jbm
javax.persistence.jdbc.user=jbm
javax.persistence.jdbc.password=sosecret

Security

jBM needs JEE Security Roles

jBM
jBMAPI

jBMAPI for the remote API (for the Android App).

For Tomcat these are declared in tomcat-users.xml

<role rolename="jBM"/>
<role rolename="jBMAPI"/>
<user username="user" password="sosecret" roles="jBM,jBMAPI"/>

Screenshots

list Bookmarks

list Bookmarks

add a Bookmark

add a Bookmark

API

jBM supports a subset of the delicious API v1.

To see, if the API works, run curl like

curl -k -u user:sosecret --data '' http://your.host/jBM/api/posts/all

Android

Scuttloid can be used as Android Client for jBM.

Server-URL is your jBM context root

http://your.host/jBM