Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chanwit/sa-64-example
https://github.com/chanwit/sa-64-example
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chanwit/sa-64-example
- Owner: chanwit
- Created: 2021-08-14T05:33:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-05T05:49:28.000Z (almost 3 years ago)
- Last Synced: 2024-11-01T21:42:40.573Z (12 days ago)
- Language: TypeScript
- Size: 24.5 MB
- Stars: 4
- Watchers: 2
- Forks: 191
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ระบบบันทึกการดูวีดีโอ
![alt text](./image/activity.png)
![alt text](./image/communication.png)
อธิบาย Code ในส่วนของการ ค้นหา สร้าง โยง และบันทึก WatchVideo ตาม use case
```golang
// POST /watch_videos
func CreateWatchVideo(c *gin.Context) {var watchvideo entity.WatchVideo
var resolution entity.Resolution
var playlist entity.Playlist
var video entity.Video// ผลลัพธ์ที่ได้จากขั้นตอนที่ 8 จะถูก bind เข้าตัวแปร watchVideo
if err := c.ShouldBindJSON(&watchvideo); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}// 9: ค้นหา video ด้วย id
if tx := entity.DB().Where("id = ?", watchvideo.VideoID).First(&video); tx.RowsAffected == 0 {
c.JSON(http.StatusBadRequest, gin.H{"error": "video not found"})
return
}// 10: ค้นหา resolution ด้วย id
if tx := entity.DB().Where("id = ?", watchvideo.ResolutionID).First(&resolution); tx.RowsAffected == 0 {
c.JSON(http.StatusBadRequest, gin.H{"error": "resolution not found"})
return
}// 11: ค้นหา playlist ด้วย id
if tx := entity.DB().Where("id = ?", watchvideo.PlaylistID).First(&playlist); tx.RowsAffected == 0 {
c.JSON(http.StatusBadRequest, gin.H{"error": "playlist not found"})
return
}
// 12: สร้าง WatchVideo
wv := entity.WatchVideo{
Resolution: resolution, // โยงความสัมพันธ์กับ Entity Resolution
Video: video, // โยงความสัมพันธ์กับ Entity Video
Playlist: playlist, // โยงความสัมพันธ์กับ Entity Playlist
WatchedTime: watchvideo.WatchedTime, // ตั้งค่าฟิลด์ watchedTime
}// 13: บันทึก
if err := entity.DB().Create(&wv).Error; err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
c.JSON(http.StatusOK, gin.H{"data": wv})
}
```