Models Views Controllers
Introduction
Models
Eloquent, Laravel's Object Relational Mapping (ORM) system, simplifies data interactions with the database using an expressive syntax that provides intuitive database table management. Models are defined to represent database tables and manage data. They encapsulate business logic, queries, and validation rules. Each model also includes a migration file, which is responsible for creating the necessary tables for each model in the database when the project is initialised. Models also define relationships and may include functions for fetching and processing data.
The following chart shows a short summery of each model in HAWKI.
Controller | Description |
---|---|
AiConv | Private conversation with AI |
AiConvMsg | The message belonging an AiConv |
Invitation | Invitation for a User in a Room |
Member | Membership variables of a User in a Room |
Message | The message belonging to a Room |
PasskeyBackup | Backup of the encrypted user passkey |
PrivateUserData | Keychain backup and other private information of a user |
Room | The Group chat room |
User | Registered user on HAWKI, also used by Auth facade |
Views
HAWKIs frontend is based on Laravel Blade. By using powerful features of the blade HAWKI interface is divided into three different layers, layouts, modules, and partials
As layoutes contain the general structure of the page, like login or home, modules are the main content structure yielded in one of the layouts, such as chat, groupchat, profile. Likewise partials are smaller UI components loaded in each module.
Templates
Dynamic instantiated partials, such as messages, chat history or room list items are prepared as templates and included in /views/partials/home/templates.blade.php
. These template nodes are later cloned and added dynamically to the interface.
Icons
To create a cleaner and more readable code base as well as to simplify things, the SVG icons are converted to blade components and added as <x-icon/>
in the DOM.
Please refer to app/View/Components/Icon.php
for more information.
To add new icons:
- copy the svg file in
views/icons/
folder, - change the file extension from
.svg
toblade.php
. (myicon.svg
tomyicon.blade.php
) - add the icon to DOM as:
<x-icon name="myicon"/>
Emails
The email structures are also created as blade files. Obviously this allows utilizing normal blade features.
The Email view is then read by MailController
and dispatched by SendEmailJob.php
as Email to the user.
Controllers
Controllers handle the core logic of HAWKI. As mentioned before, each route passes the request directly to a function in one of the controllers, which is then processed and responded to.
Each controller may utilize several sevices, jobs, events etc. for shared functionalities or pass and fetch data to and from other controllers as well as utilizing models for storing and retrieving data from the database.
The following chart shows a short summery of each controller.
Controller | Description |
---|---|
AccessTokenController | Handles Sanctum tokens for external access |
AiConvController | Handles requests related to a user conversation (aka. single chat) |
AuthenticationController | Handles login requests. Based on the authentication mechanism utilizes one of the dedicated services (LDAP, Shibboleth, OpenID) to authenticate users and redirect them to the home page. |
EncryptionController | Server side encryption for AI model messages in the groupchat |
HomeController | Handeling render requests after authentication as well as session attributes |
ImageController | Handeling image data uploaded by users as avatars, profile pictures etc. |
InvitationController | Handeling and storing all of the user invitation logics |
LanguageController | Provides language and translation data for rendering views |
LoginController | Simply prepares the components and renders the login page. |
MailController | Controls mail services for external user invitation |
ProfileController | Handels user profile requests and provides user data to other controllers |
RoomController | Handles requests related to Rooms (aka. Groupchats) |
SearchController | Reponds the user search requests |
SettingsController | Renders setting panel on the server side and passes it to other controllers when rendering a view. |
StreamController | Handles all of the internal and external requests to an AI models including creating the payload, connection to AI models, and manipulating the response data. |
For detailed information about each controller please refer to the commented information inside the controller class.