Git Product home page Git Product logo

resolver's Introduction

#Resolver Build Status

The Resolver is a microservice that you can run in your own infrastructure or hosted by us, resposible for delivering all neccesary data to the SDKs in order for them to map a beacon the the attached content.

The Resolver runs standalone as a Spring boot application.

Simply run

./gradlew run

to have your own instance.

#Dependencies

Only an instance of elastic search needs to be available on your machine, or available to your machine.

brew install elasticsearch
elasticsearch --config=/usr/local/opt/elasticsearch/config/elasticsearch.yml
[1990-01-01 00:00:59,300][INFO ][node                     ] [Deacon Frost] version[1.5.1], pid[49391], build[5e38401/2015-04-09T13:41:35Z]
[1990-01-01 00:00:59,300][INFO ][node                     ] [Deacon Frost] initializing ...
[1990-01-01 00:00:59,305][INFO ][plugins                  ] [Deacon Frost] loaded [], sites []
[1990-01-01 00:00:01,614][INFO ][node                     ] [Deacon Frost] initialized
[1990-01-01 00:00:01,615][INFO ][node                     ] [Deacon Frost] starting ...
[1990-01-01 00:00:01,678][INFO ][transport                ] [Deacon Frost] bound_address {inet[/127.0.0.1:9300]}, publish_address {inet[/127.0.0.1:9300]}
[1990-01-01 00:00:01,693][INFO ][discovery                ] [Deacon Frost] elasticsearch_brew/Me5IaghuRIqvbuoohcb4fQ
[1990-01-01 00:00:05,470][INFO ][cluster.service          ] [Deacon Frost] new_master [Deacon Frost][Me5IaghuRIqvbuoohcb4fQ][retina-volker-book.local][inet[/127.0.0.1:9300]], reason: zen-disco-join (elected_as_master)
[1990-01-01 00:00:05,491][INFO ][http                     ] [Deacon Frost] bound_address {inet[/127.0.0.1:9200]}, publish_address {inet[/127.0.0.1:9200]}
[1990-01-01 00:00:05,491][INFO ][node                     ] [Deacon Frost] started

You might need to change the connection string in the Resolver in /src/main/resources/application.properties

elasticsearch.connectionString=http://localhost:9300/elasticsearch_brew
spring.jackson.date-format=com.fasterxml.jackson.databind.util.ISO8601DateFormat
apiKey.largeCompany=10000

The name of the cluster, when installing from brew is elasticsearch_brew

#Standalone

Once build, the jar artifact can be run standalone. java -jar service-resolve.jar and off you go!

 ./gradlew build
:compileJava UP-TO-DATE
:compileGroovy UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar
:bootRepackage
:assemble
:compileTestJava UP-TO-DATE
:compileTestGroovy
:processTestResources UP-TO-DATE
:testClasses
:test
:check
:build

BUILD SUCCESSFUL

Total time: 7.354 secs
โžœ  service-resolve git:(master) java -jar build/libs/service-resolve.jar

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.2.2.RELEASE)
 [...]

#API endpoints:

For a full list, visit our readme.io live API page

To get started quickly, here is a list of the most important endpoints:

##GET /ping ###return value: Get stats about the running service

{
    "version": null,
    "beacon": 0,
    "action": 0,
    "application": 0,
    "syncApplications": 0,
    "synchronizationLog": 0,
    "monitoringLog": 0,
    "layoutLog": 0
}

##POST /synchronizations Setup a synchronization configuration. The resolver will keep in sync with your changes. ###headers

{
    "content-type" : "application/json"
}

###body

{
    "id": "choose an ID or send null and one will be generated",
    "url": "https://connect.sensorberg.com/api/synchronizations/852d6a72cb8980ddadf0355ece37fa1c90ac9359b6ffc6accb47847f43eaf904",
    "backchannelUrl" : "https://connect.sensorberg.com/api/beacon/resolve/_bulk"               
}

With your apiKey from manage.sensorberg.com/#/applications ###return value

{
    "id": "choose an ID or send null and one will be generated",
    "url": "https://connect.sensorberg.com/api/synchronizations/852d6a72cb8980ddadf0355ece37fa1c90ac9359b6ffc6accb47847f43eaf904",
    "backchannelUrl" : "https://connect.sensorberg.com/api/beacon/resolve/_bulk"               
}

##GET /synchronizations Get a list of all the synchronizations that are set up for this host: ###return value:

[
    {
        "id": "foo",
        "url": "https://connect.sensorberg.com/api/synchronizations/852d6a72cb8980ddadf0355ece37fa1c90ac9359b6ffc6accb47847f43eaf904",
        "backchannelUrl" : "https://connect.sensorberg.com/api/beacon/resolve/_bulk"               
    }
]

##GET /layout Return the beacon layout for the api key ###headers:

{
    "X-Api-Key" : "852d6a72cb8980ddadf0355ece37fa1c90ac9359b6ffc6accb47847f43eaf904"
}

###return value

{
     "accountProximityUUIDs": [
         "7367672374000000ffff0000ffff0000"
     ],
     "actions": [
         {
             "eid": "2dbef6d02726416bbc392f6d69356306",
             "trigger": 1,
             "beacons": [
                 "7367672374000000ffff0000ffff00004845852108"
             ],
             "supressionTime": -1,
             "content": {
                 "body": "World",
                 "payload": null,
                 "subject": "Hello",
                 "url": "http://developer.sensorberg.com"
             },
             "type": 1,
             "timeframes": [
                 {
                     "start": "2015-04-14T14:19:37Z"
                 }
             ],
             "sendOnlyOnce": false,
             "typeString": "notification"
         }
     ]
}

If you want to use your own resolver in your owm application with the Android SDK add this line to your AndroidManifest.xml:

<meta-data
    android:name="com.sensorberg.sdk.resolverURL"
    android:value="http://<your-ip-address>:8080/layout" />

#Licence

The MIT License (MIT)

Copyright (c) 2015 Sensorberg GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

resolver's People

Contributors

watsonvon avatar falkorichter avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.