GraphQL API server for clients like rumors-site and rumors-line-bot
117
stars
1,654
commits
JavaScript
primary language
Sep 9, 2026
updated
GraphQL API server for clients like rumors-site and rumors-line-bot
For development, copy .env.sample to .env and make necessary changes.
For production via rumors-deploy, do setups in docker-compose.yml.
After cloning this repository & cd into project directory, then install the dependencies.
$ git clone --recursive git@github.com:cofacts/rumors-api.git # --recursive for the submodules
$ cd rumors-api
# This ensures gRPC binary package are installed under correct platform during development
$ docker-compose run --rm --entrypoint="npm i" api
If you want to test OAuth2 authentication, fill in the credentials for the provider you want to test in .env.
Cofacts API uses Google cloud storage to store user reported media files (image, audio, video files).
Please populate the following fields in .env if you want to test this.
GCS_CREDENTIALS: Service account's JSON file content.GCS_BUCKET_NAME: The Google cloud storage bucket to store files. It must grant the service account the following permission:
storage.objects.list: required by cofacts/media-managerstorage.objects.create: required by cofacts/media-managerstorage.objects.get: required by cofacts/media-managerstorage.objects.delete: required by cofacts/media-managerstorage.objects.update: required to update metadataGCS_MEDIA_FOLDER: The prefix for stored files. Trailing / is required if you want all root level folders are put under your specified folder.$ mkdir esdata # For elasticsearch DB
$ docker-compose up
This will:
http://localhost:5000. It will be re-started when you update anyfile.http://localhost:5500. It will be re-started when you update anyfile.http://localhost:3000. You can populate session cookie by "logging-in" using the site
(when credentials are in-place in .env).
However, it cannot do server-side rendering properly because rumors-site container cannot access
localhost URLs.http://localhost:6222.http://localhost:62222.http://localhost:4000To stop the servers, just ctrl-c and all docker containers will be stopped.
Ask a team member to send you nodes directory, then run:
$ docker-compose stop db
to stop db instance.
put the nodes directory right inside the esdata directory created in the previous step, then restart the database using:
$ docker-compose start db
If you do not want a console occupied by docker-compose, you may use detached mode:
$ docker-compose up -d
Access the logs using:
$ docker-compose logs api # `api' can also be `db', `kibana'.
$ docker-compose logs -f api # Tail mode
src/rumors-dbThis directory is managed by git submodule. Use the following command to update:
$ npm run rumors-db:pull
# Please check lint before you pull request
$ npm run lint
# Automatically fixes format error
$ npm run lint:fix
To prepare test DB, first start an elastic search server on port 62223:
$ docker run -d \
-p "62223:9200" \
--name "rumors-test-db" \
-e "discovery.type=single-node" \
-e "xpack.security.enabled=false" \
elasticsearch:9.3.2
# discovery.type=single-node: ES 7+ expects multi-node cluster by default.
# Single-node mode skips bootstrap checks (e.g. minimum master nodes) and
# speeds up startup for local dev/test.
# xpack.security.enabled=false: ES 8+ enables security (auth) by default.
# Disable it for local test DB so the API can connect without credentials.
# If it says 'The name "rumors-test-db" is already in use',
# Just run:
$ docker start rumors-test-db
Then run this to start testing:
$ npm t
If you get "Elasticsearch ERROR : DELETE http://localhost:62223/replies => socket hang up", please check if test database is running. It takes some time for elasticsearch to boot.
If you want to run test on a specific file (ex: src/xxx/__tests__/ooo.js), run:
$ npm t -- src/xxx/__tests__/ooo.js
When you want to update jest snapshot, run:
$ npm t -- -u
GCS_CREDENTIALS and GCS_BUCKET_NAME to be set.TEST_DATASET to be set, and the dataset already exists.Build docker image. The following are basically the same, but with different docker tags.
$ docker build -t cofacts/rumors-api:latest .
Run the docker image on local machine, then visit http://localhost:5000.
(To test functions involving DB, ElasticSearch DB must work as .env specified.)
$ docker run --rm -it -p 5000:5000 -p 5500:5500 --env-file .env cofacts/rumors-api
The Admin API running on http://localhost:5500 is used for managing the data in the database.
On production environments, the Admin APIs are protected by Cloudflare Zero Trust. Only users and service tokens specified in Cloudflare Access can access the Admin API.
urls entries that are not referenced by any article & replyThe urls index serves as a cache of URL scrapper and will enlarge as ListArticle is invoked with
URLs. The following script cleans up those urls that no article & reply currently uses.
$ docker-compose exec api node_modules/.bin/babel-node src/scripts/cleanupUrls.js
The user activities of website & chatbot LIFF web views are collected and synced to BigQuery using built-in GA4 BigQuery Links.
stream_id on BigQuery.events-YYYYMMDD tables) and "Streaming" (results in events_intraday_YYYYMMDD tables) are used.Make sure the following params are set in .env:
LINE_BOT_EVENT_DATASET_ID, GA4_DATASET_ID, GA_WEB_STREAM_ID, GA_LIFF_STREAM_ID, TIMEZONE.
Sync script will authenticate to BigQuery using Application Default Credentials.
GOOGLE_APPLICATION_CREDENTIALS env var to
provide the path to your downloaded service account key. See documentation for detail.LINE_BOT_EVENT_DATASET_ID and GA4_DATASET_ID.Make sure the service account behind the key in previous step have the following minimum roles:
BigQuery Job User on the GCP projectBigQuery Data Viewer on the dataset specified by LINE_BOT_EVENT_DATASET_ID, and the dataset specified by GA4_DATASET_ID.To fetch stats for the current date, run:
$ node_modules/.bin/babel-node src/scripts/fetchStatsFromGA.js
--help or see the file level comments.$ node build/scripts/removeArticleReply.js --userId=<userId> --articleId=<articleId> --replyId=<replyId>
--help or see the file level comments.$ node build/scripts/replaceMedia.js --articleId=<articleId> --url=<new-file-url>
$ node build/scripts/genCategoryReview.js -f <ISO Timestamp>
--help or see the file level comments.First, fill in GOOGLE_SHEETS_API_KEY in .env. The API key can be created from credentials page of Google Cloud Platform. We will only access Google Sheets API using this key.
Then, run:
$ node -- build/scripts/genBERTInputArticles.js -s <Google spreadsheet ID> -o <Output directory>
The ground truth files in JSON will be written to output directory
This command generates a new AI reply even if the article already has an AI reply before. Suitable for the scenario when the existing AI reply is not appropriate.
$ node build/scripts/genAIReply.js -a <articleId> --temperature=1
urls index and hyperlinks field for all articles & repliesFirst, make sure .env is configured so that the correct DB is specified.
Then at project root, run:
$ node_modules/.bin/babel-node src/scripts/migrations/fillAllHyperlinks.js
This script would scan for all articles & replies to fill in their hyperlinks field, also populates
urls index. The urls index is used as cache. If an URL already exists in urls, it will not trigger
HTTP request.
First, make sure .env is configured so that the correct DB is specified, you might want to create a snapshot before running the script.
Then at project root, run:
$ node_modules/.bin/babel-node src/scripts/migrations/createBackendUsers.js
This script would scan for all the user references in analytics, articlecategoryfeedbacks, articlereplyfeedbacks,
articles, replies, replyrequests, create users for those that are not already in db and updates all the docs.
See the comments at the top of the script for how users are referenced in each doc.
If rumors-api server fails to start due to the following error:
Cannot find module '/srv/www/node_modules/grpc/src/node/extension_binary/node-v72-linux-x64-glibc/grpc_node.node'
try running:
npm rebuild --target_platform=linux --target_arch=x64 --target_libc=glibc --update-binary
LICENSE defines the license agreement for the source code in this repository.
LEGAL.md is the user agreement for Cofacts data users that leverages Cofacts data provided by API or via cofacts/opendata.
JavaScript
94.7%
TypeScript
4.9%
GraphQL API server for clients like rumors-site and rumors-line-bot
117
stars
1,654
commits
JavaScript
primary language
Sep 9, 2026
updated
GraphQL API server for clients like rumors-site and rumors-line-bot
For development, copy .env.sample to .env and make necessary changes.
For production via rumors-deploy, do setups in docker-compose.yml.
After cloning this repository & cd into project directory, then install the dependencies.
$ git clone --recursive git@github.com:cofacts/rumors-api.git # --recursive for the submodules
$ cd rumors-api
# This ensures gRPC binary package are installed under correct platform during development
$ docker-compose run --rm --entrypoint="npm i" api
If you want to test OAuth2 authentication, fill in the credentials for the provider you want to test in .env.
Cofacts API uses Google cloud storage to store user reported media files (image, audio, video files).
Please populate the following fields in .env if you want to test this.
GCS_CREDENTIALS: Service account's JSON file content.GCS_BUCKET_NAME: The Google cloud storage bucket to store files. It must grant the service account the following permission:
storage.objects.list: required by cofacts/media-managerstorage.objects.create: required by cofacts/media-managerstorage.objects.get: required by cofacts/media-managerstorage.objects.delete: required by cofacts/media-managerstorage.objects.update: required to update metadataGCS_MEDIA_FOLDER: The prefix for stored files. Trailing / is required if you want all root level folders are put under your specified folder.$ mkdir esdata # For elasticsearch DB
$ docker-compose up
This will:
http://localhost:5000. It will be re-started when you update anyfile.http://localhost:5500. It will be re-started when you update anyfile.http://localhost:3000. You can populate session cookie by "logging-in" using the site
(when credentials are in-place in .env).
However, it cannot do server-side rendering properly because rumors-site container cannot access
localhost URLs.http://localhost:6222.http://localhost:62222.http://localhost:4000To stop the servers, just ctrl-c and all docker containers will be stopped.
Ask a team member to send you nodes directory, then run:
$ docker-compose stop db
to stop db instance.
put the nodes directory right inside the esdata directory created in the previous step, then restart the database using:
$ docker-compose start db
If you do not want a console occupied by docker-compose, you may use detached mode:
$ docker-compose up -d
Access the logs using:
$ docker-compose logs api # `api' can also be `db', `kibana'.
$ docker-compose logs -f api # Tail mode
src/rumors-dbThis directory is managed by git submodule. Use the following command to update:
$ npm run rumors-db:pull
# Please check lint before you pull request
$ npm run lint
# Automatically fixes format error
$ npm run lint:fix
To prepare test DB, first start an elastic search server on port 62223:
$ docker run -d \
-p "62223:9200" \
--name "rumors-test-db" \
-e "discovery.type=single-node" \
-e "xpack.security.enabled=false" \
elasticsearch:9.3.2
# discovery.type=single-node: ES 7+ expects multi-node cluster by default.
# Single-node mode skips bootstrap checks (e.g. minimum master nodes) and
# speeds up startup for local dev/test.
# xpack.security.enabled=false: ES 8+ enables security (auth) by default.
# Disable it for local test DB so the API can connect without credentials.
# If it says 'The name "rumors-test-db" is already in use',
# Just run:
$ docker start rumors-test-db
Then run this to start testing:
$ npm t
If you get "Elasticsearch ERROR : DELETE http://localhost:62223/replies => socket hang up", please check if test database is running. It takes some time for elasticsearch to boot.
If you want to run test on a specific file (ex: src/xxx/__tests__/ooo.js), run:
$ npm t -- src/xxx/__tests__/ooo.js
When you want to update jest snapshot, run:
$ npm t -- -u
GCS_CREDENTIALS and GCS_BUCKET_NAME to be set.TEST_DATASET to be set, and the dataset already exists.Build docker image. The following are basically the same, but with different docker tags.
$ docker build -t cofacts/rumors-api:latest .
Run the docker image on local machine, then visit http://localhost:5000.
(To test functions involving DB, ElasticSearch DB must work as .env specified.)
$ docker run --rm -it -p 5000:5000 -p 5500:5500 --env-file .env cofacts/rumors-api
The Admin API running on http://localhost:5500 is used for managing the data in the database.
On production environments, the Admin APIs are protected by Cloudflare Zero Trust. Only users and service tokens specified in Cloudflare Access can access the Admin API.
urls entries that are not referenced by any article & replyThe urls index serves as a cache of URL scrapper and will enlarge as ListArticle is invoked with
URLs. The following script cleans up those urls that no article & reply currently uses.
$ docker-compose exec api node_modules/.bin/babel-node src/scripts/cleanupUrls.js
The user activities of website & chatbot LIFF web views are collected and synced to BigQuery using built-in GA4 BigQuery Links.
stream_id on BigQuery.events-YYYYMMDD tables) and "Streaming" (results in events_intraday_YYYYMMDD tables) are used.Make sure the following params are set in .env:
LINE_BOT_EVENT_DATASET_ID, GA4_DATASET_ID, GA_WEB_STREAM_ID, GA_LIFF_STREAM_ID, TIMEZONE.
Sync script will authenticate to BigQuery using Application Default Credentials.
GOOGLE_APPLICATION_CREDENTIALS env var to
provide the path to your downloaded service account key. See documentation for detail.LINE_BOT_EVENT_DATASET_ID and GA4_DATASET_ID.Make sure the service account behind the key in previous step have the following minimum roles:
BigQuery Job User on the GCP projectBigQuery Data Viewer on the dataset specified by LINE_BOT_EVENT_DATASET_ID, and the dataset specified by GA4_DATASET_ID.To fetch stats for the current date, run:
$ node_modules/.bin/babel-node src/scripts/fetchStatsFromGA.js
--help or see the file level comments.$ node build/scripts/removeArticleReply.js --userId=<userId> --articleId=<articleId> --replyId=<replyId>
--help or see the file level comments.$ node build/scripts/replaceMedia.js --articleId=<articleId> --url=<new-file-url>
$ node build/scripts/genCategoryReview.js -f <ISO Timestamp>
--help or see the file level comments.First, fill in GOOGLE_SHEETS_API_KEY in .env. The API key can be created from credentials page of Google Cloud Platform. We will only access Google Sheets API using this key.
Then, run:
$ node -- build/scripts/genBERTInputArticles.js -s <Google spreadsheet ID> -o <Output directory>
The ground truth files in JSON will be written to output directory
This command generates a new AI reply even if the article already has an AI reply before. Suitable for the scenario when the existing AI reply is not appropriate.
$ node build/scripts/genAIReply.js -a <articleId> --temperature=1
urls index and hyperlinks field for all articles & repliesFirst, make sure .env is configured so that the correct DB is specified.
Then at project root, run:
$ node_modules/.bin/babel-node src/scripts/migrations/fillAllHyperlinks.js
This script would scan for all articles & replies to fill in their hyperlinks field, also populates
urls index. The urls index is used as cache. If an URL already exists in urls, it will not trigger
HTTP request.
First, make sure .env is configured so that the correct DB is specified, you might want to create a snapshot before running the script.
Then at project root, run:
$ node_modules/.bin/babel-node src/scripts/migrations/createBackendUsers.js
This script would scan for all the user references in analytics, articlecategoryfeedbacks, articlereplyfeedbacks,
articles, replies, replyrequests, create users for those that are not already in db and updates all the docs.
See the comments at the top of the script for how users are referenced in each doc.
If rumors-api server fails to start due to the following error:
Cannot find module '/srv/www/node_modules/grpc/src/node/extension_binary/node-v72-linux-x64-glibc/grpc_node.node'
try running:
npm rebuild --target_platform=linux --target_arch=x64 --target_libc=glibc --update-binary
LICENSE defines the license agreement for the source code in this repository.
LEGAL.md is the user agreement for Cofacts data users that leverages Cofacts data provided by API or via cofacts/opendata.
JavaScript
94.7%
TypeScript
4.9%