Go to file
Morris Jobke bb14f5f827 Update transifex language map
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-08-03 10:02:23 +02:00
appinfo bump version 2017-07-17 14:10:50 +02:00
controller fix: clickBookmark's DB query was not migrated (#390) 2017-07-15 22:00:10 +02:00
css makes add_url more wide for see the +-picture 2017-05-25 21:10:12 +02:00
img Fix viewBox of SVG to allow proper scaling in Firefox 2016-08-19 17:12:29 +02:00
js Merge pull request #368 from marcelklehr/fix/getBookmarks 2017-07-14 23:58:09 +02:00
l10n Update transifex language map 2017-08-03 10:02:23 +02:00
screenshots add screenshots 2017-02-09 22:48:58 +01:00
templates Add rel="nofollow noopener" 2017-02-16 02:28:36 +01:00
tests fix: clickBookmark's DB query was not migrated (#390) 2017-07-15 22:00:10 +02:00
.scrutinizer.yml Update .scrutinizer.yml 2015-07-14 14:27:09 +02:00
.travis.yml Exclude two more unnecessary tests 2017-05-25 14:10:31 +02:00
CONTRIBUTING.md fix naming 2016-12-07 13:00:43 +01:00
COPYING
Makefile bump version 2017-07-17 14:10:50 +02:00
README.md Small formatting changes 2017-06-22 16:22:02 +02:00
issue_template.md Update issue_template.md 2017-04-18 12:58:26 +02:00

README.md

Bookmarks app

Maintainers:

Useful companion apps for Browsers/Android:

Developer setup info:

Installation:

Install it from the app store in Nextcloud itself or just clone this repo into your apps directory on your server.

Status :

Rewrite by [Stefan Klemm] aka ganomi (https://github.com/ganomi)

  • This is a refactored / rewritten version of the bookmarks app using the app framework
  • Dependency Injection for user and db is used througout the controllers
  • The Routing features a consistent rest api
  • The Routing provides some legacy routes, so that for exampe the Android Bookmarks App still works.
  • Merged all the changes from https://github.com/nextcloud/bookmarks/pull/68 and added visual fixes. App uses the App Framework Styling on the Client side now.

There is a publicly available api that provides access to bookmarks per user. (This is usefull in connection with the Wordpress Plugin https://github.com/mario-nolte/oc2wp-bookmarks)

REST API

In order to access the REST API you will need to provide credentials for the user on behalf of which you'd like to access the bookmarks app. This can be done using Basic Auth and must happen for every request.

Query bookmarks

GET
/apps/bookmarks/public/rest/v2/bookmark

Parameters:

  • (optional) tags[]: array of tags that bookmarks returned by the endpoint should have
  • (optional) conjunction: Set to and to require all tags to be present, or if one should suffice. Default: or
  • (optional) page: if this is non-negative, results will be paginated by 10 bookmarks a page. Default: 0
  • (optional) sortby: The column to sort the results by; one of url, title, description, public, lastmodified, clickcount. Default: lastmodified.
  • (optional) search[]: An array of words to search for in the following columns url, title, description
  • (optional) user: Instead of returning the bookmarks of the current user, return the public bookmarks of the user passed as this parameter.

Example:

GET
/apps/bookmarks/public/rest/v2/bookmark?tags[]=firsttag&tags[]=secondtag&page=-1
{
  "status": "success",
  "data": [
    {"id": "7", "title": "Google", "tags": ["firsttag"], /*...*/ }
  ]
}

Create a bookmark

POST
/apps/bookmarks/public/rest/v2/bookmark

Parameters:

  • url: the url of the new bookmark
  • (optional) item[tags][]: Array of tags for this bookmark (these needn't exist and are created on-the-fly)
  • (optional) title: the title of the bookmark. If absent the title of the html site referenced by url is used
  • (optional) is_public: Set this parameter (without a value) to mark the new bookmark as public, so that other users can see it
  • (optional) description: A description for this bookmark

Example:

POST /apps/bookmarks/public/rest/v2/bookmark?url=http%3A%2F%2Fgoogle.com&title=Google&description=in%20case%20you%20forget&item[tags][]=search-engines&item[tags][]=uselessbookmark
{ "status": "success",
  "item": {
    "id": "7",
	"url": "http://google.com",
	"title": "Google",
	//...
  }
}

Edit a bookmark

PUT /apps/bookmarks/public/rest/v2/bookmark/:id
  • id: The id of the bookmark to edit

Parameters:

  • record_id: The id of the bookmark to edit
  • (optional) url: The new url
  • (optional) item[tags][]: the new tags. Existing tags will be deleted.
  • (optional) title: The new title
  • (optional) is_public: Set or leave unset to set the new public status.
  • (optional) description: The new description.

Example:

PUT /apps/bookmarks/public/rest/v2/bookmark/7?record_id=7&title=Boogle
{ "status": "success",
  "item": {
    "id": "7",
	"url": "http://google.com",
	"title": "Boogle",
	//...
  }
}

Delete a bookmark

DELETE /apps/bookmarks/public/rest/v2/bookmark/:id
  • id: The bookmark to delete

Parameters: None

Example:

DELETE /apps/bookmarks/public/rest/v2/bookmark/7
{ "status": "success" }

List all tags

GET /apps/bookmarks/public/rest/v2/tag

Parameters: None

Example:

GET /apps/bookmarks/public/rest/v2/tag
["politics", "satire", "tech", "music", "art", "blogs", "personal"]

Delete a tag

DELETE /apps/bookmarks/public/rest/v2/tag

Parameters:

  • old_name: the name of the tag to delete

Example:

DELETE /apps/bookmarks/public/rest/v2/tag?old_name=mytag
{ "status": "success" }

Rename a tag

POST /apps/bookmarks/public/rest/v2/tag

Parameters:

  • old_name: The name of the tag to rename
  • new_name: The new name of the tag

Example:

POST /apps/bookmarks/public/rest/v2/tag?old_name=politics&new_name=satire
{ "status": "success"}