3.0.2 • Published 2 years ago

strapio v3.0.2

Weekly downloads
10
License
ISC
Repository
github
Last release
2 years ago

StrapIO

module for working with socket.io with predefined rules. StrapIO will look at Role permission on each action. StrapIO is looking for all roles which have access to the given contenttype and action type.

UPDATE v2: You need to subscribe first before you receive any data. socket.emit('subscribe', 'article') article is the content-type.

using Strapi v3?

you need to install strapio v2. Version 3 will not work with strapi below 4.

Installation

npm i strapio

src/index.js

bootstrap({strapi}) {
        process.nextTick(() => {
            strapi.StrapIO = (require("strapio"))(strapi);
        });
 },

Configuration socket.io

bootstrap({strapi}) {
        process.nextTick(() => {
            strapi.StrapIO = (require("strapio"))(strapi, {
              path: "/other/path/",
              cors: { origin: "*", methods: ["GET", "POST"] },
            });
        });
 },

Usage

server

api/<content-type>/controllers/<content-type>.js

module.exports = {
  async create(ctx) {
    let entity;
    if (ctx.is("multipart")) {
      const { data, files } = parseMultipartData(ctx);
      entity = await strapi.services.CONTENTTYPE.create(data, { files });
    } else {
      entity = await strapi.services.CONTENTTYPE.create(ctx.request.body);
    }
    strapi.StrapIO.emit(this, "create", entity);

    // or send custom event
    strapi.StrapIO.emitRaw("myroom", "myevent", entity);

    return sanitizeEntity(entity, { model: strapi.models.CONTENTTYPE });
  },

  async update(ctx) {
    const { id } = ctx.params;

    let entity;
    if (ctx.is("multipart")) {
      const { data, files } = parseMultipartData(ctx);
      entity = await strapi.services.CONTENTTYPE.update({ id }, data, {
        files,
      });
    } else {
      entity = await strapi.services.CONTENTTYPE.update(
        { id },
        ctx.request.body
      );
    }

    strapi.StrapIO.emit(this, "update", entity);

    return sanitizeEntity(entity, { model: strapi.models.CONTENTTYPE });
  },
};

Client

const io = require("socket.io-client");

// Handshake required, token will be verified against strapi
const socket = io.connect(API_URL, {
  query: { token },
});

socket.emit("subscribe", "article"); // article is the room which the client joins

socket.on("find", (data) => {
  console.log("article:", data);
  //do something
});
socket.on("update", (data) => {
  // do something
});

Client, Web

<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.2.0/socket.io.js"></script>
<script>
  // Handshake required, token will be verified against strapi
  (function () {
    const socket = io("http://localhost:1337/", {
      path: "/sockettest/",
      query: {
        token,
      },
    });

    socket.emit("subscribe", "article"); // article is the room which the client joins
    socket.emit("subscribe", "myroom"); // custom room

    socket.on("find", (data) => {
      //do something
    });
    socket.on("update", (data) => {
      // do something
    });

    socket.on("myevent", (data) => {});
  })();
</script>

Full example project

debugging

  • DEBUG=strapio npm run develop
  • DEBUG=* npm run develop

Test

Currently tested with strapi v4

Plugin for strapi

You can install strapio with a plugin npm i strapi-plugin-socket-io.

Contribute

just do it over github or chat with me @Discord

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.4.5

2 years ago

2.4.4

2 years ago

2.4.1

3 years ago

2.4.2

3 years ago

2.3.0

3 years ago

2.3.2

3 years ago

2.3.1

3 years ago

2.2.1

3 years ago

2.2.0

3 years ago

2.1.0

3 years ago

2.0.2

3 years ago

2.0.0

3 years ago

1.1.0

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.0

4 years ago

0.0.1

4 years ago