Learn R Programming

alfr

Overview

Allows you to connect to an 'Alfresco' content management repository and interact with its contents using simple and intuitive functions.

Getting Started

Before you can interact and manage content you will need access to an 'Alfresco' content management repository.

This guide will help you get started with 'Alfresco'.

You will need to know the root URL for the 'Alfresco' content management repository, http://localhost:8080 when installed locally.

Installation

Install the development version from github with:

# install.packages("remotes")
remotes::install_github("rwetherall/alfr")

Install release version from CRAN with:

install.packages("alfr")

Examples

In order to communicate with the Alfresco repository you must first establish a session connection. The location of the respository is required to do this, along with valid user credentials.

session <- alf_session("http://localhost:8080", "admin", "admin")

All content is stored on a repository node so before we can upload binary content we must first create a node to store it within. In this example we are creating a node called myFile2.txt in the folder test. -root- is used to reference the root repository node.

my_file <- alf_node.new(session, "-root-", list(name="myFile2.txt", nodeType="cm:content", relativePath="test"))

Now content can be uploaded into the nodes content property where it will be stored in the Alfresco repository.

my_file <- my_file$content$update("resources/testuploaddoc.txt")

Get a reference to the node you want to read content from.

my_file <- alf_node.new(session, "-root-", relativePath="test/myFile2.txt")

Content stored in a repository node can then be read to the client by opening a connection and reading the contents.

con <- my_file$content$as.file("resources/download.txt") %>% file("r")
content_lines <- readLines(con)
close(con)

With a reference to the node that you want to delete from the repository.

alf_node.delete(session, node$id)

Copy Link

Version

Install

install.packages('alfr')

Monthly Downloads

255

Version

1.2.1

License

GPL-3 | file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Roy Wetherall

Last Published

July 19th, 2019

Functions in alfr (1.2.1)

alf_node.new

Create a new Alfresco node
alf_node

Get Alfresco node
alf_node.delete

Deletes an Alfresco node
alf_session.invalidate

Invalidates a session.
alf_session.is_valid

Determine whether a session is valid.
alfr

alfr: A package for connecting with Alfresco
alf_session

Get connection session to Alfresco content repository