Dear Customers,

 

Today, we released Version 3.1.0 of the YouTube Video Backend!

 

Changelog:

  • Fixed TikTok, Facebook, Instagram, and X (Twitter) Extractors
  • Added DMCA function in Admin Panel to Block videos.
  • Added related videos to search API

 

Updated / New files

  • app/Http/Controllers/ApiController.php
    app/Http/Livewire/UrlBlacklist.php (new)
    app/Models/BlacklistUrl.php (new)
    app/Models/Extractor.php (new)
    database/migrations/2023_03_11_005440_create_extractors_table.php (new)
    database/migrations/2023_03_12_230403_create_blacklist_urls_table.php (new)
    database/seeders/DatabaseSeeder.php
    database/seeders/ExtractorSeeder.php (new)
    lib/BackendApp.php
    lib/DMCA.php (new)
    lib/Extractors/Extractor.php
    lib/Extractors/Facebook.php
    lib/Extractors/Instagram.php
    lib/Extractors/Tiktok.php
    lib/Extractors/Twitter.php
    lib/Extractors/YoutubeData.php (new)
    lib/Extractors/YoutubeSearch.php (removed)
    resources/views/admin/url-blacklist.blade.php (new)
    resources/views/livewire/url-blacklist.blade.php (new)
    resources/views/navigation-menu.blade.php
    routes/api.php
    routes/web.php

 

To utilize the new DMCA function within the Admin Panel, it is imperative to migrate the new database tables. To accomplish this task, execute the following commands in the console at the backend installation directory:

 

 php artisan migrate 

 php artisan db:seed --class=ExtractorSeeder 

 

These commands will ensure that the necessary database tables are created or updated, enabling the functionality of the DMCA feature within the Admin Panel.

 

That's it!



Wednesday, March 20, 2024

« Back