1.0.8 • Published 1 year ago

blastream v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Blastream NodeJS Sdk

All URIs are relative to https://api.v2.blastream.com/api-docs

Install

npm install blastream

Init

const Blastream = require('blastream').default;
//or in es6
//import Blastream from 'blastream';
let PUBLIC_KEY = 'XXXXXX';
let PRIVATE_KEY = 'YYYYYY';
let blastream = new Blastream(PUBLIC_KEY, PRIVATE_KEY); 

Examples

createOrGetChannel

    let channel = await blastream.createOrGetChannel('my-channel');
    let iframe = channel.getIframe(800, 600, {
        username: 'admin_user'
    });
    console.log(iframe);

createCollaborator

    let channel = await blastream.createOrGetChannel('my-channel');
    let colaborator = await channel.createOrGetCollaborator('alan', 'animator'); //The collaborator username is unique for a channel
    let iframe = colaborator.getIframe(800, 600);
    console.log('iframe', iframe);

createParticipant

    let channel = await blastream.createOrGetParticipant('my-channel', 'my-part');
    let iframe = channel.getIframe(800, 600);
    console.log('iframe', iframe);

getReplays

    let channel = await blastream.createOrGetChannel('my-channel');
    let list = await channel.getReplays();
    console.log('replays', list);

registerHook

    let res = await blastream.registerHook('https://http.jay.invaders.stream/hook_from_blastream.php');
    console.log('res', res);
    

updateSubscription

    let channel = await blastream.createOrGetChannel('my-channel');
    let res = await channel.updateSubscription('pro2', 'hourly');
    console.log('res', res);

setAccessRule

    let channel = await blastream.createOrGetChannel('my-channel');
    let res = await channel.setAccessRule('PRIVATE', {
        knock: 1 //can be knock or password, if you set password you have to put the password value : password => 'my-password'
    });
    console.log('res', res);

updateSettings

    let channel = await blastream.createOrGetChannel('my-channel');
    let res = await channel.updateSettings({
        autojoin: 1
    });
    console.log('res', res);

updateCollaborator

    let channel = await blastream.createOrGetChannel('my-channel');
    let colaborator = await channel.createOrGetCollaborator('Collaborator Username', 'moderator'); 
    let res = await colaborator.update('New username', 'animator');
    console.log('res', res);

updateCustom

    let channel = await blastream.createOrGetChannel('my-channel');
    let upload = await channel.uploadPic('logo.png');
    let res = await channel.setCustom({
        colors:  [
          "#ff0000",
          "#ff0000",
          "#ff0000",
          "#ff0000"
        ],
        js: 'alert(\'ok\')',
        css: '',
        logo: upload.file
    });
    console.log('res', res)

updateScene

    let channel = await blastream.createOrGetChannel('my-channel');
    let scenes = await channel.getScenes(); 
    
    //can be 'overlay', 'logo' or 'background'
    let upload = await channel.uploadScenePic('overlay', 'logo.png');
    for(var i in scenes) {
        let scene = scenes[i];
        if(scene.isDefault()) {
            let res = await scene.update({
                overlay: {
                    src: upload['file'],
                    play: true
                },
                background: {
                    color: '#ff0000'
                }
            });
            console.log('res', res);
        }
    }
1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago