Compare commits
27 Commits
LH-276-new
...
develop
Author | SHA1 | Date | |
---|---|---|---|
ce1fe3ca8d | |||
96b770d9c5 | |||
4b1f4fab70 | |||
ba7c2186af | |||
636e8a9fab | |||
5da2eb6927 | |||
97948a5d8c | |||
b94b1bff86 | |||
5c4f2bf13e | |||
df7f1987f6 | |||
7842953faf | |||
4591617b1e | |||
9b3f2f94c8 | |||
29a4cd7227 | |||
c80265fe25 | |||
abb1533c9b | |||
6e3ce9fbb3 | |||
4d8adf9eac | |||
bde02fe250 | |||
48eee903a5 | |||
d5bc0cd1d3 | |||
1c353d7c88 | |||
3e31ba21bd | |||
cdf02756d3 | |||
b2f9f5affa | |||
5b9bfeaa01 | |||
e3bef9b3e5 |
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
node_modules
|
||||||
|
doc
|
26
Dockerfile
@ -1,11 +1,25 @@
|
|||||||
FROM ubuntu
|
FROM ubuntu:22.04
|
||||||
|
|
||||||
|
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_16.x | bash -
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
RUN apt-get install -y nodejs
|
RUN apt-get install -y nodejs
|
||||||
RUN npm install -g watchify
|
|
||||||
|
|
||||||
EXPOSE 3000
|
COPY . /app/
|
||||||
EXPOSE 2000-2020
|
|
||||||
EXPOSE 10000-10100
|
RUN npm install
|
||||||
|
|
||||||
|
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
|
70
build.sh
@ -1,4 +1,40 @@
|
|||||||
#/!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
|
||||||
@ -22,31 +58,17 @@ 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/
|
||||||
dateString=$(date +"%Y%m%d-%H%M%S")
|
|
||||||
git log --pretty=format:"%ad%x09%an%x09%s" --no-merges -20 > "dist/git--$dateString.log"
|
|
||||||
#Add version control for pm2
|
|
||||||
cd dist
|
|
||||||
#Add version control for pm2
|
|
||||||
version=$(git describe)
|
|
||||||
file_pkg="package.json"
|
|
||||||
key=" \"version\": \""
|
|
||||||
|
|
||||||
count=$(echo ${version%%-*} | grep -o "\." | wc -l)
|
# Generate Git log
|
||||||
if (( $count > 1 )); then
|
dateString=$(date +"%Y%m%d-%H%M%S")
|
||||||
version=${version%%-*}
|
git log --pretty=format:"%ad%x09%an%x09%s" --no-merges -20 > "dist/git-$dateString.log"
|
||||||
else
|
|
||||||
version="${version%%-*}.0"
|
# Get Git version control
|
||||||
fi
|
getGitVersion $1
|
||||||
if [ -f "$file_pkg" ] && [ ! -z "$version" ]; then
|
|
||||||
version=" \"version\": \"$version\","
|
# Add version control for pm2
|
||||||
sed -i "s|^.*$key.*|${version//\//\\/}|g" $file_pkg
|
cd dist
|
||||||
text=$(cat $file_pkg | grep -c "$version")
|
addVersionPm2
|
||||||
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
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 614 KiB |
Before Width: | Height: | Size: 994 KiB |
BIN
doc/[video] Client - Mediasoup connect & produce@1.25x.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
doc/[video] Client Android-iOS close Video call@1.25x.png
Normal file
After Width: | Height: | Size: 419 KiB |
Before Width: | Height: | Size: 354 KiB |
Before Width: | Height: | Size: 794 KiB |
BIN
doc/[video] Client-Client Workflow@1.25x.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 462 KiB |
BIN
doc/[video] Dispatcher closed@1.25x.png
Normal file
After Width: | Height: | Size: 606 KiB |
Before Width: | Height: | Size: 252 KiB |
After Width: | Height: | Size: 349 KiB |
Before Width: | Height: | Size: 346 KiB |
BIN
doc/[video] HUB - Dispatcher close call@1.25x.png
Normal file
After Width: | Height: | Size: 412 KiB |
Before Width: | Height: | Size: 407 KiB |
BIN
doc/[video] HUB - Dispatcher dieconnect@1.25x.png
Normal file
After Width: | Height: | Size: 421 KiB |
Before Width: | Height: | Size: 439 KiB |
BIN
doc/[video] Video Window closed@1.25x.png
Normal file
After Width: | Height: | Size: 567 KiB |
BIN
doc/[video] Waiting Call@1.25x.png
Normal file
After Width: | Height: | Size: 660 KiB |
Before Width: | Height: | Size: 571 KiB |
@ -20353,7 +20353,7 @@ module.exports = yeast;
|
|||||||
},{}],94:[function(require,module,exports){
|
},{}],94:[function(require,module,exports){
|
||||||
module.exports = {
|
module.exports = {
|
||||||
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
||||||
mediasoupAddress: 'https://video.safemobile.org/',
|
mediasoupAddress: 'https://testing.video.safemobile.org/',
|
||||||
}
|
}
|
||||||
},{}],95:[function(require,module,exports){
|
},{}],95:[function(require,module,exports){
|
||||||
const io = require('socket.io-client')
|
const io = require('socket.io-client')
|
||||||
@ -20457,6 +20457,15 @@ 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) {
|
||||||
@ -20833,7 +20842,7 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -20846,10 +20855,6 @@ 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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
||||||
mediasoupAddress: 'https://video.safemobile.org/',
|
mediasoupAddress: 'https://testing.video.safemobile.org/',
|
||||||
}
|
}
|
@ -99,6 +99,15 @@ 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) {
|
||||||
@ -475,7 +484,7 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -488,10 +497,6 @@ 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
|
||||||
}
|
}
|
||||||
|
|
||||||
|