Skip to main content

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.

ControllerDescription
AiConvPrivate conversation with AI
AiConvMsgThe message belonging an AiConv
InvitationInvitation for a User in a Room
MemberMembership variables of a User in a Room
MessageThe message belonging to a Room
PasskeyBackupBackup of the encrypted user passkey
PrivateUserDataKeychain backup and other private information of a user
RoomThe Group chat room
UserRegistered 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.

image

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 to blade.php. (myicon.svg to myicon.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.

ControllerDescription
AccessTokenControllerHandles Sanctum tokens for external access
AiConvControllerHandles requests related to a user conversation (aka. single chat)
AuthenticationControllerHandles 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.
EncryptionControllerServer side encryption for AI model messages in the groupchat
HomeControllerHandeling render requests after authentication as well as session attributes
ImageControllerHandeling image data uploaded by users as avatars, profile pictures etc.
InvitationControllerHandeling and storing all of the user invitation logics
LanguageControllerProvides language and translation data for rendering views
LoginControllerSimply prepares the components and renders the login page.
MailControllerControls mail services for external user invitation
ProfileControllerHandels user profile requests and provides user data to other controllers
RoomControllerHandles requests related to Rooms (aka. Groupchats)
SearchControllerReponds the user search requests
SettingsControllerRenders setting panel on the server side and passes it to other controllers when rendering a view.
StreamControllerHandles 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.