Lets take a look at some of the core Repository features.
- Navigate Repository Contents
- Manipulate Repository Contents
- Edit User and Group Permissions
Manipulating the Pentaho Repository
A quick word about the syntax of solution directories. With the new Restful API, solution directories are broken up using the : character. So for example, if we wanted to render a report called sales.prpt in the steel-wheels/reports/sales-reports directory the url would look a little like this:steel-wheels:reports:sales-reports:sales.prpt
Listing Repository Contents
There are two types of repository listing requests. One gets the list of files and folders (including child folders to a certain depth if specified) and the other returns properties of a certain file or folder.
We can start by listing all the files and folders in the public solution folder:
http://localhost:8080/pentaho/api/repo/files/:public/children
If we wanted to return the content of the public/cde directory we would execute:
http://localhost:8080/pentaho/api/repo/files/:public:cde/children
By default the children request lists all files and folders including nested files and folders (not including hidden files and folders). Its possible to pass in some argument to filter our results
depth
the depth argument defines the depth of folders we wish to query. by default the depth is -1. This returns ALL folders. If we set it to 0 we get only the contents of the currect folder. if we set it to 1 or more we get the contents of the child folders to that depth
showHidden
By default hidden files are not returned. to show hidden files in the results we simple pass in the argument showHidden=true
filter
It is possible to filter if we want to return Files or Folders. We do this with the filter argument. For example, to filter only solution files we would add the following argument: filter=*|FILES. To list onlt folder we would do filter=*|FOLDERS
Getting Solution folder / file properties
If we want to get the details for a simple solution file or folder we can use the properties webservice. For example, to get the properties of a solution file called sales.prpt in the public/mysolution/reports folder we would do something like this
http://localhost:8080/pentaho/api/repo/files/:public:mysolution:sales.prpt/properties
Creating new Folders
Lets assume we want to create a new folder in the public solution directory called myreports. To create the new folder we simple execute the following request
Deleting Solution Files and Folders
Lets assume we now want to delete the myreports folder in the repository. before we can delete a file or folder we need to get its ID. We can use the properties request method to get a file or folder id.
Once we have the id of the file(s) or folder(s) we want to delete we can execute the delete and pass in the list of ID into the response header as a comma separated list
Once we have the id of the file(s) or folder(s) we want to delete we can execute the delete and pass in the list of ID into the response header as a comma separated list
http://localhost:8080/pentaho/api/repo/files/delete
Listing File or Folder ACLs
We can get the permissions for a particular solution file or folder using the acl service. For example, if we wanted to get the permissions for the public folder we could execute the following request:
http://localhost:8080/pentaho/api/repo/files/:public/acl
This will return the ACL descriptor for the public directory
Setting ACLs for Files or Folders
If we want to set new permissions to a certain solution file or folder we can use the same service but pass in a response header with the new ACL definition using PUT.
Summary
So this is just a quick overview of some of the Pentaho BI Server Restful Web Services but it should be enough to get you started with integrating Pentaho into your own applications