npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@agility/content-management

v0.5.0

Published

JavaScript library for the Agility Content Management API (node)

Downloads

304

Readme

Agility Content Management JS SDK

This is the official JavaScript library for inserting, updating, managing and importing content, pages and media in your Agility CMS instance.

Don't have an Agility CMS instance? Sign up for Free (forever) today!

Features

Programmatically manage content via JavaScript API client

| Agility Instance Management | Content Management | Media Management | URL Redirections | WebHooks | | --------------------------- | ------------------ | ---------------- | ------------------------- | -------------- | | Get API | Approve Content | Get Media | Delete URL Redirection | Delete WebHook | | | Decline Content | Upload Media | Save URL Redirection | Save WebHook | | | Delete Content | | Save URL Redirection Test | | | | Publish Content | | | | | | Request Approval | | | | | | Save Content Item | | | | | | Unpublish Content | | | | | | Get Content Item | | | |

Getting Started

Installation

Install it using npm (recommended):

npm install @agility/content-management

Making a Request

Create an instance of API client for Agility Content Management REST API

Get API

import agilityMgmt from "@agility/content-management";

const mgmtApi = agilityMgmt.getApi({
  location: "USA",
  websiteName: "MyWebsiteName",
  securityKey: "xyz123",
});

Content Management

Get Content Item

//Set the contentID and language code of content you want to approve
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .getContentItem({
    contentID,
    languageCode,
  })
  .then(function (item) {
    //the item is your content item
  })
  .catch(function (error) {
    //handle error
  });

Approve Content

//Set the contentID and language code of content you want to approve
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .approveContent({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Decline Content

//Set the contentID and language code of content you want to decline
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .declineContent({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Delete Content

//Set the contentID and language code of content you want to delete
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .deleteContent({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Publish Content

//Set the contentID and language code of content you want to publish
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .publishContent({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Request Approval

//Set the contentID and language code of content you want to request for approval
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .requestApproval({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Save Content Item

//Set the contentItem structure
//Important: The fields are not camel case - make sure the field names match EXACTLY with your content definition in Agility instance
//The example below shows how to structure your fields with simple types and nested objects
let contentItem = {
  contentID: -1,
  fields: {
    Title: "Test Title",
    Image: {
      mediaID: 123,
      label: "Test Image",
    },
  },
};

//Set language code and reference name of content you want to save
let languageCode = "en-us";
let referenceName = "MyReferenceName";

api
  .saveContentItem({
    contentItem,
    languageCode,
    referenceName,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
    //update contentID of saved item
    contentIDToWorkOn = contentID;
  })
  .catch(function (error) {
    //handle error
  });

Unpublish Content

//Set the contentID and language code of content you want to unpublish
let contentID = contentIDToWorkOn;
let languageCode = "en-us";

api
  .unpublishContent({
    contentID,
    languageCode,
  })
  .then(function (contentID) {
    //check contentID is greater > 0 for success
  })
  .catch(function (error) {
    //handle error
  });

Media Management

Get Media

//Set the path to the media
//Important: The path is the file name in Agility Media you need to access
let path = "test.png";

api
  .getMediaID({
    path,
  })
  .then(function (mediaObj) {
    //check if media is not null/empty and has valid url for success
  })
  .catch(function (error) {
    //handle error
  });

Upload Media

//Create media stream, save blob variable and set filename
let blob = fs.createReadStream("./test/sample/logo.png");
let filename = `test-${new Date()
  .toISOString()
  .replace(/\./g, "")
  .replace(/:/g, "")}.png`;

api
  .uploadMedia({
    fileName: filename,
    fileContent: blob,
  })
  .then(function (mediaObj) {
    //check if media is not null/empty and has valid url for success
  })
  .catch(function (error) {
    //handle error
  });

URL Redirections

Delete URL Redirection

api
  .deleteUrlRedirection({
    urlRedirectionID: urlRedirectionIDToDelete,
  })
  .then(function () {
    console.log("deleted");
  })
  .catch(function (error) {
    //handle error
  });

Save URL Redirection

api
  .saveUrlRedirection({
    originUrl: "/from/link",
    destinationUrl: "/to/link",
  })
  .then(function (urlRedirectionID) {
    console.log("saved ", urlRedirectionID);
  })
  .catch(function (error) {
    //handle error
  });

Save URL Redirection Test

api
  .saveUrlRedirectionTest({
    urlRedirectionID: urlRedirectionIDtoUpdate,
    passed: true,
    testResult: "- 301 to /dest-url",
  })
  .then(function () {
    console.log("updated test");
  })
  .catch(function (error) {
    //handle error
  });

WebHooks

Delete WebHook

//Specify the URL of the webhook to delete
const urlToWorkOn = `http://test.url.com`;
api
  .deleteWebHook({ url: urlToWorkOn })
  .then(function () {
    console.log("deleted");
  })
  .catch(function (error) {
    //handle error
  });

Save WebHook

//Create a new webhook and set what events to receive
const name = `Test WebHook`;
const urlToWorkOn = `http://test.url.com`;

api
  .saveWebHook({
    url: urlToWorkOn,
    name,
    publishEvents: false,
    saveEvents: true,
    workflowEvents: false,
  })
  .then(function () {
    //handle success
  })
  .catch(function (error) {
    //handle error
  });

Documentation

Full documentation for this SDK can be found in our Agility Management JS SDK Reference Doc

For docs & help around Agility CMS, please see Agility CMS Documentation

Tutorials

Calling the Content Management API using the JavaScript SDK

Contributing

If you would like to contribute to this SDK, you can fork the repository and submit a pull request. We'd love to include your updates.

Running the Tests

An essential part of contributing to this SDK is adding and running unit tests to ensure the stability of the project.

> npm run test