From aa6058e9d14017274497b78c4442b822ca2c9d94 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Thu, 5 Sep 2019 20:53:03 +0000 Subject: [PATCH] [CORL-584] Add Version 5 Documentation (#2523) * feat: initial version * fix: adjusted height * fix: tweaked sidebar styles again * fix: adjusted overflow property * fix: reverted overflow, cleaned sidebar --- docs/_config.yml | 224 ++++++++++-------- docs/package.json | 2 +- docs/public/_redirects | 4 - docs/source/01-01-talk-quickstart.md | 41 ++-- docs/source/version-5-configuration.md | 60 +++++ docs/source/version-5-development.md | 103 ++++++++ docs/source/version-5-installation.md | 118 +++++++++ docs/source/version-5-integrating.md | 134 +++++++++++ docs/themes/coral/layout/partial/sidebar.swig | 62 ++--- docs/themes/coral/source/css/_variables.scss | 68 ++++-- docs/themes/coral/source/css/talk.scss | 121 +++++----- .../coral/source/images/coralproject.png | Bin 3598 -> 33200 bytes docs/themes/coral/source/images/logo.svg | 41 ---- 13 files changed, 699 insertions(+), 279 deletions(-) delete mode 100644 docs/public/_redirects create mode 100644 docs/source/version-5-configuration.md create mode 100644 docs/source/version-5-development.md create mode 100644 docs/source/version-5-installation.md create mode 100644 docs/source/version-5-integrating.md delete mode 100644 docs/themes/coral/source/images/logo.svg diff --git a/docs/_config.yml b/docs/_config.yml index 59704449d..04378724e 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -47,7 +47,7 @@ highlight: # per_page: Posts displayed per page. (0 = disable pagination) # order_by: Posts order. (Order by date descending by default) index_generator: - path: '' + path: "" # Category & Tag default_category: uncategorized @@ -78,112 +78,126 @@ sidebar: - title: Docker url: https://hub.docker.com/r/coralproject/talk/ side: - - title: Installation + - title: Version 5 children: - - title: Talk Quickstart - url: / - - title: Installation from Docker - url: /installation-from-docker/ - - title: Installation from Source - url: /installation-from-source/ - - title: Planning your Talk Architecture - url: /planning-architecture/ - - title: Pre-Launch Checklist - url: /pre-launch-checklist/ - - title: Configuration + - title: Getting Started + children: + - title: Installing + url: / + - title: Configuration + url: /v5/configuration/ + - title: Integration + url: /v5/integrating/ + - title: Developing + url: /v5/developing/ + - title: Version 4 children: - - title: Required Configuration - url: /configuration/ - - title: Advanced Configuration - url: /advanced-configuration/ - - title: Configuration with CLI tools - url: /configuration-cli-tools/ - - title: Integrating - children: - - title: Authentication - url: /integrating/authentication/ - - title: CMS Integration - url: /integrating/cms-integration/ - - title: Asset Scraping - url: /integrating/asset-scraping/ - - title: Configuring the Comment Stream - url: /integrating/configuring-comment-stream/ - - title: Configuring the Admin - url: /integrating/configuring-admin/ - - title: Notifications - url: /integrating/notifications/ - - title: Event Tracking and Metrics - url: /integrating/event-tracking-metrics/ - - title: Styling and CSS - url: /integrating/styling-css/ - - title: Translations and i18n - url: /integrating/translations-i18n/ - - title: GDPR Compliance - url: /integrating/gdpr/ - - title: Accelerated Mobile Page - url: /integrating/amp/ - - title: Product Guide - children: - - title: How Talk Works - url: /how-talk-works/ - - title: Commenter Features - url: /commenter-features/ - - title: Moderator Features - url: /moderator-features/ - - title: User Roles in Talk - url: /roles/ - - title: Trust - url: /trust/ - - title: Toxic Comments - url: /toxic-comments/ - - title: Configuring Talk - url: /configuring-talk/ - - title: Plugins - children: - - title: Plugins Overview - url: /plugins/ - - title: Plugin Directory - url: /plugins-directory/ - - title: Plugin Recipes - url: /plugin-recipes/ - - title: API - children: - - title: GraphQL Overview - url: /api/overview/ - - title: GraphQL Reference - url: /api/graphql/ - - title: Server Plugin API - url: /api/server/ - - title: Client Plugin API - url: /api/client/ - - title: Plugin Slots API - url: /api/slots/ - - title: Tutorials - children: - - title: Creating a Basic Plugin - url: /building-basic-plugin/ - - title: Customizing Plugins with Coral UI - url: /customizing-plugins-coral-ui/ - - title: When You've Installed Talk - url: /when-youve-installed-talk/ - - title: Embedding Talk in Native Mobile Apps - url: /embedding-in-native-mobile-apps/ - - title: Migrating - children: - - title: Migrating from v3.x.x - url: /migration/3/ - - title: Migrating to v4.0.0 - url: /migration/4/ - - title: Migrating to v4.1.0 - url: /migration/4.1/ - - title: FAQ & Troubleshooting - children: - - title: FAQ - url: /faq/ - - title: Troubleshooting Tips - url: /troubleshooting-tips/ - - title: Contact - url: /contact/ + - title: Installation + children: + - title: Talk Quickstart + url: /installation-quickstart + - title: Installation from Docker + url: /installation-from-docker/ + - title: Installation from Source + url: /installation-from-source/ + - title: Planning your Talk Architecture + url: /planning-architecture/ + - title: Pre-Launch Checklist + url: /pre-launch-checklist/ + - title: Configuration + children: + - title: Required Configuration + url: /configuration/ + - title: Advanced Configuration + url: /advanced-configuration/ + - title: Configuration with CLI tools + url: /configuration-cli-tools/ + - title: Integrating + children: + - title: Authentication + url: /integrating/authentication/ + - title: CMS Integration + url: /integrating/cms-integration/ + - title: Asset Scraping + url: /integrating/asset-scraping/ + - title: Configuring the Comment Stream + url: /integrating/configuring-comment-stream/ + - title: Configuring the Admin + url: /integrating/configuring-admin/ + - title: Notifications + url: /integrating/notifications/ + - title: Event Tracking and Metrics + url: /integrating/event-tracking-metrics/ + - title: Styling and CSS + url: /integrating/styling-css/ + - title: Translations and i18n + url: /integrating/translations-i18n/ + - title: GDPR Compliance + url: /integrating/gdpr/ + - title: Accelerated Mobile Page + url: /integrating/amp/ + - title: Product Guide + children: + - title: How Talk Works + url: /how-talk-works/ + - title: Commenter Features + url: /commenter-features/ + - title: Moderator Features + url: /moderator-features/ + - title: User Roles in Talk + url: /roles/ + - title: Trust + url: /trust/ + - title: Toxic Comments + url: /toxic-comments/ + - title: Configuring Talk + url: /configuring-talk/ + - title: Plugins + children: + - title: Plugins Overview + url: /plugins/ + - title: Plugin Directory + url: /plugins-directory/ + - title: Plugin Recipes + url: /plugin-recipes/ + - title: API + children: + - title: GraphQL Overview + url: /api/overview/ + - title: GraphQL Reference + url: /api/graphql/ + - title: Server Plugin API + url: /api/server/ + - title: Client Plugin API + url: /api/client/ + - title: Plugin Slots API + url: /api/slots/ + - title: Tutorials + children: + - title: Creating a Basic Plugin + url: /building-basic-plugin/ + - title: Customizing Plugins with Coral UI + url: /customizing-plugins-coral-ui/ + - title: When You've Installed Talk + url: /when-youve-installed-talk/ + - title: Embedding Talk in Native Mobile Apps + url: /embedding-in-native-mobile-apps/ + - title: Migrating + children: + - title: Migrating from v3.x.x + url: /migration/3/ + - title: Migrating to v4.0.0 + url: /migration/4/ + - title: Migrating to v4.1.0 + url: /migration/4.1/ + - title: FAQ & Troubleshooting + children: + - title: FAQ + url: /faq/ + - title: Troubleshooting Tips + url: /troubleshooting-tips/ + - title: Contact + url: /contact/ marked: gfm: true diff --git a/docs/package.json b/docs/package.json index c6fae4104..464c246bd 100644 --- a/docs/package.json +++ b/docs/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "hexo": { - "version": "3.8.0" + "version": "3.7.1" }, "scripts": { "start": "hexo serve", diff --git a/docs/public/_redirects b/docs/public/_redirects deleted file mode 100644 index df70683ab..000000000 --- a/docs/public/_redirects +++ /dev/null @@ -1,4 +0,0 @@ -/ /talk/ -/talk/reference/server/ /talk/api/server/ -/talk/reference/graphql/ /talk/api/graphql/ -/talk/integrating/asset-management/ /talk/integrating/cms-integration/ diff --git a/docs/source/01-01-talk-quickstart.md b/docs/source/01-01-talk-quickstart.md index e3e95e290..b318666d2 100644 --- a/docs/source/01-01-talk-quickstart.md +++ b/docs/source/01-01-talk-quickstart.md @@ -1,13 +1,13 @@ --- title: Talk Quickstart -permalink: / +permalink: /installation-quickstart/ --- Online comments are broken. Our open-source Talk tool rethinks how moderation, comment display, and conversation function, creating the opportunity for safer, -smarter discussions around your work. +smarter discussions around your work. -More than 60 newsrooms use Talk to run their on-site communities, including the Washington Post, the Wall Street Journal, and IGN. +More than 60 newsrooms use Talk to run their on-site communities, including the Washington Post, the Wall Street Journal, and IGN. [Read more about our product features and goals here](https://coralproject.net/talk). @@ -31,7 +31,7 @@ to persist data. The following versions are supported: - MongoDB 3.2+ - Redis 3.2.5+ -You can run Talk (and its dependencies) locally or from [Docker](https://www.docker.com/community-edition#/download) containers. Docker is used in the local example below for the database and cache, however it is possible to run Talk without Docker by configuring your own MongoDB and Redis instances. We have tested Talk +You can run Talk (and its dependencies) locally or from [Docker](https://www.docker.com/community-edition#/download) containers. Docker is used in the local example below for the database and cache, however it is possible to run Talk without Docker by configuring your own MongoDB and Redis instances. We have tested Talk and this documentation with Docker versions 17.06.2+. An optional dependency for Talk is @@ -44,7 +44,7 @@ and this documentation with versions 1.14.0+. ### Installation from Docker To use Talk without major customization you can run the application using our -provided docker image. +provided docker image. Start by making a new directory and create a file called `docker-compose.yml` and copy the following: @@ -52,7 +52,7 @@ Start by making a new directory and create a file called `docker-compose.yml` an # For details on the syntax of docker-compose.yml files, check out: # https://docs.docker.com/compose/compose-file/compose-file-v2/ -version: '2' +version: "2" services: talk: image: coralproject/talk:4 @@ -89,7 +89,6 @@ volumes: The environment variables listed above are the bare minimum needed to run the demo, for more configuration variables, check out the [Configuration](/talk/configuration/) section. - And you can then start it with: ```bash @@ -121,7 +120,6 @@ redis_1 docker-entrypoint.sh redis ... Up 6379/tcp talk_1 yarn start Up 0.0.0.0:3000->3000/tcp ``` - You now have a Talk instance up and running! Continue on to the [Setup](#setup) section for details on how to complete the initial setup and get started using Talk. @@ -157,7 +155,6 @@ Didn't work? Sometimes you may already have a container running on these ports, run `docker ps` to see what other containers you have running and running `docker stop ` on those containers to stop them. - _This documentation assumes that you will be running MongoDB on `127.0.0.1:27017` and Redis on `127.0.0.1:6379`. The above Docker commands bind MongoDB and Redis on these interfaces for you._ @@ -188,27 +185,26 @@ Continue onto the [Setup](#setup) section for details on how to complete the installation and get started using Talk. ## Setup + ### Create Admin Account With Talk running, you can now navigate to [http://127.0.0.1:3000/admin/install](http://127.0.0.1:3000/admin/install) -and walk through the initial setup steps. +and walk through the initial setup steps. -* First, enter your **Organization Name** and **Organization Contact Email**. This will appear in emails when inviting new team members. -* Next, create your Admin user. You can specify an **Email Address**, **Username**, and **Password** - -* Finally, enter your list of **Permitted Domains**, read [here](/talk/configuring-talk/#permitted-domains) about whitelisting domains +- First, enter your **Organization Name** and **Organization Contact Email**. This will appear in emails when inviting new team members. +- Next, create your Admin user. You can specify an **Email Address**, **Username**, and **Password** +- Finally, enter your list of **Permitted Domains**, read [here](/talk/configuring-talk/#permitted-domains) about whitelisting domains _During development, ensure you whitelist 127.0.0.1:3000 otherwise the [http://127.0.0.1:3000/](http://127.0.0.1:3000/) page will not load._ -Once the setup wizard has been completed you can log into Talk ([http://127.0.0.1:3000/](http://127.0.0.1:3000/)) using the email address and password for the Admin user account that you just created. - -From here you can test out features in Talk, see comments in the admin interface where you can do moderation, and configure the user experience. -In the next step you'll create some user comments to moderate. +Once the setup wizard has been completed you can log into Talk ([http://127.0.0.1:3000/](http://127.0.0.1:3000/)) using the email address and password for the Admin user account that you just created. +From here you can test out features in Talk, see comments in the admin interface where you can do moderation, and configure the user experience. +In the next step you'll create some user comments to moderate. ### Demo Embedded Comments @@ -221,7 +217,7 @@ In order for the demo to work, you must add `https://docs.coralproject.net/` to your permitted domains list. You can do this by visiting [http://127.0.0.1:3000/admin/configure](http://127.0.0.1:3000/admin/configure) -now and selecting *Tech Settings* from the sidebar. +now and selecting _Tech Settings_ from the sidebar. Once you have added the domain of these docs, you can click the button below. @@ -235,13 +231,12 @@ Once you have added the domain of these docs, you can click the button below. With your local instance of Talk running in development mode (env variable `NODE_ENV=development`) you should now also be able to access the following developer routes: -* [http://127.0.0.1:3000/dev](http://127.0.0.1:3000/dev]) provides a sample comment stream +- [http://127.0.0.1:3000/dev](http://127.0.0.1:3000/dev]) provides a sample comment stream -* [http://127.0.0.1:3000/dev/assets](http://127.0.0.1:3000/dev/assets]) provides a list of all stories in Talk and can generate new sample assets +- [http://127.0.0.1:3000/dev/assets](http://127.0.0.1:3000/dev/assets]) provides a list of all stories in Talk and can generate new sample assets ### Conclusion + At this point you've successfully installed, configured, and ran your very own instance of Talk! Continue through this documentation on this site to learn more on how to configure, develop with, and contribute to Talk! - - diff --git a/docs/source/version-5-configuration.md b/docs/source/version-5-configuration.md new file mode 100644 index 000000000..e128a981e --- /dev/null +++ b/docs/source/version-5-configuration.md @@ -0,0 +1,60 @@ +--- +title: Configuring Version 5 +permalink: /v5/configuration/ +--- + +The following environment variables can be set to configure the Coral Server. You +can expose them in your shell via `export NODE_ENV=development` or by placing +the variables in a `.env` file in the root of the project in a simple +`NODE_ENV=development` format delimited by newlines. + +- `NODE_ENV` - Can be one of `production` or `development`. All production + deployments should use `production`. Defaults to `production` when ran with + `npm run start` and `development` when run with `npm run start:development`. +- `PORT` - The port to listen for HTTP and Websocket requests. (Default `3000`) +- `MONGODB_URI` - The MongoDB database URI to connect to. + (Default `mongodb://127.0.0.1:27017/coral`) +- `REDIS_URI` - The Redis database URI to connect to. + (Default `redis://127.0.0.1:6379`) +- `REDIS_OPTIONS` - A JSON string with optional configuration options to be used + when connecting to Redis as specified in the [ioredis](https://github.com/luin/ioredis/blob/1dac50a63753c2afc969315cfe38faf0edc50bc5/API.md#new_Redis_new) documentation. + (Default: `{}`) +- `SIGNING_SECRET` - The shared secret to use to sign JSON Web Tokens (JWT) with + the selected signing algorithm. 🚨 **Don't forget to set this variable!** 🚨 + (Default: `keyboard cat`) +- `SIGNING_ALGORITHM` - The signing algorithm to use for signing JWT's. + (Default `HS256`). +- `LOGGING_LEVEL` - The logging level that can be set to one of `fatal`, + `error`, `warn`, `info`, `debug`, or `trace`. (Default `info`) +- `STATIC_URI` - The URI that static assets can be accessed from. This URI can + be to a proxy that uses this Coral server on `PORT` as the upstream. Disabled + by default. +- `DISABLE_TENANT_CACHING` - When `true`, all tenants will be loaded from the + database when needed rather than keeping a in-memory copy in sync via + published events on Redis. (Default `false`) +- `DISABLE_MONGODB_AUTOINDEXING` - When `true`, Coral will not perform indexing + operations when it starts up. This can be desired when you've already + installed Coral on the target MongoDB, but want to improve start performance. + **You should not use this parameter unless you know what you're doing! Upgrades + may introduce additional indexes that the application relies on.** + (Default `false`) +- `LOCALE` - Specify the default locale to use for all requests without a locale + specified. (Default `en-US`) +- `ENABLE_GRAPHIQL` - When `true`, it will enable the `/graphiql` even in + production, use with care. (Default `false`) +- `CONCURRENCY` - The number of worker nodes to spawn to handle web traffic, + this should be tied to the number of CPU's available. (Default + `os.cpus().length`) +- `DEV_PORT` - The port where the Webpack Development server is running on. + (Default `8080`) +- `METRICS_USERNAME` - The username for _Basic Authentication_ at the `/metrics` and `/cluster_metrics` + endpoint. +- `METRICS_PASSWORD` - The password for _Basic Authentication_ at the `/metrics` and `/cluster_metrics` + endpoint. +- `CLUSTER_METRICS_PORT` - If `CONCURRENCY` is more than `1`, the metrics are provided at this port under `/cluster_metrics`. (Default `3001`) +- `DISABLE_LIVE_UPDATES` - When `true`, disables subscriptions for the comment + stream for all stories across all tenants (Default `false`) +- `WEBSOCKET_KEEP_ALIVE_TIMEOUT` - A duration in a parsable format (e.g. `30 seconds` + , `1 minute`) that should be used to send keep alive messages through the + websocket to keep the socket alive (Default `30 seconds`) +- `TRUST_PROXY` - When provided, it configures the "trust proxy" settings for Express (See https://expressjs.com/en/guide/behind-proxies.html) diff --git a/docs/source/version-5-development.md b/docs/source/version-5-development.md new file mode 100644 index 000000000..3e47dff6b --- /dev/null +++ b/docs/source/version-5-development.md @@ -0,0 +1,103 @@ +--- +title: Developing +permalink: /v5/developing/ +--- + +Running Coral for development is very similar to installing Coral via Source as +described above. + +Coral requires NodeJS >=10, we recommend using `nvm` to help manage node +versions: https://github.com/creationix/nvm. + +```bash +# Clone and cd into the Coral directory. +git clone https://github.com/coralproject/talk.git +cd talk + +# Install dependencies. +npm install +``` + +Running Coral with default settings assumes that you have: + +- MongoDB >=3.6 running on `127.0.0.1:27017` +- Redis >=3.2 running on `127.0.0.1:6379` + +If you don't already have these databases running, you can execute the following +assuming you have Docker installed on your local machine: + +```bash +docker run -d -p 27017:27017 --restart always --name mongo mongo:3.6 +docker run -d -p 6379:6379 --restart always --name redis redis:3.2 +``` + +We recommend installing [watchman](https://facebook.github.io/watchman/docs/install.html) for better watch +performance. + +```bash +# On macOS, you can run the following with Homebrew. +brew update +brew install watchman +``` + +Then start Coral with: + +```bash +# Run the server in development mode in order to facilitate auto-restarting and +# rebuilding when file changes are detected. This might take a while to fully run. +npm run watch +``` + +When the client code has been built, navigate to http://localhost:8080/install +to start the installation wizard. **Note: Ensure `localhost:8080` is used in the permitted domains list.** + +To see the comment stream goto http://localhost:8080/. + +To run linting and tests use the following commands: + +```bash +# Run the linters. +npm run lint + +# Run our unit and integration tests. +npm run test +``` + +## Email + +To test out the email sending functionality, you can run [inbucket](https://www.inbucket.org/) +which provides a test SMTP server that can visualize emails in the browser: + +```bash +docker run -d --name inbucket --restart always -p 2500:2500 -p 9000:9000 inbucket/inbucket +``` + +You can then configure the email server on Coral +by setting the email settings in +`Configure -> Email` in the admin: + +| Field | Value | +| -------------- | -------------------- | +| From Address | `community@test.com` | +| Secure | `No` | +| Host | `localhost` | +| Port | `2500` | +| Authentication | `No` | + +Navigate to http://localhost:9000, click the "Monitor" tab. New emails received +on this screen. + +## Design Language System (UI Components) + +We use [docz](https://docz.site) to document and develop our Design Language System. To start docz run: + +```bash +# Make sure CSS types are generated. +# This is not required when `npm run watch` is already running. +npm run generate:css-types + +# Run docz in development. +npm run docz -- dev +``` + +After compilation has finished you can access docz at http://localhost:3030/. diff --git a/docs/source/version-5-installation.md b/docs/source/version-5-installation.md new file mode 100644 index 000000000..1a600c188 --- /dev/null +++ b/docs/source/version-5-installation.md @@ -0,0 +1,118 @@ +--- +title: Installing Version 5 +permalink: / +--- + +Online comments are broken. Our open-source commenting platform, Coral, rethinks +how moderation, comment display, and conversation function, creating the +opportunity for safer, smarter discussions around your work. +[Read more about Coral here](https://coralproject.net/talk). + +Built with ❤️ by The Coral Project, a part of [Vox Media](https://product.voxmedia.com/). + +Preview Coral easily by running Coral via a Heroku App: + +[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/coralproject/talk/tree/next) + +## Requirements + +- MongoDB >=3.6 +- Redis >=3.2 +- NodeJS >=10 +- NPM >=6.7 + +## Running + +You can install Coral using Docker or via Source. We recommend Docker, as it +provides the easiest deployment solution going forward, as all the dependencies +are baked and shipped with the provided +[coralproject/talk:next](https://hub.docker.com/r/coralproject/talk) image. +When v5 releases to master, you'll be able to select it using +`coralproject/talk:5`. + +### Docker + +The easiest way to get started with Coral is through our published Docker image +and provided example `docker-compose.yml` file. The following assumes that you +have Docker and Docker Compose installed on your local machine: + +- Install Docker: https://docs.docker.com/install/ +- Install Docker Compose: https://docs.docker.com/compose/install/ (this is typically included in the Docker Desktop editions already) + +```bash +# Create directories to persist the data in MongoDB and Redis. +mkdir -p data/{mongo,redis} + +# Create the `docker-compose.yml` file to get started. +cat > docker-compose.yml < + mongo: + image: mongo:3.6 + volumes: + - ./data/mongo:/data/db + redis: + image: redis:3.2 + volumes: + - ./data/redis:/data +EOF + +# Start up Coral using Docker. +docker-compose up -d +``` + +Then head on over to http://localhost:3000 to install Coral! + +### Source + +Coral requires NodeJS >=10, we recommend using `nvm` to help manage node +versions: https://github.com/creationix/nvm. + +```bash +# Clone and cd into the Coral directory. +git clone https://github.com/coralproject/talk.git +cd talk + +# Install dependencies. +npm install + +# Build the application dependencies. +# This might take a while. +npm run build +``` + +This should output all the compiled application code to `./dist`. + +Running Coral with default settings assumes that you have: + +- MongoDB >=3.6 running on `127.0.0.1:27017` +- Redis >=3.2 running on `127.0.0.1:6379` + +If you don't already have these databases running, you can execute the following +assuming you have Docker installed on your local machine: + +```bash +docker run -d -p 27017:27017 --restart always --name mongo mongo:3.6 +docker run -d -p 6379:6379 --restart always --name redis redis:3.2 +``` + +Then start Coral with: + +```bash +# Start the server in production mode. +npm run start +``` + +Then head on over to http://localhost:3000 to install Coral! diff --git a/docs/source/version-5-integrating.md b/docs/source/version-5-integrating.md new file mode 100644 index 000000000..b4b0ee511 --- /dev/null +++ b/docs/source/version-5-integrating.md @@ -0,0 +1,134 @@ +--- +title: Integrating on your site +permalink: /v5/integrating/ +--- + +## Embed On Your Site + +With Coral setup and running locally you can test embeding the comment stream with this sample embed script: + +``` +
+ +``` + +> **NOTE:** Replace the value of `{{ CORAL_DOMAIN_NAME }}` with the location of your running instance of Coral. + +## Single Sign On + +In order to allow seamless connection to an existing authentication system, +Coral utilizes the industry standard [JWT Token](https://jwt.io/) to connect. To +learn more about how to create a JWT token, see [this introduction](https://jwt.io/introduction/). + +1. Visit: `https://{{ CORAL_DOMAIN_NAME }}/admin/configure/auth` +2. Scroll to the `Login with Single Sign On` section +3. Enable the Single Sign On Authentication Integration +4. Enable `Allow Registration` +5. Copy the string in the `Key` box +6. Click Save + +> **NOTE:** Replace the value of `{{ CORAL_DOMAIN_NAME }}` with the location of your running instance of Coral. + +You will then have to generate a JWT with the following claims: + +- `jti` (_optional_) - A unique ID for this particular JWT token. We recommend + using a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier) + for this value. Without this parameter, the logout functionality inside the + embed stream will not work and you will need to call logout on the embed + itself. +- `exp` (_optional_) - When the given SSO token should expire. This is + specified as a unix time stamp in seconds. Once the token has expired, a new + token should be generated and passed into Coral. Without this parameter, the + logout functionality inside the embed stream will not work and you will need + to call logout on the embed itself. +- `iat` (_optional_) - When the given SSO token was issued. This is required to + utilize the automatic user detail update system. If this time is newer than + the time we received the last update, the contents of the token will be used + to update the user. +- `user.id` (**required**) - the ID of the user from your authentication system. + This is required to connect the user in your system to allow a seamless + connection to Coral. +- `user.email` (**required**) - the email address of the user from your + authentication system. This is required to facilitate notification email's + about status changes on a user account such as bans or suspensions. +- `user.username` (**required**) - the username that should be used when being + presented inside Coral to moderators and other users. +- `user.badges` (_optional_) - array of strings to be displayed as badges beside + username inside Coral, visible to other users and moderators. For example, to indicate + a user's subscription status. +- `user.role` (_optional_) - one of "COMMENTER", "STAFF", "MODERATOR", "ADMIN". Will create/update + Coral user with this role. + +An example of the claims for this token would be: + +```json +{ + "jti": "151c19fc-ad15-4f80-a49c-09f137789fbb", + "exp": 1572172094, + "iat": 1562172094, + "user": { + "id": "628bdc61-6616-4add-bfec-dd79156715d4", + "email": "bob@example.com", + "username": "bob" + } +} +``` + +With the claims provided, you can sign them with the `Key` obtained from the +Coral administration panel in the previous steps with a `HS256` algorithm. This +token can be provided in the above mentioned embed code by adding it to the +`createStreamEmbed` function: + +```js +Coral.createStreamEmbed({ + // Don't forget to include the parameters from the + // "Embed On Your Site" section. + accessToken: "{{ SSO_TOKEN }}" +}); +``` + +Or by calling the `login/logout` method on the embed object: + +```js +var embed = Coral.createStreamEmbed({ + // Don't forget to include the parameters from the + // "Embed On Your Site" section. +}); + +// Login the current embed with the generated SSO token. +embed.login("{{ SSO_TOKEN }}"); + +// Logout the user. +embed.logout(); +``` + +### SSO Login Prompts + +In order to handle login prompts (e.g. a user clicks on the sign in button) you can listen to the `loginPrompt` event. + +```js +var embed = Coral.createStreamEmbed({ + // Don't forget to include the parameters from the + // "Embed On Your Site" section. + events: function(events) { + events.on("loginPrompt", function() { + // Redirect user to a login page. + location.href = "http://example.com/login"; + }); + } +}); +``` diff --git a/docs/themes/coral/layout/partial/sidebar.swig b/docs/themes/coral/layout/partial/sidebar.swig index 03088a24a..3f85bd4f3 100644 --- a/docs/themes/coral/layout/partial/sidebar.swig +++ b/docs/themes/coral/layout/partial/sidebar.swig @@ -1,35 +1,35 @@ diff --git a/docs/themes/coral/source/css/_variables.scss b/docs/themes/coral/source/css/_variables.scss index f2381924f..131215174 100644 --- a/docs/themes/coral/source/css/_variables.scss +++ b/docs/themes/coral/source/css/_variables.scss @@ -1,21 +1,59 @@ -$coral_orange: #f67150; +// Palate +$coral_orange: rgb(245, 100, 85); +$coral_dark_blue: rgb(19, 28, 84); +$coral_light_blue: rgb(83, 192, 191); +$coral_light_gray: rgb(238, 238, 238); +$coral_dark_gray: rgb(46, 56, 61); +$coral_success: rgb(35, 131, 53); +$coral_error: rgb(208, 48, 53); + +// Variables + +// // Sidebar + $sidebar_width: 320px; -$sidebar_background: $coral_orange; -$sidebar_color: white; +$sidebar_background: white; +$sidebar_color: black; $sidebar_gutter: 35px; + +// // Layout + $content_gutter: 40px; $header_padding_bottom: $content_gutter; $breakpoint: 960px; -$hljs_string_color: $coral_orange; -$code_background: #F0F0F0; -$code_border: 1px solid darken($code_background, 10%); -$copy_button_background: white; -$coral_button_background: $coral_orange; -$coral_button_border: darken($coral_button_background, 5%); -$demo_border: lighten($coral_button_border, 30%); -$coral_button_border_color: $coral_orange; + +// // Code + +$hljs_string_color: $coral_light_blue; +$code_background: $coral_light_gray; +$code_border: 0; +$copy_button_color: white; +$copy_button_background: $coral_light_blue; + +// // Call out + +$callout_color: white; +$callout_background: $coral_dark_blue; +$callout_link_color: darken($callout_color, 20%); +$callout_link_hover_color: darken($callout_link_color, 5%); + +// // Buttons + +$coral_button_background: $coral_light_blue; $coral_button_color: black; -$coral_button_hover_color: $coral_button_border_color; -$coral_button_invert_border_color: lighten($coral_button_border_color, 20%); -$coral_button_invert_color: white; -$coral_button_invert_hover_color: $coral_button_invert_border_color; \ No newline at end of file +$coral_button_hover_color: darken($coral_button_background, 5%); +$coral_button_invert_color: $coral_dark_gray; +$coral_button_invert_hover_color: lighten($coral_button_invert_color, 20%); + +// // Search + +$algolia_suggestion_highlight_color: $coral_light_blue; +$algolia_suggestion_highlight_background: fade-out( + $algolia_suggestion_highlight_color, + 0.9 +); + +// // Navigation + +$header_nav_link_color: $coral_dark_gray; +$header_nav_icon_color: $coral_dark_gray; diff --git a/docs/themes/coral/source/css/talk.scss b/docs/themes/coral/source/css/talk.scss index 10b2951f3..b3e387bff 100644 --- a/docs/themes/coral/source/css/talk.scss +++ b/docs/themes/coral/source/css/talk.scss @@ -3,7 +3,7 @@ @import "hljs"; body { - font-family: 'Open Sans'; + font-family: "Open Sans"; font-style: normal; font-variant: normal; font-weight: 400; @@ -58,31 +58,20 @@ h4 { font-weight: 500; } -.btn-coral { - color: white; - background: $coral_button_background; - border: 1px solid $coral_button_border; - - &:hover { - color: white; - cursor: pointer; - background: darken($coral_button_background, 5%); - border-color: darken($coral_button_border, 5%); - } -} - .param { - font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", + monospace; } article.configuration { - h2, .toc { + h2, + .toc { @extend .param; } } .suggest-edits { - padding: .20rem .5rem; + padding: 0.2rem 0.5rem; } /** @@ -91,14 +80,14 @@ article.configuration { .demo { background: $coral_orange; - border: 1px solid $demo_border; overflow: hidden; margin: 0 auto; padding: 0; margin-bottom: 1rem; max-width: 650px; - .btn, .alert { + .btn, + .alert { border: none; border-radius: 0; margin: 0; @@ -109,7 +98,6 @@ article.configuration { } .mount { - border-top: 1px solid $demo_border; display: none; background: white; padding: 10px; @@ -123,6 +111,7 @@ article.configuration { background: $copy_button_background; padding: 3px 10px; border: $code_border; + color: $copy_button_color; &:hover { background: darken($copy_button_background, 10%); @@ -142,7 +131,6 @@ pre { color: #212529; position: relative; - & > code { display: block; overflow-x: auto; @@ -196,8 +184,8 @@ pre { left: 0 !important; .algolia-docsearch-suggestion--highlight { - color: $coral_orange; - background: fade-out($coral_orange, 0.9); + color: $algolia_suggestion_highlight_color; + background: $algolia_suggestion_highlight_background; } .ds-dropdown-menu { @@ -207,7 +195,7 @@ pre { // Hide the carrot. &:before { - display: none + display: none; } // Fix for smaller screens. @@ -215,7 +203,6 @@ pre { min-width: 200px; } } - } &.header--toggled { @@ -232,7 +219,7 @@ pre { display: inline-block; text-align: center; margin-left: 15px; - color: $coral_orange; + color: $header_nav_link_color; white-space: nowrap; & > svg { @@ -240,12 +227,12 @@ pre { width: 20px; rect { - fill: $coral_orange; + fill: $header_nav_icon_color; } } &:hover { - color: darken($coral_orange, 10%); + color: darken($header_nav_icon_color, 10%); } } } @@ -262,7 +249,6 @@ pre { } .coral-link { - border-bottom: 1px solid $coral_button_border_color; color: $coral_button_color; text-decoration: none; @@ -274,7 +260,6 @@ pre { .coral-link-invert { @extend .coral-link; - border-color: $coral_button_invert_border_color; color: $coral_button_invert_color; &:hover { @@ -310,6 +295,7 @@ a.brand { padding: $sidebar_gutter; color: #fff; text-decoration: none; + min-height: 90px; h2 { margin: 0; @@ -328,15 +314,9 @@ a.brand { font-weight: 500; } - .logo { + img { vertical-align: middle; - height: 50px; - width: 50px; - @include transition(all, 250ms); - - &:hover { - @include transform(rotate(8deg)); - } + width: 100%; } } @@ -358,6 +338,9 @@ a.brand { color: $sidebar_color; height: 100%; position: fixed; + display: flex; + justify-content: space-between; + flex-direction: column; top: 0; left: 0; z-index: 2; @@ -369,7 +352,7 @@ a.brand { @media (max-width: $breakpoint) { &.sidebar--toggled { @include transform(translate3d(0, 0, 0)); - box-shadow: 0 0 30px rgba(0,0,0,0.3); + box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); z-index: 3; } } @@ -382,26 +365,49 @@ a.brand { padding: 0px; } - .notice { - padding: $sidebar_gutter $sidebar_gutter 0; - color: fade-out($sidebar_color, 0.5); - } - .sidebar__section { list-style: none; border-bottom: 1px solid lighten($sidebar_background, 3%); - &.active { - .sidebar__header { - background-color: darken($sidebar_background, 2%); - } - } - &.toggled { + & > .sidebar__header { + background: darken($sidebar_background, 10%); + // color: white; + } + + .sidebar__subsection { + display: block; + } + .sidebar__links { display: block; } } + + &.active { + & > .sidebar__header { + background: darken($sidebar_background, 30%); + } + } + } + + .sidebar__subsection { + display: none; + } + + .sidebar__subsection { + list-style: none; + + &.active { + & > .sidebar__header { + color: fade-out($sidebar_color, 0.3); + background-color: darken($sidebar_background, 2%); + } + } + } + + .sidebar__headers { + padding: 0; } a.sidebar__header { @@ -425,7 +431,6 @@ a.brand { overflow-y: hidden; & > li { - & > a { display: block; padding: 6px $sidebar_gutter; @@ -438,11 +443,11 @@ a.brand { } &.active > a { - color: fade-out($sidebar_color, 0.3); + color: fade-out($sidebar_color, 0.2); } &.active { - background: darken($sidebar_background, 5%); + background: darken($sidebar_background, 1%); } } } @@ -467,20 +472,18 @@ a.brand { } .callout { - background-color: $coral_button_background; - color: white; + background-color: $callout_background; + color: $callout_color; margin: 20px 0; padding: 20px; text-align: center; a { @extend .coral-link; - color: #FFF; - border-color: #FFF; + color: $callout_link_color; &:hover { - color: #FFF; - border-color: darken(#FFF, 5%); + color: $callout_link_hover_color; } } } diff --git a/docs/themes/coral/source/images/coralproject.png b/docs/themes/coral/source/images/coralproject.png index 886aeac189a495a0c459017de0287a521cd608b3..079e724d9b6a69ebfbc5db5441bb3a41ab89d9d8 100644 GIT binary patch literal 33200 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 L1+f|t!@&Os3Zj&` literal 3598 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 diff --git a/docs/themes/coral/source/images/logo.svg b/docs/themes/coral/source/images/logo.svg deleted file mode 100644 index 5eda0c205..000000000 --- a/docs/themes/coral/source/images/logo.svg +++ /dev/null @@ -1,41 +0,0 @@ - \ No newline at end of file