Giter Site home page Giter Site logo

tc-notifications's Introduction

TOPCODER NOTIFICATIONS SERIES - NOTIFICATIONS SERVER

Dependencies

Configuration

Notification server

Configuration for the notification server is at config/default.js. The following parameters can be set in config files or in env variables:

  • General
    • LOG_LEVEL: the log level
    • PORT: the notification server port
    • DATABASE_URL: URI to PostgreSQL database
    • DATABASE_OPTIONS: database connection options
  • JWT authentication
    • AUTH_SECRET: TC auth secret
    • VALID_ISSUERS: TC auth valid issuers
    • JWKS_URI: TC auth JWKS URI (need only for local deployment)
  • KAFKA
    • KAFKA_URL: comma separated Kafka hosts
    • KAFKA_TOPIC_IGNORE_PREFIX: ignore this prefix for topics in the Kafka
    • KAFKA_GROUP_ID: Kafka consumer group id
    • KAFKA_CLIENT_CERT: Kafka connection certificate, optional; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to certificate file or certificate content
    • KAFKA_CLIENT_CERT_KEY: Kafka connection private key, optional; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to private key file or private key content
  • Topcoder API
    • TC_API_V5_BASE_URL: the TopCoder API V5 base URL
  • Notifications API
    • API_CONTEXT_PATH: path to serve API on
  • Machine to machine auth0 token
    • AUTH0_URL: auth0 URL
    • AUTH0_AUDIENCE: auth0 audience
    • TOKEN_CACHE_TIME: time period of the cached token
    • AUTH0_CLIENT_ID: auth0 client id
    • AUTH0_CLIENT_SECRET: auth0 client secret

Connect notification server

Configuration for the connect notification server is at connect/config.js. The following parameters can be set in config files or in env variables:

  • Topcoder API
    • TC_API_V3_BASE_URL: the TopCoder API V3 base URL
    • TC_API_V4_BASE_URL: the TopCoder API V4 base URL
    • MESSAGE_API_BASE_URL: the TopCoder message service API base URL
  • Topcder specific
    Also it has probably temporary variables of TopCoder role ids for 'Connect Manager', 'Connect Copilot' and 'administrator':
    • CONNECT_MANAGER_ROLE_ID: 8,
    • CONNECT_COPILOT_ROLE_ID: 4,
    • ADMINISTRATOR_ROLE_ID: 1
      Provided values are for development backend. For production backend they may be different. These variables are currently being used to retrieve above role members using API V3 /roles endpoint. As soon as this endpoint is replaced with more suitable one, these variables has to be removed if no need anymore.
    • TCWEBSERVICE_ID - id of the BOT user which creates post with various events in discussions
  • Machine to machine auth0 token
    • AUTH0_URL: auth0 URL
    • AUTH0_AUDIENCE: auth0 audience
    • TOKEN_CACHE_TIME: time period of the cached token
    • AUTH0_CLIENT_ID: auth0 client id
    • AUTH0_CLIENT_SECRET: auth0 client secret
  • Email notification service
    • ENV: environment variable (used to generate reply emails)
    • AUTH_SECRET: auth secret (used to sign reply emails)
    • ENABLE_EMAILS: if email service has to be enabled
    • ENABLE_DEV_MODE: send all emails to the DEV_MODE_EMAIL email address
    • DEV_MODE_EMAIL: address to send all email when ENABLE_DEV_MODE is enabled
    • MENTION_EMAIL: recipient email used for notifications.action.email.connect.project.post.mention event
    • REPLY_EMAIL_PREFIX: prefix of the genereated reply email address
    • REPLY_EMAIL_DOMAIN: email domain
    • DEFAULT_REPLY_EMAIL: default reply to email address, for example [email protected]

Note that the above two configuration are separate because the common notification server config will be deployed to a NPM package, the connect notification server will use that NPM package, the connection notification server should only use API exposed by the index.js.

JWT Token Generation

JWT token can be generated using the script test/token.js, its usage: node test/token {user-id}. Then use the generated token to manage the user's notifications.

In the Postman bus API, the Post Connect event will create a Kafka event of project id 1936; In the Postman notification server API, the TC API - get project will get details of project id 1936, we can see the project has one member of user id 305384; so we can run node test/token 305384 to generate a token to manage notifications of the user of id 305384.

The generated token is already configured in the Postman notification server API environment TOKEN variable. You may reuse it during review.

Local deployment

  • for local development environment you can set variables as following:
    • AUTH_SECRET,VALID_ISSUERS can get from tc-project-service config
    • PORT=4000 because connect-app call this port by default
    • KAFKA_TOPIC_IGNORE_PREFIX=joan-26673. (with point at the end)
    • TC_API_V4_BASE_URL=https://api.topcoder-dev.com/v4
    • TC_API_V3_BASE_URL=https://api.topcoder-dev.com/v3
    • KAFKA_URL, KAFKA_CLIENT_CERT and KAFKA_CLIENT_CERT_KEY get from tc-bus-api readme
  • if you are willing to use notifications API which is hosted by the notifications server locally, you will need to use some patched tc-core-library-js module, which skips verification of user token. Because we don't know Topcoder AUTH_SECRET locally. So you can install this fork:
    npm i https://github.com/maxceem/tc-core-library-js/tree/skip-validation
    
    WARNING do not push package.json with this dependency as it skips users token validation.
  • start local PostgreSQL db, create an empty database, update the config/default.js DATABASE_URL param to point to the db
  • install dependencies npm i
  • run code lint check npm run lint
  • start connect notification server npm start
  • the app is running at http://localhost:4000, it also starts Kafka consumer to listen for events and save unroll-ed notifications to db

Heroku deployment

  • git init
  • git add .
  • git commit -m 'message'
  • heroku login
  • heroku create [application-name] // choose a name, or leave it empty to use generated one
  • heroku addons:create heroku-postgresql:hobby-dev
  • note that you may need to wait for several minutes before the PostgreSQL database is ready
  • optionally, to set some environment variables in heroku, run command like: heroku config:set KAFKA_CLIENT_CERT=path/to/certificate/file heroku config:set KAFKA_CLIENT_CERT_KEY=path/to/private/key/file heroku config:set KAFKA_GROUP_ID=some-group etc.
  • git push heroku master // push code to Heroku

Verification

  • start the app following above sections
  • note that if you use the Heroku app, the app may be in sleep after some long idle time, you need to call any Postman test, e.g. the listNotifications test, so that the app wakes up, during wake up, the Heroku PostgreSQL database will be cleared and re-initialized
  • in Postman, using the bus API collection and environment, run the POST /events / Post event - XXX tests, you may run it multiple times to create multiple events in Kafka, then you may watch the console output in the app, it should show info about handling the events
  • in Postman, using the notification server API collection and environment, run the tests

Swagger

Swagger API definition is provided at docs/swagger_api.yaml, you may check it at http://editor.swagger.io.

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.