discourse/script/import_scripts/socialcast
Josh Soref 59097b207f
DEV: Correct typos and spelling mistakes (#12812)
Over the years we accrued many spelling mistakes in the code base. 

This PR attempts to fix spelling mistakes and typos in all areas of the code that are extremely safe to change 

- comments
- test descriptions
- other low risk areas
2021-05-21 11:43:47 +10:00
..
test DEV: Correct typos and spelling mistakes (#12812) 2021-05-21 11:43:47 +10:00
README.md FEATURE: Socialcast Importer: Set category and tags based on group 2017-02-26 04:54:07 -08:00
create_title.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
export.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
import.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
socialcast_api.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
socialcast_message.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
socialcast_user.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
title.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00

README.md

To get started, copy the config.ex.yml to config.yml, and then update the properties for your Socialcast instance.

This importer uses the Socialcast API.

domain: 'my-socialcast-domain'
username: 'my-socialcast-username'
password: 'my-socialcast-password'

Create the directory for the json files to export: mkdir output Then run bundle exec ruby export.rb /path/to/config.yml

If desired, edit the socialcast_message.rb file to set the category and tags for each topic based on the name of the Socialcast group it was originally posted to.

You must create categories with the same names first in your site.

All topics will get the DEFAULT_TAG at minimum.

Topics posted to a group that matches any group name in the TAGS_AND_CATEGORIES map will get the associated category and tags.

Other topics will be tagged with the original groupname and placed in the DEFAULT_CATEGORY.

To run the import, run bundle exec ruby import.rb

To run the import in a production, run RAILS_ENV=production bundle exec ruby import.rb