Compare commits
No commits in common. "develop" and "develop-testing" have entirely different histories.
develop
...
develop-te
@ -1,2 +0,0 @@
|
|||||||
node_modules
|
|
||||||
doc
|
|
26
Dockerfile
@ -1,25 +1,11 @@
|
|||||||
FROM ubuntu:22.04
|
FROM ubuntu
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y build-essential pip net-tools iputils-ping iproute2 curl
|
apt-get install -y build-essential pip net-tools iputils-ping iproute2 curl
|
||||||
|
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
|
||||||
RUN apt-get install -y nodejs
|
RUN apt-get install -y nodejs
|
||||||
|
RUN npm install -g watchify
|
||||||
|
|
||||||
COPY . /app/
|
EXPOSE 3000
|
||||||
|
EXPOSE 2000-2020
|
||||||
RUN npm install
|
EXPOSE 10000-10100
|
||||||
|
|
||||||
EXPOSE 3000/tcp
|
|
||||||
EXPOSE 2000-2200/udp
|
|
||||||
|
|
||||||
CMD node app.js
|
|
||||||
|
|
||||||
#docker build -t linx-video .
|
|
||||||
# docker run -it -d --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
|
||||||
#Run under host network
|
|
||||||
# docker run -it -d --network host --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
|
||||||
#https://docs.docker.com/config/containers/resource_constraints/
|
|
||||||
#docker run -it -d --network host --cpus="0.25" --memory="512m" --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
|
68
build.sh
@ -1,40 +1,4 @@
|
|||||||
#/!bin/bash
|
#/!bin/bash
|
||||||
## FUNCTIONS
|
|
||||||
function getGitVersion(){
|
|
||||||
version=$(git describe)
|
|
||||||
count=$(echo ${version%%-*} | grep -o "\." | wc -l)
|
|
||||||
if (( $count > 1 )); then
|
|
||||||
version=${version%%-*}
|
|
||||||
elif (( $count == 0 ));then
|
|
||||||
echo -e "Error: Git version \"${version%%-*}\" not respecting Safemobile standard.\n Must be like 4.xx or 4.xx.xx"
|
|
||||||
version="0.0.0"
|
|
||||||
else
|
|
||||||
if [[ "$1" == "dev" ]];then
|
|
||||||
cleanprefix=${version#*-} # remove everything before `-` including `-`
|
|
||||||
cleansuffix=${cleanprefix%-*} # remove everything after `-` including `-`
|
|
||||||
version="${version%%-*}.${cleansuffix}"
|
|
||||||
else
|
|
||||||
version="${version%%-*}.0" # one `%` remove everything after last `-`, two `%%` remove everything after all `-`
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function addVersionPm2(){
|
|
||||||
file_pkg="package.json"
|
|
||||||
key=" \"version\": \""
|
|
||||||
|
|
||||||
if [ -f "$file_pkg" ] && [ ! -z "$version" ]; then
|
|
||||||
versionApp=" \"version\": \"$version\","
|
|
||||||
sed -i "s|^.*$key.*|${versionApp//\//\\/}|g" $file_pkg
|
|
||||||
text=$(cat $file_pkg | grep -c "$version")
|
|
||||||
if [ $text -eq 0 ]; then
|
|
||||||
echo "Version couldn't be set"
|
|
||||||
else
|
|
||||||
echo "Version $version successfully applied to App"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
## PREBUILD PROCESS
|
## PREBUILD PROCESS
|
||||||
# check dist dir to be present and empty
|
# check dist dir to be present and empty
|
||||||
if [ ! -d "dist" ]; then
|
if [ ! -d "dist" ]; then
|
||||||
@ -58,17 +22,31 @@ echo "Building app... from $(git rev-parse --abbrev-ref HEAD)"
|
|||||||
#npm run-script build
|
#npm run-script build
|
||||||
cp -r {.env,app.js,package.json,server,public,doc,Dockerfile} dist/
|
cp -r {.env,app.js,package.json,server,public,doc,Dockerfile} dist/
|
||||||
#cp -r ./* dist/
|
#cp -r ./* dist/
|
||||||
|
|
||||||
# Generate Git log
|
|
||||||
dateString=$(date +"%Y%m%d-%H%M%S")
|
dateString=$(date +"%Y%m%d-%H%M%S")
|
||||||
git log --pretty=format:"%ad%x09%an%x09%s" --no-merges -20 > "dist/git-$dateString.log"
|
git log --pretty=format:"%ad%x09%an%x09%s" --no-merges -20 > "dist/git--$dateString.log"
|
||||||
|
#Add version control for pm2
|
||||||
# Get Git version control
|
|
||||||
getGitVersion $1
|
|
||||||
|
|
||||||
# Add version control for pm2
|
|
||||||
cd dist
|
cd dist
|
||||||
addVersionPm2
|
#Add version control for pm2
|
||||||
|
version=$(git describe)
|
||||||
|
file_pkg="package.json"
|
||||||
|
key=" \"version\": \""
|
||||||
|
|
||||||
|
count=$(echo ${version%%-*} | grep -o "\." | wc -l)
|
||||||
|
if (( $count > 1 )); then
|
||||||
|
version=${version%%-*}
|
||||||
|
else
|
||||||
|
version="${version%%-*}.0"
|
||||||
|
fi
|
||||||
|
if [ -f "$file_pkg" ] && [ ! -z "$version" ]; then
|
||||||
|
version=" \"version\": \"$version\","
|
||||||
|
sed -i "s|^.*$key.*|${version//\//\\/}|g" $file_pkg
|
||||||
|
text=$(cat $file_pkg | grep -c "$version")
|
||||||
|
if [ $text -eq 0 ]; then
|
||||||
|
echo "Version couldn't be set"
|
||||||
|
else
|
||||||
|
echo "Version $version successfully applied to App"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
## POST BUILD
|
## POST BUILD
|
||||||
|
|
||||||
|
BIN
doc/[video] Call waiting.png
Normal file
After Width: | Height: | Size: 614 KiB |
BIN
doc/[video] Client - Mediasoup connect & produce.png
Normal file
After Width: | Height: | Size: 994 KiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 419 KiB |
BIN
doc/[video] Client Android-iOS closed.png
Normal file
After Width: | Height: | Size: 354 KiB |
BIN
doc/[video] Client-Client Workflow.png
Normal file
After Width: | Height: | Size: 794 KiB |
Before Width: | Height: | Size: 1.0 MiB |
BIN
doc/[video] Dispatcher closed.png
Normal file
After Width: | Height: | Size: 462 KiB |
Before Width: | Height: | Size: 606 KiB |
BIN
doc/[video] HUB - Dispatcher close call before accept_reject.png
Normal file
After Width: | Height: | Size: 252 KiB |
Before Width: | Height: | Size: 349 KiB |
BIN
doc/[video] HUB - Dispatcher close call.png
Normal file
After Width: | Height: | Size: 346 KiB |
Before Width: | Height: | Size: 412 KiB |
BIN
doc/[video] HUB - Dispatcher dieconnect.png
Normal file
After Width: | Height: | Size: 407 KiB |
Before Width: | Height: | Size: 421 KiB |
BIN
doc/[video] Video Window closed.png
Normal file
After Width: | Height: | Size: 439 KiB |
Before Width: | Height: | Size: 567 KiB |
Before Width: | Height: | Size: 660 KiB |
BIN
doc/[video] Workflow.png
Normal file
After Width: | Height: | Size: 571 KiB |
@ -20457,15 +20457,6 @@ setTimeout(() => {
|
|||||||
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
||||||
connectRecvTransport();
|
connectRecvTransport();
|
||||||
})
|
})
|
||||||
|
|
||||||
socket.on('close-producer', ({ callId, kind }) => {
|
|
||||||
console.log(`🔴 close-producer | callId: ${callId} | kind: ${kind}`);
|
|
||||||
if (kind === 'video') {
|
|
||||||
consumerVideo.close()
|
|
||||||
remoteVideo.srcObject = null
|
|
||||||
}
|
|
||||||
else if (kind === 'audio') consumerAudio.close()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_PRODUCER === true) {
|
if (IS_PRODUCER === true) {
|
||||||
@ -20842,7 +20833,7 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -20855,6 +20846,10 @@ const getVideoTrask = async (videoParams) => {
|
|||||||
rtpParameters: videoParams.rtpParameters
|
rtpParameters: videoParams.rtpParameters
|
||||||
})
|
})
|
||||||
|
|
||||||
|
consumerVideo.on('transportclose', () => {
|
||||||
|
console.log('transport closed so consumer closed')
|
||||||
|
})
|
||||||
|
|
||||||
return consumerVideo.track
|
return consumerVideo.track
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,15 +99,6 @@ setTimeout(() => {
|
|||||||
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
||||||
connectRecvTransport();
|
connectRecvTransport();
|
||||||
})
|
})
|
||||||
|
|
||||||
socket.on('close-producer', ({ callId, kind }) => {
|
|
||||||
console.log(`🔴 close-producer | callId: ${callId} | kind: ${kind}`);
|
|
||||||
if (kind === 'video') {
|
|
||||||
consumerVideo.close()
|
|
||||||
remoteVideo.srcObject = null
|
|
||||||
}
|
|
||||||
else if (kind === 'audio') consumerAudio.close()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_PRODUCER === true) {
|
if (IS_PRODUCER === true) {
|
||||||
@ -484,7 +475,7 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -497,6 +488,10 @@ const getVideoTrask = async (videoParams) => {
|
|||||||
rtpParameters: videoParams.rtpParameters
|
rtpParameters: videoParams.rtpParameters
|
||||||
})
|
})
|
||||||
|
|
||||||
|
consumerVideo.on('transportclose', () => {
|
||||||
|
console.log('transport closed so consumer closed')
|
||||||
|
})
|
||||||
|
|
||||||
return consumerVideo.track
|
return consumerVideo.track
|
||||||
}
|
}
|
||||||
|
|
||||||
|