This package has been deprecated

Author message:

This package has been deprecated - use @yuforium/activity-streams instead.

@yuforium/activity-streams-validator
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-alpha.1 • Public • Published

@yuforium/activity-streams

activity streams validator and transformer

Getting Started

npm install @yuforium/activity-streams-validator class-validator class-transformer reflect-metadata

Using Built-In Classes

Use built in classes to do validation using class-validator:

import 'reflect-metadata';
import { Note } from '@yuforium/activity-streams-validator';
import { validate } from 'class-validator';

const note = new Note();
note.id = 'https://yuforium.com/users/chris/note-123';

(async () => {
  let errors = await validate(note);

  if (errors.length > 0) {
    console.log('validation failed');
  }
  else {
    console.log('validation ok');
  }
})();

Creating Your Own Classes

Create your own classes by extending the built in classes or by initializing your own:

// Creates CustomNote class as an Activity Streams Object
class CustomNote extends ActivityStreams.object('CustomNote') {
  @Expose()
  public customField: string | string[];
};

// Add this to the built in transformer
ActivityStreams.transformer.add(CustomNote);

// new instance of CustomNote
const custom = ActivityStreams.transform({
  type: 'CustomNote',
  customField: 'someValue'
});

Composite Transformation

In addition to supporting custom classes, multiple types may be defined an interpolated from the transform() method.

import { ActivityStreams } from "@yuforium/activity-streams";
import 'reflect-metadata';

class Duck extends ActivityStreams.object('Duck') {
  public quack() {
    console.log('quack!');
  }
}

class Yeti extends ActivityStreams.object('Yeti') {
  public roar() {
    console.log('roar!');
  }
}

ActivityStreams.transformer.add(Duck, Yeti);

const duckYeti = ActivityStreams.transform({
  type: ['Duck', 'Yeti'],
  id: 'https://yuforium.com/the-infamous-duck-yeti'
});

duckYeti.quack(); // quack!
duckYeti.roar(); // roar!

Requiring Optional Fields

Many fields in the Activity Streams specification are optional, but you may want to make them required your own validation purposes.

Extend the classes you need and then use the @IsRequired() decorator for these fields.

my-note.ts

import { Note, IsRequired } from '@yuforium/activity-streams-validator';

export class MyNote extends Note {
  // content field is now required
  @IsRequired()
  public content;
}

validate.ts

import { MyNote } from './my-note';

const note = new MyNote();

validate(note); // fails

note.content = "If you can dodge a wrench, you can dodge a ball.";

validate(note); // works

Readme

Keywords

Package Sidebar

Install

npm i @yuforium/activity-streams-validator

Weekly Downloads

1

Version

0.1.0-alpha.1

License

MIT

Unpacked Size

158 kB

Total Files

117

Last publish

Collaborators

  • cpmoser