1.1.4 • Published 7 years ago

broid-line v1.1.4

Weekly downloads
2
License
AGPL-3.0+
Repository
github
Last release
7 years ago

npm node deps tests bithound bithoundscore nsp-checked

Broid Line Integration

Broid Integrations is an open source project providing a suite of Activity Streams 2 libraries for unified communications among a vast number of communication platforms.

Connect your App to Multiple Messaging Channels with One OpenSource Language.

gitter

Message types supported

SimpleImageVideoButtonsLocationPhone number

Phone number is platform limitation.

Getting started

Connect to Line

import broidLine from 'broid-line'

const line = new broidLine({
  token: "<channel_secret>",
  tokenSecret: "<channel_access_token>",
  username: "<channel_id>"
})

line.connect()
  .subscribe({
    next: data => console.log(data),
    error: err => console.error(`Something went wrong: ${err.message}`),
    complete: () => console.log('complete'),
  })

Options availables

nameTypedefaultDescription
serviceIDstringrandomArbitrary identifier of the running instance
logLevelstringinfoCan be : fatal, error, warn, info, debug, trace
tokenstringYour Channel Secret
tokenSecretstringYour Channel Access Token
usernamestringYour Channel ID
httpobject{ "port": 8080, "http": "0.0.0.0" }WebServer options (host, port)

Good to know

  • The Reply token can be found in object.context
  • In One-one chat, the target object is fill with the actor informations.
  • Image and Video buffer are not supported so the url will be fill with https://buffer_not_supported.broid.ai
  • Because Line doesn't provide informations about the sender in Group, Context. The actor is object is fill with fake informations.
  • Line support only Image, Video https url

Receive a message

line.listen()
  .subscribe({
    next: data => console.log(`Received message: ${data}`),
    error: err => console.error(`Something went wrong: ${err.message}`),
    complete: () => console.log('complete'),
  })

Buttons supported

mediaTypeAction typesContent of value property
text/htmlAction.URIURL to be opened in the built-in browser.
Action.POSTBACKText of message which client will sent back as ordinary chat message.

Post a message

To send a message, the format should use the broid-schemas.

const message_formated = '...'

line.send(message_formated)
  .then(() => console.log("ok"))
  .catch(err => console.error(err))

Examples of messages

Message received

  • A message received from Sally
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "published": 1482903365195,
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "actor": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  },
  "object": {
    "type": "Note",
    "content": "hello world",
    "id": "5415636082312",
    "context": {
      "type": "Object",
      "name": "Reply token",
      "content": "<reply_token>"
    }
  },
  "target": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  }
}
  • A simple message received from a Group/Room
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "published": 1482903365195,
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },  
  "actor": {
    "type": "Person",
    "name": "Broid Ghost",
    "id": "broid_ghost"
  },
  "object": {
    "type": "Note",
    "content": "hello world",
    "id": "5415636082312",
    "context": {
      "type": "Object",
      "name": "Reply token",
      "content": "<reply_token>"
    }
  },
  "target": {
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624",
    "type": "Group"
  }
}
  • A video/image received from Sally
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "published": 1482903365195,
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },  
  "actor": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  },
  "object": {
    "type": "Image",
    "url": "https://buffer_not_supported.broid.ai",
    "id": "5415636082312",
    "context": {
      "type": "Object",
      "name": "Reply token",
      "content": "<reply_token>"
    }
  },
  "target": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  }
}
  • A Sally's location received
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "published": 1482903365195,
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },  
  "actor": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  },
  "object": {
    "type": "Place",
    "latitude": 36.75,
    "longitude": 119.7667,
    "content": "2350 Rue Ontario Est Montréal, QC H2K 1W1",
    "id": "549963611114",
    "context": {
      "type": "Object",
      "name": "Reply token",
      "content": "<reply_token>"
    }
  },
  "target": {
    "type": "Person",
    "name": "Sally",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  }
}

Send a message

  • Send a simple message
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Note",
    "content": "hello world",
    "context": {
      "type": "Object",
      "content": "<reply_token>"
    }    
  },
  "to": {
    "type": "Person",
    "id": "U1a2bb4a2fe413ea1c81ad6310c03d624"
  }
}
  • Send a simple message directly to User, Group or Room
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Note",
    "content": "hello world"
  },
  "to": {
    "type": "Person",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}
  • Send a Image, Video or Location
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Image",
    "url": "https://unsplash.it/200/300"
  },
  "to": {
    "type": "Group",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Place",
    "latitude": 36.75,
    "longitude": 119.7667,
    "content": "2350 Rue Ontario Est Montréal, QC H2K 1W1",
  },
  "to": {
    "type": "Group",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}
  • Send quick reply message
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Note",
    "name": "Hello",
    "content": "hello world",
    "attachment": [{
        "type": "Button",
        "content": "Broid's website",
        "name": "broid",
        "mediaType": "text/html",
        "url": "https://www.broid.ai"
    }, {
        "type": "Button",
        "content": "Falken's Maze",
        "name": "maze",
        "url": "value_maze"
    }]    
  },
  "to": {
    "type": "Group",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}
  • Send a confirm message
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Note",
    "name": "Hello",
    "content": "hello world",
    "attachment": [{
        "type": "Button",
        "content": "Wouldn't you prefer a good game of chess?",
        "name": "maze",
        "url": "value_maze",
        "attachment": {
          "name": "Falken's Maze",
          "content": "Wouldn't you prefer a good game of chess?",
          "yesLabel": "Yes",
          "noLabel": "No"
        }
    }]    
  },
  "to": {
    "type": "Group",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}
  • Send a caroussel
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Create",
  "generator": {
    "id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
    "type": "Service",
    "name": "line"
  },
  "object": {
    "type": "Collection",
    "items": [
      {
        "type": "Image",
        "name": "Product A",
        "content": "a cool product a",
        "url": "https://unsplash.it/200/300",
        "attachment": [{
            "type": "Button",
            "content": "Broid's website",
            "name": "broid",
            "mediaType": "text/html",
            "url": "https://www.broid.ai"
        }, {
            "type": "Button",
            "content": "Add to cart",
            "name": "Add to cart",
            "url": "action=buy&itemid=111"
        }]    
      },
      {
        "type": "Image",
        "name": "Product B",
        "content": "a cool product b",
        "url": "https://unsplash.it/g/200/300",
        "attachment": [{
            "type": "Button",
            "content": "Broid's website",
            "name": "broid",
            "mediaType": "text/html",
            "url": "https://www.broid.ai"
        }, {
            "type": "Button",
            "content": "Add to cart",
            "name": "Buy this product",
            "url": "action=buy&itemid=222"
        }]    
      }      
    ]
  },
  "to": {
    "type": "Person",
    "id": "U1a2ab6a2fe712ea1f81ad6310c03d624"
  }
}

INFO Keep the number of actions consistent for all columns. If you use an image or title for a column, make sure to do the same for all other columns.

Contributing to Broid

Broid is an open source project. Broid wouldn't be where it is now without contributions by the community. Please consider forking Broid to improve, enhance or fix issues. If you feel like the community will benefit from your fork, please open a pull request.

And because we want to do the better for you. Help us improving Broid by sharing your feedback on our Integrations GitHub Repo and let's build Broid together!

Code of Conduct

Make sure that you're read and understand the Code of Conduct.

Copyright & License

Copyright (c) 2016-2017 Broid.ai

This project is licensed under the AGPL 3, which can be found here.