Compare commits

...

8 Commits
v1.0.0 ... main

Author SHA1 Message Date
alex c7c6f2cd22 added reply id 2024-09-10 22:33:25 +02:00
alex db2c573b33 update question model 2024-09-10 19:22:00 +02:00
alex 8b1d6c6c8b change active to disabled 2024-09-07 19:43:02 +02:00
alex 668c7d0795 add time 2024-09-07 13:35:52 +02:00
alex ed64beb5fa add readme 2024-09-07 13:21:04 +02:00
alex 727f4ea719 add readme 2024-09-07 13:20:50 +02:00
alex 5a5c08e4a0 add all models 2024-09-07 13:18:20 +02:00
alex 48e8493de4 models 2024-09-07 13:14:15 +02:00
6 changed files with 124 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# Usage
You can use this library by executing the following command and specifying the version you want to use:
```bash
go get git.ex.umbach.dev/LMS/libcore@v1.0.0
```
You can see the latest version of the library on the [tags page](https://git.ex.umbach.dev/LMS/libcore/tags)

25
models/lessons.go Normal file
View File

@ -0,0 +1,25 @@
package models
import "time"
type Lesson struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
OrganizationId string `gorm:"type:varchar(36)"`
State uint8 `gorm:"type:tinyint(1)"`
Title string `gorm:"type:varchar(255)"`
ThumbnailUrl string `gorm:"type:varchar(255)"`
CreatorUserId string `gorm:"type:varchar(36)"`
CreatedAt time.Time
UpdatedAt time.Time
}
type LessonContent struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
LessonId string `gorm:"type:varchar(36)"`
Page uint16 `gorm:"type:smallint(5)"` // Page number
Position uint16 `gorm:"type:smallint(5)"` // Position on the page
Type uint8 // Type of content, like text, image, video, etc
Data string `gorm:"type:text"`
CreatedAt time.Time
UpdatedAt time.Time
}

16
models/organizations.go Normal file
View File

@ -0,0 +1,16 @@
package models
import "time"
type Organization struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
Subdomain string `gorm:"type:varchar(255)"`
OwnerUserId string `gorm:"type:varchar(36)"`
CompanyName string `gorm:"type:varchar(255)"`
PrimaryColor string `gorm:"type:varchar(6)"`
LogoUrl string `gorm:"type:varchar(255)"`
BannerUrl string `gorm:"type:varchar(255)"`
SignUpScreenUrl string `gorm:"type:varchar(255)"`
CreatedAt time.Time
UpdatedAt time.Time
}

23
models/questions.go Normal file
View File

@ -0,0 +1,23 @@
package models
import "time"
type Question struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
LessonId string `gorm:"type:varchar(36)"`
QuestionId string `gorm:"type:varchar(36)"`
ReplyId string `gorm:"type:varchar(36)"`
Message string `gorm:"type:text"`
Likes uint16 `gorm:"type:smallint(5)"`
CreatorUserId string `gorm:"type:varchar(36)"`
CreatedAt time.Time
UpdatedAt time.Time
}
type QuestionLike struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
QuestionId string `gorm:"type:varchar(36)"`
CreatorUserId string `gorm:"type:varchar(36)"`
CreatedAt time.Time
UpdatedAt time.Time
}

20
models/roles.go Normal file
View File

@ -0,0 +1,20 @@
package models
import "time"
type Role struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
OrganizationId string `gorm:"type:varchar(36)"`
Master bool `gorm:"type:tinyint(1)"`
Name string `gorm:"type:varchar(255)"`
CreatedAt time.Time
UpdatedAt time.Time
}
type RolePermission struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
RoleId string `gorm:"type:varchar(36)"`
Permission uint16 `gorm:"type:smallint"`
CreatedAt time.Time
UpdatedAt time.Time
}

31
models/users.go Normal file
View File

@ -0,0 +1,31 @@
package models
import "time"
type User struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
OrganizationId string `gorm:"type:varchar(36)"`
State uint8 `gorm:"type:tinyint(1)"`
Disabled bool `gorm:"type:tinyint(1)"`
RoleId string `gorm:"type:varchar(36)"`
FirstName string `gorm:"type:varchar(255)"`
LastName string `gorm:"type:varchar(255)"`
Email string `gorm:"type:varchar(255)"`
Password string `gorm:"type:varchar(255)"`
ProfilePictureUrl string `gorm:"type:varchar(255)"`
LastOnlineAt time.Time
CreatedAt time.Time
UpdatedAt time.Time
}
type UserSession struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
UserId string `gorm:"type:varchar(36)"`
OrganizationId string `gorm:"type:varchar(36)"`
Session string `gorm:"type:varchar(36)"`
UserAgent string `gorm:"type:varchar(255)"`
ExpiresAt time.Time
LastUsedAt time.Time
CreatedAt time.Time
UpdatedAt time.Time
}