Coder Social home page Coder Social logo

timestamp-secure-videolink's Introduction

Защищенная ссылка на видео с временной меткой

Приложение для генерации временных ссылок на стороне сервера, с целью предотвращения парсинга видео. Внимание репозиторий весит > 100мб. (Из-за файлов .mp4)

Для эксперимента время жизни ссылки 5 минут. (Можете поставить хоть 24 часа)

async generateTimeLink(req: Request, res: Response) {
        const { id } = req.query;

        try {
            const data: IData = await ExpiredModel.findById(id)
            const video = data.video;
            const key = uuidv4();
            const date = Date.now() + 300000; //5 минут
            const timeStamp = new TimeModel({ key, date });
            const savedTimeData = await timeStamp.save();
            res.status(201).json({
                link: `${process.env["API"]}/assets/videos/${video}?exp=${savedTimeData.date}&expkey=${savedTimeData.key}`,
            });
        } catch (e) {
            res.status(404).json({ message: (e as Error).message });
        }
    }

Образец сгенерированной ссылки: http://localhost:8080/api/assets/videos/kzjigit.mp4?exp=1663184645286&expkey=ac037407-2e5a-4543-b3a3-786788f4eaa4

Стэк: React, Express, Typescript, MongoDB

Ссылка на YouTube: https://youtu.be/jMYykQijA8k

timestamp-secure-videolink's People

Contributors

rafaelnassybullin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.