0.2.0 • Published 6 years ago

confluence-attachments v0.2.0

Weekly downloads
9
License
-
Repository
-
Last release
6 years ago

Confluence Attachments

This project is created to automatically create confluence attachments out of files for a given directory.

If an attachment with the same name already exists it will update the attachment with a new version. The previous version will be available for download.

Installation

npm install confluence-attaachment-uploader

Usage

Commands

push | p

The main purpose of this library is pushing files from a given directory to a confluence page. If a file from the output directory hasn't been uploaded before, a new attachment is created. If the attachment already exists (with the filename), an update will be performed.

delete | d

Files that have been pushed to a wiki page can be removed as well. Only the files in the output directory will be removed from the given wiki page, to ensure page specific attachments are not removed.

configure | config | cfg

The script can be configured by passing parameters to the config command. If any of the required parameters is not found, the script will prompt the user for input.

ParameterDescriptionExample
usernameA valid confluence usernametobias.ouwejan@sap.com
passwordA valid confluence password1234
pageThe confluence page ID that will be used to store the files303129511
urlThe base URL for the confluence sitehttps://wiki.hybris.com
sourceDirA filesystem directory on the local machine that will be recursively scanned for files. System files (files starting with . or ~) are excluded../dist
blacklistAdditional file pattenrs can be added to skip files form the directory and any of its sub directories.*.map

Except for the password, all parameters are cached in the project in a folder ('cache'). This makes it confinient for manual processing as well as storing the cached configuration in a repo.

Example:

# configure the page ID
node dist/index.js config -p 303129511

# configure the confluence URL
node dist/index.js config --url https://wiki.hybris.com

# configure various parameters
node dist/index.js config -p 303129511 --url https://wiki.hybris.com --sourceDir ./dist

list | l

The persistent configuration can be listed in the console.

reset | r

Clears the configuration from the persitant cache.

Options

verbose | v

A little more inforation on the progress can be printed in verbose mode.

Example:

# print verbose information while pushing files
node dist/index.js push -v

Development

The script is developed in typescript and generates a commonjs module that can be used in other nodejs projects.