forked from YJU-OKURA/project_minori-gin-deployment-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat : Implement screen sharing functionality via WebRTC
This commit introduces the screen sharing feature using the Pion WebRTC library. The implementation includes the setup of ICE servers, session management, and local track handling for broadcasting the screen. The code also integrates with existing server infrastructure, ensuring compatibility with the current signaling system. Related issue: YJU-OKURA#80
- Loading branch information
Showing
3 changed files
with
756 additions
and
440 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,130 @@ | ||
package controllers | ||
|
||
import ( | ||
"github.com/YJU-OKURA/project_minori-gin-deployment-repo/services" | ||
"github.com/gin-gonic/gin" | ||
"net/http" | ||
"strconv" | ||
) | ||
|
||
type LiveClassController struct { | ||
Service services.LiveClassService | ||
} | ||
|
||
func NewLiveClassController(service services.LiveClassService) *LiveClassController { | ||
return &LiveClassController{ | ||
Service: service, | ||
} | ||
} | ||
|
||
// CreateRoom godoc | ||
// @Summary 新しいルームを作成します。 | ||
// @Description 新しいルームを作成します。 | ||
// @Tags Live Class | ||
// @Accept json | ||
// @Produce json | ||
// @Param classID path uint true "Class ID" | ||
// @Param userID path uint true "User ID" | ||
// @Success 200 {object} map[string]interface{} "roomID returned on successful creation" | ||
// @Failure 400 {object} map[string]interface{} "Invalid class ID" | ||
// @Failure 401 {object} map[string]interface{} "Unauthorized to create room" | ||
// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
// @Router /live/create-room/{classID}/{userID} [post] | ||
func (c *LiveClassController) CreateRoom(ctx *gin.Context) { | ||
userID, _ := strconv.ParseUint(ctx.Param("userID"), 10, 32) | ||
classID, err := strconv.ParseUint(ctx.Param("classID"), 10, 32) | ||
if err != nil { | ||
ctx.JSON(http.StatusBadRequest, gin.H{"error": "invalid classID"}) | ||
return | ||
} | ||
|
||
roomID, err := c.Service.CreateRoom(uint(classID), uint(userID)) | ||
if err != nil { | ||
ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
return | ||
} | ||
ctx.JSON(http.StatusOK, gin.H{"roomID": roomID}) | ||
} | ||
|
||
// StartScreenShare godoc | ||
// @Summary 画面共有を開始します。 | ||
// @Description 画面共有を開始します。 | ||
// @Tags Live Class | ||
// @Accept json | ||
// @Produce json | ||
// @Param roomID path string true "Room ID" | ||
// @Param userID path uint true "User ID" | ||
// @Success 200 {object} map[string]interface{} "SDP data for the screen share" | ||
// @Failure 400 {object} map[string]interface{} "Invalid room ID" | ||
// @Failure 401 {object} map[string]interface{} "Unauthorized to start screen sharing" | ||
// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
// @Router /live/start-screen-share/{roomID}/{userID} [post] | ||
func (c *LiveClassController) StartScreenShare(ctx *gin.Context) { | ||
roomID := ctx.Param("roomID") | ||
userID := ctx.GetString("userID") | ||
err := c.Service.StartScreenShare(roomID, userID) | ||
if err != nil { | ||
ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
return | ||
} | ||
sdp, err := c.Service.GetScreenShareSDP(roomID) | ||
if err != nil { | ||
ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
return | ||
} | ||
ctx.JSON(http.StatusOK, gin.H{"sdp": sdp}) | ||
} | ||
|
||
// StopScreenShare godoc | ||
// @Summary 画面共有を停止します。 | ||
// @Description 画面共有を停止します。 | ||
// @Tags Live Class | ||
// @Accept json | ||
// @Produce json | ||
// @Param roomID path string true "Room ID" | ||
// @Param userID path uint true "User ID" | ||
// @Success 200 {object} map[string]interface{} "Screen sharing stopped successfully" | ||
// @Failure 400 {object} map[string]interface{} "Invalid room ID" | ||
// @Failure 401 {object} map[string]interface{} "Unauthorized to stop screen sharing" | ||
// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
// @Router /live/stop-screen-share/{roomID}/{userID} [post] | ||
func (c *LiveClassController) StopScreenShare(ctx *gin.Context) { | ||
roomID := ctx.Param("roomID") | ||
adminID := ctx.GetString("adminID") | ||
err := c.Service.StopScreenShare(roomID, adminID) | ||
if err != nil { | ||
ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
return | ||
} | ||
ctx.JSON(http.StatusOK, gin.H{"message": "Screen sharing stopped"}) | ||
} | ||
|
||
// JoinScreenShare godoc | ||
// @Summary 画面共有に参加します。 | ||
// @Description 画面共有に参加します。 | ||
// @Tags Live Class | ||
// @Accept json | ||
// @Produce json | ||
// @Param roomID path string true "Room ID" | ||
// @Param userID path uint true "User ID" | ||
// @Success 200 {object} map[string]interface{} "SDP data for the screen share" | ||
// @Failure 400 {object} map[string]interface{} "Invalid room ID or User ID" | ||
// @Failure 401 {object} map[string]interface{} "Unauthorized to join screen sharing" | ||
// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
// @Router /live/join-screen-share/{roomID}/{userID} [get] | ||
func (c *LiveClassController) JoinScreenShare(ctx *gin.Context) { | ||
roomID := ctx.Param("roomID") | ||
userID, err := strconv.ParseUint(ctx.Param("userID"), 10, 32) | ||
if err != nil { | ||
ctx.JSON(http.StatusBadRequest, gin.H{"error": "invalid userID"}) | ||
return | ||
} | ||
|
||
offer, err := c.Service.JoinScreenShare(roomID, uint(userID)) | ||
if err != nil { | ||
ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
return | ||
} | ||
ctx.JSON(http.StatusOK, gin.H{"offer": offer}) | ||
} | ||
// | ||
//import ( | ||
// "github.com/YJU-OKURA/project_minori-gin-deployment-repo/services" | ||
// "github.com/gin-gonic/gin" | ||
// "net/http" | ||
// "strconv" | ||
//) | ||
// | ||
//type LiveClassController struct { | ||
// Service services.LiveClassService | ||
//} | ||
// | ||
//func NewLiveClassController(service services.LiveClassService) *LiveClassController { | ||
// return &LiveClassController{ | ||
// Service: service, | ||
// } | ||
//} | ||
// | ||
//// CreateRoom godoc | ||
//// @Summary 新しいルームを作成します。 | ||
//// @Description 新しいルームを作成します。 | ||
//// @Tags Live Class | ||
//// @Accept json | ||
//// @Produce json | ||
//// @Param classID path uint true "Class ID" | ||
//// @Param userID path uint true "User ID" | ||
//// @Success 200 {object} map[string]interface{} "roomID returned on successful creation" | ||
//// @Failure 400 {object} map[string]interface{} "Invalid class ID" | ||
//// @Failure 401 {object} map[string]interface{} "Unauthorized to create room" | ||
//// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
//// @Router /live/create-room/{classID}/{userID} [post] | ||
//func (c *LiveClassController) CreateRoom(ctx *gin.Context) { | ||
// userID, _ := strconv.ParseUint(ctx.Param("userID"), 10, 32) | ||
// classID, err := strconv.ParseUint(ctx.Param("classID"), 10, 32) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusBadRequest, gin.H{"error": "invalid classID"}) | ||
// return | ||
// } | ||
// | ||
// roomID, err := c.Service.CreateRoom(uint(classID), uint(userID)) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
// return | ||
// } | ||
// ctx.JSON(http.StatusOK, gin.H{"roomID": roomID}) | ||
//} | ||
// | ||
//// StartScreenShare godoc | ||
//// @Summary 画面共有を開始します。 | ||
//// @Description 画面共有を開始します。 | ||
//// @Tags Live Class | ||
//// @Accept json | ||
//// @Produce json | ||
//// @Param roomID path string true "Room ID" | ||
//// @Param userID path uint true "User ID" | ||
//// @Success 200 {object} map[string]interface{} "SDP data for the screen share" | ||
//// @Failure 400 {object} map[string]interface{} "Invalid room ID" | ||
//// @Failure 401 {object} map[string]interface{} "Unauthorized to start screen sharing" | ||
//// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
//// @Router /live/start-screen-share/{roomID}/{userID} [post] | ||
//func (c *LiveClassController) StartScreenShare(ctx *gin.Context) { | ||
// roomID := ctx.Param("roomID") | ||
// userID := ctx.GetString("userID") | ||
// err := c.Service.StartScreenShare(roomID, userID) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
// return | ||
// } | ||
// sdp, err := c.Service.GetScreenShareSDP(roomID) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
// return | ||
// } | ||
// ctx.JSON(http.StatusOK, gin.H{"sdp": sdp}) | ||
//} | ||
// | ||
//// StopScreenShare godoc | ||
//// @Summary 画面共有を停止します。 | ||
//// @Description 画面共有を停止します。 | ||
//// @Tags Live Class | ||
//// @Accept json | ||
//// @Produce json | ||
//// @Param roomID path string true "Room ID" | ||
//// @Param userID path uint true "User ID" | ||
//// @Success 200 {object} map[string]interface{} "Screen sharing stopped successfully" | ||
//// @Failure 400 {object} map[string]interface{} "Invalid room ID" | ||
//// @Failure 401 {object} map[string]interface{} "Unauthorized to stop screen sharing" | ||
//// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
//// @Router /live/stop-screen-share/{roomID}/{userID} [post] | ||
//func (c *LiveClassController) StopScreenShare(ctx *gin.Context) { | ||
// roomID := ctx.Param("roomID") | ||
// adminID := ctx.GetString("adminID") | ||
// err := c.Service.StopScreenShare(roomID, adminID) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
// return | ||
// } | ||
// ctx.JSON(http.StatusOK, gin.H{"message": "Screen sharing stopped"}) | ||
//} | ||
// | ||
//// JoinScreenShare godoc | ||
//// @Summary 画面共有に参加します。 | ||
//// @Description 画面共有に参加します。 | ||
//// @Tags Live Class | ||
//// @Accept json | ||
//// @Produce json | ||
//// @Param roomID path string true "Room ID" | ||
//// @Param userID path uint true "User ID" | ||
//// @Success 200 {object} map[string]interface{} "SDP data for the screen share" | ||
//// @Failure 400 {object} map[string]interface{} "Invalid room ID or User ID" | ||
//// @Failure 401 {object} map[string]interface{} "Unauthorized to join screen sharing" | ||
//// @Failure 500 {object} map[string]interface{} "Internal server error" | ||
//// @Router /live/join-screen-share/{roomID}/{userID} [get] | ||
//func (c *LiveClassController) JoinScreenShare(ctx *gin.Context) { | ||
// roomID := ctx.Param("roomID") | ||
// userID, err := strconv.ParseUint(ctx.Param("userID"), 10, 32) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusBadRequest, gin.H{"error": "invalid userID"}) | ||
// return | ||
// } | ||
// | ||
// offer, err := c.Service.JoinScreenShare(roomID, uint(userID)) | ||
// if err != nil { | ||
// ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | ||
// return | ||
// } | ||
// ctx.JSON(http.StatusOK, gin.H{"offer": offer}) | ||
//} |
Oops, something went wrong.