AWS.config.update({ region: 'us-east-2', // e.g., 'us-west-2' credentials: new AWS.CognitoIdentityCredentials({ IdentityPoolId: 'us-east-2:27e81c61-e56b-42ec-933a-de85df036bc7', // e.g., 'us-west-2:xxxxxx-xxxx-xxxx-xxxx-xxxxxxxx' }) }); var s3 = new AWS.S3({ apiVersion: '2006-03-01', params: { Bucket: 'halseyvision.com' } // e.g., 'my-video-bucket' }); document.addEventListener('DOMContentLoaded', displayUploadedVideos); function uploadFile() { var files = document.getElementById('fileInput').files; if (!files.length) { return alert('Please choose a file to upload first.'); } var file = files[0]; var params = { Bucket: 'halseyvision.com', Key: file.name, Body: file, ACL: 'public-read' // Ensure file is publicly accessible }; alert('Please be patient, it takes roughly 90 seconds to upload') s3.upload(params, function (err, data) { if (err) { return alert('There was an error uploading your file: ' + err.message); } alert('Successfully uploaded file.'); adjustSidebarHeight(); displayUploadedVideos(); // Refresh the video list after uploading a new file }); } function displayUploadedVideos() { console.log("Fetching video list..."); s3.listObjects({ Prefix: '' }, function (err, data) { if (err) { console.error('Error listing files:', err.message); return alert('There was an error listing your files: ' + err.message); } console.log("Files retrieved:", data.Contents); document.getElementById("TotalVideoCount").textContent = "Vid Count: "+(data.Contents.length-1); var videoContainer = document.getElementById('videoContainer'); videoContainer.innerHTML = ''; // Clear any existing content data.Contents.forEach(function (file) { console.log("Processing file:", file.Key); if (file.Key.endsWith('.mp4') || file.Key.endsWith('.mov') || file.Key.endsWith('.avi')) { var videoElement = document.createElement('video'); videoElement.src = 'https://s3.us-east-2.amazonaws.com/halseyvision.com/' + file.Key; videoElement.controls = true; videoElement.width = 320; videoContainer.appendChild(videoElement); // Adding a line break after each video var br = document.createElement("br"); videoContainer.appendChild(br); } }); }); } function adjustSidebarHeight() { const sidebar = document.getElementById('sidebar'); const viewportHeight = window.innerHeight; sidebar.style.height = viewportHeight + 'px'; } window.onload = adjustSidebarHeight; window.onresize = adjustSidebarHeight; document.addEventListener('DOMContentLoaded', displayUploadedVideos);