Adverse Human Behaviors Corpus Creator
Adverse Human Behaviors is a term created to encompass all types of human behaviors that affect one or more individuals in physical, psychological, or emotional ways.
There are four main categories:
- Hate speech
- Depression and/or suicidal attempt
- Eating disorders
- Illicit drug use
This application serves as the orchestrator, utilizing a docker-compose.yml file to connect the other two applications with the database managed by AHBCC.
The primary objective is to gather information from X (formerly Twitter) using GoXCrap. Subsequently, each tweet is manually evaluated to determine if it discusses an Adverse Human Behavior using Binarizer. Finally, AHBCC is in charge of creating a balanced corpus from the retrieved and categorized tweets.
To allow GoXCrap to save the tweets into the database and then retrieve them using Binarizer, this application exposes different endpoints, encapsulating the access to the database in one place (this app).
This app calls an endpoint defined by the env variable ENQUEUE_CRITERIA_API_URL
. To ensure proper communication, the app that owns this endpoint must be on the same network (named shared), which is defined in the compose.yml as follows:
networks:
shared_network:
driver: bridge
name: shared_network
To join the same network, the corresponding compose.yml
for the other app should include the following configuration:
networks:
shared_network:
external: true
Tables: Entity Relationship Diagram
erDiagram
tweets ||--o| tweets_quotes : ""
tweets }|--|{ search_criteria : ""
tweets {
INTEGER uuid PK
TEXT id
TEXT author
TEXT avatar
TIMESTAMP posted_at
BOOLEAN is_a_reply
TEXT text_content
TEXT[] images
INTEGER quote_id FK
INTEGER search_criteria_id FK
}
tweets_quotes {
INTEGER id PK
TEXT author
TEXT avatar
TIMESTAMP posted_at
BOOLEAN is_a_reply
TEXT text_content
TEXT[] images
}
search_criteria ||--o{ search_criteria_executions : ""
search_criteria {
INTEGER id PK
TEXT name
TEXT[] all_of_these_words
TEXT this_exact_phrase
TEXT[] any_of_these_words
TEXT[] none_of_these_words
TEXT[] these_hashtags
TEXT language
DATE since_date
DATE until_date
}
search_criteria_executions ||--o{ search_criteria_execution_days : ""
search_criteria_executions {
INTEGER id PK
ENUM status "'PENDING', 'IN PROGRESS', 'DONE'"
INTEGER search_criteria_id FK
}
search_criteria_execution_days {
INTEGER id PK
DATE execution_date
INTEGER tweets_quantity
TEXT error_reason
INTEGER search_criteria_execution_id FK
}
users {
INTEGER id PK
TEXT username
TEXT password_hash
TIMESTAMP created_at
}
categorized_tweets ||--|{ search_criteria : ""
categorized_tweets ||--|{ tweets : ""
categorized_tweets ||--|{ users : ""
categorized_tweets {
INTEGER id PK
INTEGER search_criteria_id FK "Intentional redundancy"
INTEGER tweet_id FK
INTEGER tweet_year "Intentional redundancy"
INTEGER tweet_month "Intentional redundancy"
INTEGER user_id FK
ENUM categorization "'POSITIVE', 'INDETERMINATE', 'NEGATIVE'"
}
users_sessions ||--|{ users : ""
users_sessions {
INTEGER id PK
INTEGER user_id FK
TEXT token
TIMESTAMP expires_at
TIMESTAMP created_at
}
search_criteria_executions_summary ||--|{ search_criteria : ""
search_criteria_executions_summary {
INTEGER id PK
INTEGER search_criteria_id FK
INTEGER tweets_year
INTEGER tweets_month
INTEGER total_tweets
}
To run the application, you must define specific environment variables. You can create a .env file in the root directory of the project or rename the provided example file, .env.example.
This file should contain the following environment variables:
# App settings
APP_EXPOSED_PORT=<AHBCC Host Port>
APP_INTERNAL_PORT=<AHBCC Container Port>
# Database
DB_NAME=<Database name>
DB_USER=<Database username>
DB_PASS=<Database password>
DB_PORT=<Database port>
# Session
SESSION_SECRET_KEY=<Secret key used for signing and verifying HMAC-based tokens>
# External APIs URLs
ENQUEUE_CRITERIA_API_URL=<Domain of the application with the endpoint /criteria/enqueue/v1> --> Example: the URL to the GoXCrap API
Replace the < ... >
by the correct value. For example: DB_NAME=<Database name>
--> DB_NAME=ahbcc
.
The value of the session secret key should be a random and long byte sequence that isn't easily guessable.
An example of how to generate this key is by using a tool like OpenSSL
or a password generator
.
openssl rand -base64 32
This generates a 256-bit (32-byte) key encoded in Base64, which is suitable for HMAC-SHA256.