Compare commits
No commits in common. "dev-indep" and "v0.1.1-beta" have entirely different histories.
dev-indep
...
v0.1.1-bet
@ -8,4 +8,3 @@ docker-compose.yml
|
|||||||
LICENSE
|
LICENSE
|
||||||
*.md
|
*.md
|
||||||
dockerhash.txt
|
dockerhash.txt
|
||||||
app/static
|
|
||||||
|
65
.github/workflows/docker-build.yml
vendored
65
.github/workflows/docker-build.yml
vendored
@ -11,20 +11,20 @@ jobs:
|
|||||||
cpython-build-docker:
|
cpython-build-docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.4
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1.2.0
|
uses: docker/setup-qemu-action@v1
|
||||||
with:
|
with:
|
||||||
platforms: all
|
platforms: all
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1.5.1
|
uses: docker/setup-buildx-action@v1
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1.10.0
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
@ -33,14 +33,14 @@ jobs:
|
|||||||
- name: Write the current version to a file
|
- name: Write the current version to a file
|
||||||
run: "{ git describe --tags --abbrev=0 & date +\"%d-%m-%y\" & git rev-list HEAD --max-count=1 --abbrev-commit;} > version.txt"
|
run: "{ git describe --tags --abbrev=0 & date +\"%d-%m-%y\" & git rev-list HEAD --max-count=1 --abbrev-commit;} > version.txt"
|
||||||
- name: cache docker cache
|
- name: cache docker cache
|
||||||
uses: actions/cache@v2.1.6
|
uses: actions/cache@v2.1.2
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/cache
|
path: ${{ github.workspace }}/cache
|
||||||
key: ${{ runner.os }}-docker-cpython-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/dockerhash.txt') }}
|
key: ${{ runner.os }}-docker-cpython-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/dockerhash.txt') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-docker-cpython-
|
${{ runner.os }}-docker-cpython-
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2.6.1
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
@ -52,20 +52,20 @@ jobs:
|
|||||||
pypy-build-docker:
|
pypy-build-docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.4
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1.2.0
|
uses: docker/setup-qemu-action@v1
|
||||||
with:
|
with:
|
||||||
platforms: all
|
platforms: all
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1.5.1
|
uses: docker/setup-buildx-action@v1
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1.10.0
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
@ -74,14 +74,14 @@ jobs:
|
|||||||
- name: Write the current version to a file
|
- name: Write the current version to a file
|
||||||
run: "{ git describe --tags --abbrev=0 & date +\"%d-%m-%y\" & git rev-list HEAD --max-count=1 --abbrev-commit;} > version.txt"
|
run: "{ git describe --tags --abbrev=0 & date +\"%d-%m-%y\" & git rev-list HEAD --max-count=1 --abbrev-commit;} > version.txt"
|
||||||
- name: cache docker cache
|
- name: cache docker cache
|
||||||
uses: actions/cache@v2.1.6
|
uses: actions/cache@v2.1.2
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/cache
|
path: ${{ github.workspace }}/cache
|
||||||
key: ${{ runner.os }}-docker-pypy-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/dockerhash.txt') }}
|
key: ${{ runner.os }}-docker-pypy-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/dockerhash.txt') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-docker-pypy-
|
${{ runner.os }}-docker-pypy-
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2.6.1
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./pypy.Dockerfile
|
file: ./pypy.Dockerfile
|
||||||
@ -90,44 +90,3 @@ jobs:
|
|||||||
tags: ytorg/yotter:pypy
|
tags: ytorg/yotter:pypy
|
||||||
cache-from: type=local,src=cache
|
cache-from: type=local,src=cache
|
||||||
cache-to: type=local,dest=cache
|
cache-to: type=local,dest=cache
|
||||||
nginx-build-docker:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2.3.4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v1.2.0
|
|
||||||
with:
|
|
||||||
platforms: all
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v1.5.1
|
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1.10.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
- name: Get hash of latest image
|
|
||||||
run: docker pull nginx:mainline-alpine && docker inspect --format='{{index .RepoDigests 0}}' nginx:mainline-alpine > dockerhash.txt
|
|
||||||
- name: Write the current version to a file
|
|
||||||
run: "{ git describe --tags --abbrev=0 & date +\"%d-%m-%y\" & git rev-list HEAD --max-count=1 --abbrev-commit;} > version.txt"
|
|
||||||
- name: cache docker cache
|
|
||||||
uses: actions/cache@v2.1.6
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/cache
|
|
||||||
key: ${{ runner.os }}-docker-nginx-${{ hashFiles('**/dockerhash.txt') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-docker-nginx-
|
|
||||||
- name: Build and push
|
|
||||||
uses: docker/build-push-action@v2.6.1
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: ./Dockerfile
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
push: true
|
|
||||||
tags: ytorg/nginx:latest
|
|
||||||
cache-from: type=local,src=cache
|
|
||||||
cache-to: type=local,dest=cache
|
|
||||||
|
190
CHANGELOG.md
Normal file
190
CHANGELOG.md
Normal file
@ -0,0 +1,190 @@
|
|||||||
|
## Changelog is not updated anymore. [Check commits](https://github.com/ytorg/Yotter/commits/dev-indep) to see new features / fixes.
|
||||||
|
|
||||||
|
## [0.2.7] - 2020.09.26
|
||||||
|
### How to update:
|
||||||
|
1. See [UPDATE](https://github.com/ytorg/Yotter/blob/dev-indep/SELF-HOSTING.md#updating-the-server) if you are on a manual installation. Docker can be updated normally.
|
||||||
|
|
||||||
|
2. **IMPORTANT** You will need to change the nginx config file (`/etc/nginx/sites-enabled/yotter`) by adding `/a` on the proxy rule so it should look like this:
|
||||||
|
```
|
||||||
|
location ~ (/videoplayback|/vi/|/a/) {
|
||||||
|
proxy_buffering off;
|
||||||
|
resolver 1.1.1.1;
|
||||||
|
proxy_pass https://$arg_host;
|
||||||
|
proxy_set_header Host $arg_host;
|
||||||
|
add_header Access-Control-Allow-Origin *;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Reload nginx `sudo service nginx reload`
|
||||||
|
### Added
|
||||||
|
- [x] Admins can add a donation link to the Instance - Check `yotter-config.json` after update.
|
||||||
|
- [x] You can now use `<instance>/registrations_status/icon` and `<instance>/registrations_status/text` to get registrations info.
|
||||||
|
### Fixed
|
||||||
|
- [x] Channel images were not proxied.
|
||||||
|
|
||||||
|
## [0.2.6] - 2020.09.20
|
||||||
|
### How to update
|
||||||
|
1. See [UPDATE](https://github.com/ytorg/Yotter/blob/dev-indep/SELF-HOSTING.md#updating-the-server) if you are on a manual installation. Docker can be updated normally.
|
||||||
|
|
||||||
|
2. **IMPORTANT** You will need to change the nginx config file (`/etc/nginx/sites-enabled/yotter`) and it should look [like this](https://bin.nixnet.services/?414267b3cfd753b4#EX8Zwpj4iXTBjkGThCiaV88bYZfzvmmaG2sokLKKYQFu).
|
||||||
|
|
||||||
|
3. Reload nginx `sudo service nginx reload`
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [x] Admin tools - Delete inactive users.
|
||||||
|
- [x] Youtube: Play only audio.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [x] Database character limits.
|
||||||
|
|
||||||
|
## [0.2.5] - 2020.09.10
|
||||||
|
### How to update
|
||||||
|
1. `sudo supervisorctl stop yotter`
|
||||||
|
2. `cd </path/to>/Yotter`
|
||||||
|
3. `git pull`
|
||||||
|
4. `source venv/bin/activate`
|
||||||
|
5. `pip install -r requirements.txt`
|
||||||
|
6. `sudo nano /etc/nginx/sites-enabled/yotter`
|
||||||
|
* Add the following lines right below the `location /static {.....}` block:
|
||||||
|
```
|
||||||
|
location /videoplayback {
|
||||||
|
proxy_buffering off;
|
||||||
|
resolver 1.1.1.1;
|
||||||
|
proxy_pass https://$arg_hostname;
|
||||||
|
proxy_set_header Host $arg_hostname;
|
||||||
|
add_header Access-Control-Allow-Origin *;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
> Your `/etc/nginx/sites-enabled/yotter` file should look something [like this](https://bin.nixnet.services/?d319d06feb1f5756#HgsMgpN9kob7vB5GpUtdTtqZeCdb5SEggLzwr4YAaYo).
|
||||||
|
7. Edit your `yotter-config.json` file and set the `isInstance` option to True.
|
||||||
|
8. `sudo service nginx reload`
|
||||||
|
9. `sudo supervisorctl start yotter`
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [x] Nginx video streaming for better experience - [See how to activate it]()
|
||||||
|
- [x] New data extractor module for videos.
|
||||||
|
- [x] Show deleted tweets as deleted instead of error.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [x] Youtube feed not loading due to datetime not found
|
||||||
|
|
||||||
|
## [0.2.4] - 2020.09.07
|
||||||
|
### Changed
|
||||||
|
- [x] Remove non implemented settings from settings page.
|
||||||
|
- [x] Changed video streaming chunk size.
|
||||||
|
- [x] Video streaming now has a smaller load for the server.
|
||||||
|
- [x] Video streaming is (a bit) more efficient - YoutubeDL moved on /watch instead.
|
||||||
|
- [x] Settings page improved.
|
||||||
|
- [x] Default DB to .env or environment DATABASE_URI and fallback to app.db.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [x] Add instance info on settings page.
|
||||||
|
- [x] Documentation: Contributing section.
|
||||||
|
- [x] Option to delete an account.
|
||||||
|
- [x] Show video title on browser tab title on `/watch`.
|
||||||
|
- [x] Ability for admins to allow non-registered users to use the service.
|
||||||
|
- [x] Added last_seen - See #35
|
||||||
|
- [x] See last 40 minutes active users on settings.
|
||||||
|
- [x] Video streaming headers - #27
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [x] Video descriptions overflowing the description box.
|
||||||
|
- [x] Twitter: mentioned users on feed lead to broken links.
|
||||||
|
|
||||||
|
## [0.2.3] - 2020-09-04
|
||||||
|
### Added
|
||||||
|
- [x] Youtube: Proxy all images through Yotter.
|
||||||
|
- [x] General: Add server config file.
|
||||||
|
- [x] General: @Sn0wed1 added a Docker file and Docker installation instructions.
|
||||||
|
|
||||||
|
## [0.2.2] - 2020-08-27
|
||||||
|
### Changed
|
||||||
|
- [x] Twitter: Scrap nitter pages instead of using RSS.
|
||||||
|
- [x] Youtube: Improved video UI
|
||||||
|
- [x] General: Following management page UI improved.
|
||||||
|
### Added
|
||||||
|
- [x] Twitter: Quotations are now shown
|
||||||
|
- [x] Youtube: Ability to seek videos!
|
||||||
|
### Fixed
|
||||||
|
- [x] Twitter: Empty feed was showing an ugly text
|
||||||
|
|
||||||
|
## [0.2.1] - 2020-08-25
|
||||||
|
### Changed
|
||||||
|
- [x] Twitter: Improve general UI and efficiency
|
||||||
|
- [x] Twitter & Youtube: Posts older than 15 days are not shown anymore
|
||||||
|
- [x] Youtube: All channel links now link within Parasitter
|
||||||
|
- [x] Twitter: Improve database logic
|
||||||
|
- [x] Twitter: Remove Following tab and move it to 'following number'
|
||||||
|
- [x] General: Ability to import accounts from exported JSON file
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [x] General: Welcome page
|
||||||
|
- [x] Youtube: Ability to view a channel page: /channel/<id>
|
||||||
|
- [x] Youtube: Ability to search with full text: Channels and videos.
|
||||||
|
- [x] Youtube: Ability to Follow and Unfollow a user from the channel profile.
|
||||||
|
- [x] Youtube: Manage followed accounts clicking on 'following number'
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [x] Youtube: Channel link on channel videos not working.
|
||||||
|
- [x] General: Most usernames were already taken.
|
||||||
|
|
||||||
|
## [0.2.1a] - 2020-08-16
|
||||||
|
#### Breaking dependence with Invidious.
|
||||||
|
### Changed
|
||||||
|
- [x] Get video info through `youtube-dl`
|
||||||
|
- [x] Stream video to client through local proxy.
|
||||||
|
- [x] List videos without Invidious RSS feed.
|
||||||
|
- [x] Use Video.js player.
|
||||||
|
- [x] Search no longer depends on Invidious / APIs
|
||||||
|
|
||||||
|
## [0.2.0] - 2020-07-29
|
||||||
|
### Added
|
||||||
|
- [x] Export your followed accounts (Youtube and Twitter) to a JSON file
|
||||||
|
- [x] Youtube: follow Youtube accounts.
|
||||||
|
- [x] Youtube: Manage suscriptions
|
||||||
|
- [x] Youtube: Show video time duration
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [x] Efficiency improvements. ~1s reduction on fetching time.
|
||||||
|
- [x] Minor UI changes.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [x] Saving posts didn't work on 2020.07.24 update.
|
||||||
|
|
||||||
|
## [0.1.0] - 2020-07-19
|
||||||
|
### Added
|
||||||
|
- [x] Ability to save posts.
|
||||||
|
- [x] Ability to remove a saved post.
|
||||||
|
- [x] Error pages: Error 500, Error 405
|
||||||
|
- [x] Open the original post on Nitter.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [x] Significant improvement on fetching feed efficiency - Parallelism applied.
|
||||||
|
- [x] Changelogs now using [Keep a changelog](https://keepachangelog.com/en/1.0.0/) style.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [x] "Saved" menu element logged out instead of showing saved posts.
|
||||||
|
|
||||||
|
## [0.0.2] - 2020-07-14
|
||||||
|
### Added
|
||||||
|
- [x] First implementation of saved posts - Not working yet.
|
||||||
|
- [x] Error 404 page.
|
||||||
|
- [x] Empty feed now shows a notice.
|
||||||
|
- [x] Requirements.txt file for a better installation and update experience.
|
||||||
|
- [x] Pinned posts are now marked as it.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [x] More flexible user search. Search by username and show a list of possible results.
|
||||||
|
- [x] Minor UI fixes.
|
||||||
|
- [x] Fetching of accounts in a slightly more efficient way.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [0.0.1] - 2020-07-13
|
||||||
|
### Added
|
||||||
|
- [x] Ability to follow accounts.
|
||||||
|
- [x] Ability to unfollow accounts.
|
||||||
|
- [x] Ability to register users.
|
||||||
|
- [x] Ability to visit a user profile.
|
||||||
|
- [x] Search a user by its exact username.
|
@ -8,7 +8,7 @@ WORKDIR /usr/src/app
|
|||||||
COPY ./requirements.txt /usr/src/app
|
COPY ./requirements.txt /usr/src/app
|
||||||
|
|
||||||
# Build Dependencies
|
# Build Dependencies
|
||||||
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++ cargo rust
|
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++
|
||||||
|
|
||||||
# Python Dependencies
|
# Python Dependencies
|
||||||
RUN pip install --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|
RUN pip install --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|
||||||
|
75
README.md
75
README.md
@ -1,12 +1,8 @@
|
|||||||
## This project is no longer maintained. Visit [this repo](https://github.com/TeamPiped/Piped) for an alternative.
|
|
||||||
|
|
||||||
<p align="center"> <img width="700" src="app/static/img/banner.png"> </img></p>
|
<p align="center"> <img width="700" src="app/static/img/banner.png"> </img></p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://www.gnu.org/licenses/gpl-3.0"><img alt="License: GPL v3" src="https://img.shields.io/badge/License-AGPLv3-blue.svg"></img></a>
|
<a href="https://www.gnu.org/licenses/gpl-3.0"><img alt="License: GPL v3" src="https://img.shields.io/badge/License-AGPLv3-blue.svg"></img></a>
|
||||||
<a href="https://github.com/pluja/Yotter"><img alt="Development state" src="https://img.shields.io/badge/State-Beta-blue.svg"></img></a>
|
<a href="https://github.com/pluja/Yotter"><img alt="Development state" src="https://img.shields.io/badge/State-Beta-blue.svg"></img></a>
|
||||||
<a href="https://github.com/pluja/Yotter/pulls"><img alt="Pull Requests Welcome" src="https://img.shields.io/badge/PRs-Welcome-green.svg"></img></a>
|
<a href="https://github.com/pluja/Yotter/pulls"><img alt="Pull Requests Welcome" src="https://img.shields.io/badge/PRs-Welcome-green.svg"></img></a>
|
||||||
<a href="https://git.kavin.rocks/kavin/Yotter"><img alt="Mirror 1" src="https://img.shields.io/badge/Mirror1-git.kavin.rocks-teal"></img></a>
|
|
||||||
<a href="https://84.38.177.154/libremirrors/ytorg/Yotter"><img alt="Mirror 2" src="https://img.shields.io/badge/Mirror2-git.rip-purple"></img></a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
Yotter allows you to follow and gather all the content from your favorite Twitter and YouTube accounts in a *beautiful* feed so you can stay up to date without compromising your privacy at all. Yotter is written with Python and Flask and uses Semantic-UI as its CSS framework.
|
Yotter allows you to follow and gather all the content from your favorite Twitter and YouTube accounts in a *beautiful* feed so you can stay up to date without compromising your privacy at all. Yotter is written with Python and Flask and uses Semantic-UI as its CSS framework.
|
||||||
@ -16,7 +12,6 @@ Yotter is possible thanks to several open-source projects that are listed on the
|
|||||||
# Index:
|
# Index:
|
||||||
* [Why](#why)
|
* [Why](#why)
|
||||||
* [Features](#features)
|
* [Features](#features)
|
||||||
* [Roadmap](#roadmap)
|
|
||||||
* [FAQ](#FAQ)
|
* [FAQ](#FAQ)
|
||||||
* [Privacy and Security](#privacy)
|
* [Privacy and Security](#privacy)
|
||||||
* [Public instances](#public-instances)
|
* [Public instances](#public-instances)
|
||||||
@ -34,7 +29,7 @@ With the *particular* data about you, they can get money from the highest bidder
|
|||||||
|
|
||||||
Further more, they don't care about **what you in particular watch**, this is only sold to the highest bidder who then may or may not do the harm. What they care more about is **what people watch** this is the important data and the one that allows to manipulate, bias, censor, etc.
|
Further more, they don't care about **what you in particular watch**, this is only sold to the highest bidder who then may or may not do the harm. What they care more about is **what people watch** this is the important data and the one that allows to manipulate, bias, censor, etc.
|
||||||
|
|
||||||
So we need platforms and spaces where we can freely watch and listen content without these watchful eyes upon us. Ideally, everyone would use a free (as in freedom) and decentralized platform like [Peertube](https://joinpeertube.org/), [Odysee](https://odysee.com/), [Mastodon](https://joinmastodon.org/) or [Pleroma](https://pleroma.social/) but things are not like this. The main multimedia content factory is Youtube and the microblogging king is Twitter. So we will do whatever is possible to be able to watch and read the content and avoid the surveillance that seeks us these days. We will resist.
|
So we need platforms and spaces where we can freely watch and listen content without these watchful eyes upon us. Ideally, everyone would use a free (as in freedom) and decentralized platform like [Peertube](https://joinpeertube.org/), [LBRY](https://lbry.tv/), [Mastodon](https://joinmastodon.org/) or [Pleroma](https://pleroma.social/) but things are not like this. The main multimedia content factory is Youtube and the microblogging king is Twitter. So we will do whatever is possible to be able to watch and read the content and avoid the surveillance that seeks us these days. We will resist.
|
||||||
|
|
||||||
# Features:
|
# Features:
|
||||||
- [x] No Ads.
|
- [x] No Ads.
|
||||||
@ -49,28 +44,14 @@ So we need platforms and spaces where we can freely watch and listen content wit
|
|||||||
- [x] Save your favourite Tweets.
|
- [x] Save your favourite Tweets.
|
||||||
- [x] Tor-friendly.
|
- [x] Tor-friendly.
|
||||||
- [x] Terminal-browser friendly.
|
- [x] Terminal-browser friendly.
|
||||||
- [x] Fair non-adictive UX - No recommendations, no trending, no tops. Just your feed and your searches.
|
|
||||||
|
|
||||||
*Video player is VideoJS, which uses JavaScript. But if JavaScript is disabled Yotter still works perfectly and uses the default HTML video player.
|
*Video player is VideoJS, which uses JavaScript. But if JavaScript is disabled Yotter still works perfectly and uses the default HTML video player.
|
||||||
|
|
||||||
### Roadmap
|
|
||||||
The following features are planned to be implemented in the near future:
|
|
||||||
* [ ] Improve performance and efficiency
|
|
||||||
|
|
||||||
#### Youtube specific:
|
|
||||||
* [ ] Subtitles
|
|
||||||
* [ ] > 720p Quality
|
|
||||||
* [ ] Save youtube videos
|
|
||||||
* [ ] Support for live streams
|
|
||||||
|
|
||||||
#### Twitter specific:
|
|
||||||
* [ ] Translations
|
|
||||||
|
|
||||||
# FAQ
|
# FAQ
|
||||||
### What's the difference between this and Invidious?
|
### What's the difference between this and Invidious?
|
||||||
At first I started working on this project as a solution for following Twitter accounts (a thing that can't be done with Nitter) and getting a Twitter-like feed. Weeks later the leader of Invidious, Omar Roth, announced that he was stepping away from the project. As an Invidious active user, this made me think that a new alternative was needed for the community and also an alternative with an easier programming language for most people (as Invidious is written in Crystal). So I started developing a '*written-in-python Invidious alternative*' and it went quite well.
|
At first I started working on this project as a solution for following Twitter accounts (a thing that can't be done with Nitter) and getting a Twitter-like feed. Weeks later the leader of Invidious, Omar Roth, announced that he was stepping away from the project. As an Invidious active user, this made me think that a new alternative was needed for the community and also an alternative with an easier programmin language for most people (as Invidious is written in Crystal). So I started developing a '*written-in-python Invidious alternative*' and it went quite well.
|
||||||
|
|
||||||
I hope that this project can prosper, gain contributors, new instances and create a good community around it.
|
I hope that this project can prosperate, gain contributors, new instances and create a good community around it.
|
||||||
|
|
||||||
### Why do I have to register to use Yotter?
|
### Why do I have to register to use Yotter?
|
||||||
|
|
||||||
@ -84,13 +65,6 @@ Admins are allowed to remove restrictions on any page they want. [Check this sec
|
|||||||
|
|
||||||
If you want to use Yotter, it is recommended to self-host your own instance. You can use it for personal use or open it to the world. Self-hosting makes Yotter stronger and gives you full power. See [self hosting guide](https://github.com/ytorg/Yotter/blob/dev-indep/SELF-HOSTING.md).
|
If you want to use Yotter, it is recommended to self-host your own instance. You can use it for personal use or open it to the world. Self-hosting makes Yotter stronger and gives you full power. See [self hosting guide](https://github.com/ytorg/Yotter/blob/dev-indep/SELF-HOSTING.md).
|
||||||
|
|
||||||
### Will you ever implement video recommendations, trending videos, etc?
|
|
||||||
No. From my point of view, these are toxic features. I, and every user, should be using all *social media* to get the content **they** want. Recomendations, trending, autoplay next video, etc. are all features designed to trap users on using the app, to make them forget about the time spent there and to create an addiction to it. No, I won't implement any toxic features on Yotter. Yotter will keep the UI clean, fast and simple.
|
|
||||||
|
|
||||||
You get your feed from followed accounts and you can search for any video you like. Only thing I would consider implementing would be some kind of page where you can ask for recommendations for a particular video. This way the user would, voluntarily, ask for the recommendations rather than having a temptation to click on a new, youtube-bias-recommended video.
|
|
||||||
|
|
||||||
Please read: [1](https://arxiv.org/abs/1912.11211), [2](https://medium.com/dataseries/how-youtube-is-addictive-259d5c575883), [3](https://www.their.tube/), [4](https://www.sciencedirect.com/science/article/pii/S1386505619308743?via%3Dihub)
|
|
||||||
|
|
||||||
# Privacy
|
# Privacy
|
||||||
#### Connections
|
#### Connections
|
||||||
Yotter cares about your privacy, and for this it will never make any connection to Twitter or Youtube on the client. Every request is proxied through the Yotter server; video streaming, photos, data gathering, scrapping, etc.
|
Yotter cares about your privacy, and for this it will never make any connection to Twitter or Youtube on the client. Every request is proxied through the Yotter server; video streaming, photos, data gathering, scrapping, etc.
|
||||||
@ -147,34 +121,31 @@ These are projects that either make Yotter possible as an **essential part** of
|
|||||||
* [Video.js](https://videojs.com/)
|
* [Video.js](https://videojs.com/)
|
||||||
* [Invidious](https://github.com/iv-org/invidious)
|
* [Invidious](https://github.com/iv-org/invidious)
|
||||||
|
|
||||||
# [Donate](https://github.com/pluja/pluja/blob/main/SUPPORT.md)
|
# Donate
|
||||||
|
|
||||||
[Click here to see donation options](https://github.com/pluja/pluja/blob/main/SUPPORT.md)
|
|
||||||
|
|
||||||
This project is completely free and Open Source and will always be.
|
This project is completely free and Open Source and will always be.
|
||||||
|
|
||||||
Donations are used to mantain the [yotter.xyz](https://yotter.xyz/) public instance. [This is the server](https://www.netcup.eu/bestellen/produkt.php?produkt=2598) that I have rented for now.
|
Donations are used to mantain the [yotter.xyz](https://yotter.xyz/) public instance. [This is the server](https://www.netcup.eu/bestellen/produkt.php?produkt=2598) that I have rented for now.
|
||||||
|
|
||||||
|
#### Crypto:
|
||||||
|
##### Preferred
|
||||||
|
- **Bitcoin**: `bc1q5y3g907ju0pt40me7dr9fy5uhfhfgfv9k3kh3z`
|
||||||
|
- **Monero**: `48nQGAXaC6eFK2Wo7SVVyF9xL333gDHjzdmRL3XETEqbU3w4CcKjjHVUZPU4W3dg1oJL8be3iGtUAQsgV88dzbS7QNpZjC2`
|
||||||
|
|
||||||
|
##### Others:
|
||||||
|
- **Ethereum**: `0x6cf0B1C3354c255F1a876f4833A1BBE82D887Ad6`
|
||||||
|
- **Litecoin**: `MHjnpYHwu4y4AeQvVBDv52T8V6BzVxmiNZ`
|
||||||
|
- **ZCash**: `t1a6smU9a6dxGfZWcX9bCRzE31qsaF27FsD`
|
||||||
|
|
||||||
|
#### Fiat:
|
||||||
|
- <a href="https://liberapay.com/pluja/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
#### Twitter / Tweets / Profiles
|
<p align="center"> <img width="720" src="https://i.imgur.com/6AfXO57.png"> </img></p>
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/tA15ciH.png"> </img></p>
|
<p align="center"> <img width="720" src="https://i.imgur.com/jipjySH.png"> </img></p>
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/BYswFy6.png"> </img></p>
|
<p align="center"> <img width="720" src="https://i.imgur.com/JMUW6VH.png"> </img></p>
|
||||||
|
<p align="center"> <img width="720" src="https://i.imgur.com/a7rM4sv.png"> </img></p>
|
||||||
#### Twitter search
|
<p align="center"> <img width="720" src="https://i.imgur.com/skXFMqE.png"> </img></p>
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/KalBDa5.png"> </img></p>
|
<p align="center"> <img width="720" src="https://i.imgur.com/AurVw5M.png"> </img></p>
|
||||||
|
|
||||||
#### Youtube feed
|
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/rHsKl0e.png"> </img></p>
|
|
||||||
|
|
||||||
#### Youtube video page / Comments
|
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/pQhLcvI.png"> </img></p>
|
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/kZPGUdq.png"> </img></p>
|
|
||||||
|
|
||||||
#### Youtube channel page
|
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/zybRB7X.png"> </img></p>
|
|
||||||
|
|
||||||
#### Youtube search
|
|
||||||
<p align="center"> <img width="720" src="https://i.imgur.com/XHCSNTP.png"> </img></p>
|
|
||||||
|
|
||||||
## Redirect
|
## Redirect
|
||||||
If you want to worry less and enjoy Yotter more, you can use any of the following extensions to redirect Youtube to Yotter automatically:
|
If you want to worry less and enjoy Yotter more, you can use any of the following extensions to redirect Youtube to Yotter automatically:
|
||||||
|
@ -123,7 +123,7 @@ If after the MySQL-server installation you have not been prompted to create a pa
|
|||||||
* `pip install cryptography`
|
* `pip install cryptography`
|
||||||
* `pip install -r requirements.txt`
|
* `pip install -r requirements.txt`
|
||||||
|
|
||||||
> You can edit the `yotter-config.json` file. [Check out all the options here](#configure-the-server)
|
> You can edit the `yotter-config.json` file. [Check out all the options here](https://github.com/ytorg/Yotter/blob/dev-indep/README.md#configure-the-server)
|
||||||
|
|
||||||
5. Install gunicorn (production web server for Python apps) and pymysql:
|
5. Install gunicorn (production web server for Python apps) and pymysql:
|
||||||
`pip install gunicorn pymysql`
|
`pip install gunicorn pymysql`
|
||||||
@ -203,69 +203,9 @@ killasgroup=true
|
|||||||
After you write this configuration file, you have to reload the supervisor service for it to be imported:
|
After you write this configuration file, you have to reload the supervisor service for it to be imported:
|
||||||
`sudo supervisorctl reload`
|
`sudo supervisorctl reload`
|
||||||
|
|
||||||
#### Step 4: Set up Nginx, http3 proxy and HTTPS
|
#### Step 4: Nginx set up and HTTPS
|
||||||
The Yotter application server powered by gunicorn is now running privately port 8000. Now we need to expose the application to the outside world by enabling public facing web server on ports 80 and 443, the two ports too need to be opened on the firewall to handle the web traffic of the application. I want this to be a secure deployment, so I'm going to configure port 80 to forward all traffic to port 443, which is going to be encrypted. [ref](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvii-deployment-on-linux).
|
The Yotter application server powered by gunicorn is now running privately port 8000. Now we need to expose the application to the outside world by enabling public facing web server on ports 80 and 443, the two ports too need to be opened on the firewall to handle the web traffic of the application. I want this to be a secure deployment, so I'm going to configure port 80 to forward all traffic to port 443, which is going to be encrypted. [ref](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvii-deployment-on-linux).
|
||||||
|
|
||||||
First we will get and set up the `http3-ytproxy`. For this we will need to [install go](https://github.com/golang/go/wiki/Ubuntu) but if you are on Ubuntu 20.04 or you have `snap` installed you can just run `sudo snap install --classic go` to get `go` installed.
|
|
||||||
|
|
||||||
Then you will need to run the following commands:
|
|
||||||
```
|
|
||||||
cd $HOME
|
|
||||||
git clone https://github.com/FireMasterK/http3-ytproxy
|
|
||||||
cd http3-ytproxy
|
|
||||||
go build -ldflags "-s -w" main.go
|
|
||||||
mv main http3-ytproxy
|
|
||||||
mkdir socket
|
|
||||||
chown -R www-data:www-data socket
|
|
||||||
```
|
|
||||||
|
|
||||||
Now we will configure a `systemd` service to run the http3-ytproxy. For this you will need to `sudo nano /lib/systemd/system/http3-ytproxy.service` to start a the `nano` text editor. Now copy and paste this and save:
|
|
||||||
|
|
||||||
> IMPORTANT: You may need to change some paths to fit your system!
|
|
||||||
|
|
||||||
```
|
|
||||||
[Unit]
|
|
||||||
Description=Sleep service
|
|
||||||
ConditionPathExists=/home/ubuntu/http3-ytproxy/http3-ytproxy
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User=www-data
|
|
||||||
Group=www-data
|
|
||||||
LimitNOFILE=1024
|
|
||||||
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=10
|
|
||||||
|
|
||||||
WorkingDirectory=/home/ubuntu/http3-ytproxy
|
|
||||||
ExecStart=/home/ubuntu/http3-ytproxy/http3-ytproxy
|
|
||||||
|
|
||||||
# make sure log directory exists and owned by syslog
|
|
||||||
PermissionsStartOnly=true
|
|
||||||
ExecStartPre=/bin/mkdir -p /var/log/http3-ytproxy
|
|
||||||
ExecStartPre=/bin/chown syslog:adm /var/log/http3-ytproxy
|
|
||||||
ExecStartPre=/bin/chmod 755 /var/log/http3-ytproxy
|
|
||||||
StandardOutput=syslog
|
|
||||||
StandardError=syslog
|
|
||||||
SyslogIdentifier=http3-ytproxy
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
```
|
|
||||||
|
|
||||||
> IMPORTANT NOTE: Some distros have the Nginx user as `nginx` instead of `www-data`, if this is the case you should change the `User=` and `Group=` variables from the service file.
|
|
||||||
|
|
||||||
Now you are ready to enable and start the service:
|
|
||||||
```
|
|
||||||
sudo systemctl enable http3-ytproxy.service
|
|
||||||
sudo systemctl start http3-ytproxy.service
|
|
||||||
```
|
|
||||||
|
|
||||||
If you did everything ok you should see no errors when running `sudo journalctl -f -u http3-ytproxy`.
|
|
||||||
|
|
||||||
Now we will set up Nginx. To do so:
|
|
||||||
|
|
||||||
* `sudo rm /etc/nginx/sites-enabled/default`
|
* `sudo rm /etc/nginx/sites-enabled/default`
|
||||||
|
|
||||||
Create a new Nginx site, you can run `sudo nano /etc/nginx/sites-enabled/yotter`
|
Create a new Nginx site, you can run `sudo nano /etc/nginx/sites-enabled/yotter`
|
||||||
@ -285,21 +225,15 @@ server {
|
|||||||
expires 30d;
|
expires 30d;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ (^/videoplayback$|/videoplayback/|/vi/|/a/|/ytc/) {
|
location ~ (/videoplayback|/vi/|/a/) {
|
||||||
proxy_pass http://unix:/home/ubuntu/http3-ytproxy/socket/http-proxy.sock;
|
proxy_buffering off;
|
||||||
|
resolver 1.1.1.1;
|
||||||
|
proxy_pass https://$arg_host;
|
||||||
|
proxy_set_header Host $arg_host;
|
||||||
add_header Access-Control-Allow-Origin *;
|
add_header Access-Control-Allow-Origin *;
|
||||||
sendfile on;
|
|
||||||
tcp_nopush on;
|
|
||||||
aio_write on;
|
|
||||||
aio threads=default;
|
|
||||||
directio 512;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Connection "";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
> Note: You may need to change the proxy-pass line to fit your system. It should point to the socket created on the `http3-ytproxy/socket` folder.
|
|
||||||
|
|
||||||
Make sure to replace `<yourdomain>` by the domain you are willing to use for your instance (i.e example.com). You can now edit `yotter-config.json` and set `isInstance` to `true`.
|
Make sure to replace `<yourdomain>` by the domain you are willing to use for your instance (i.e example.com). You can now edit `yotter-config.json` and set `isInstance` to `true`.
|
||||||
|
|
||||||
You will also need to change the `</path/to>` after `alias` to fit your system. You have to point to the Yotter folder, in this set up it would be `/home/ubuntu` as it is the location where we cloned the Yotter app. This alias is created to handle static files directly, without forwarding to the application.
|
You will also need to change the `</path/to>` after `alias` to fit your system. You have to point to the Yotter folder, in this set up it would be `/home/ubuntu` as it is the location where we cloned the Yotter app. This alias is created to handle static files directly, without forwarding to the application.
|
||||||
@ -317,8 +251,6 @@ Now we will run certbot and we need to tell that we run an nginx server. Here yo
|
|||||||
|
|
||||||
[Follow this instructions to install certbot and generate an ssl certificate so your server can use HTTPS](https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx)
|
[Follow this instructions to install certbot and generate an ssl certificate so your server can use HTTPS](https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx)
|
||||||
|
|
||||||
Finally, once this is done, you should edit the `yotter` nginx config and change the `listen 443 ssl;` line to `listen 443 ssl http2;`
|
|
||||||
|
|
||||||
#### Updating the server
|
#### Updating the server
|
||||||
Updating the server should always be pretty easy. These steps need to be run on the Yotter folder and with the python virtual env activated.
|
Updating the server should always be pretty easy. These steps need to be run on the Yotter folder and with the python virtual env activated.
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ class User(UserMixin, db.Model):
|
|||||||
posts = db.relationship('Post', backref='author', lazy='dynamic')
|
posts = db.relationship('Post', backref='author', lazy='dynamic')
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f'<User {self.username}>'
|
return '<User {}>'.format(self.username)
|
||||||
|
|
||||||
def set_last_seen(self):
|
def set_last_seen(self):
|
||||||
self.last_seen = datetime.utcnow()
|
self.last_seen = datetime.utcnow()
|
||||||
@ -153,7 +153,7 @@ class youtubeFollow(db.Model):
|
|||||||
back_populates="youtubeFollowed")
|
back_populates="youtubeFollowed")
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f'<youtubeFollow {self.channelName}>'
|
return '<youtubeFollow {}>'.format(self.channelName)
|
||||||
|
|
||||||
class twitterFollow(db.Model):
|
class twitterFollow(db.Model):
|
||||||
__tablename__ = 'twitterAccount'
|
__tablename__ = 'twitterAccount'
|
||||||
@ -164,7 +164,7 @@ class twitterFollow(db.Model):
|
|||||||
back_populates="twitterFollowed")
|
back_populates="twitterFollowed")
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f'<twitterFollow {self.username}>'
|
return '<twitterFollow {}>'.format(self.username)
|
||||||
|
|
||||||
class Post(db.Model):
|
class Post(db.Model):
|
||||||
id = db.Column(db.Integer, primary_key=True)
|
id = db.Column(db.Integer, primary_key=True)
|
||||||
@ -175,4 +175,5 @@ class Post(db.Model):
|
|||||||
user_id = db.Column(db.Integer, db.ForeignKey('user.id'))
|
user_id = db.Column(db.Integer, db.ForeignKey('user.id'))
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f'<Post {self.body}>'
|
return '<Post {}>'.format(self.body)
|
||||||
|
|
||||||
|
163
app/routes.py
163
app/routes.py
@ -29,14 +29,10 @@ from youtube_search import YoutubeSearch
|
|||||||
from app import app, db
|
from app import app, db
|
||||||
from app.forms import LoginForm, RegistrationForm, EmptyForm, SearchForm, ChannelForm
|
from app.forms import LoginForm, RegistrationForm, EmptyForm, SearchForm, ChannelForm
|
||||||
from app.models import User, twitterPost, ytPost, Post, youtubeFollow, twitterFollow
|
from app.models import User, twitterPost, ytPost, Post, youtubeFollow, twitterFollow
|
||||||
|
|
||||||
from youtube import comments, utils, channel as ytch, search as yts
|
from youtube import comments, utils, channel as ytch, search as yts
|
||||||
from youtube import watch as ytwatch
|
from youtube import watch as ytwatch
|
||||||
from youtube import video as ytvid
|
from youtube import video as ytvid
|
||||||
|
|
||||||
from nitter import feed as nitterfeed
|
|
||||||
from nitter import user as nitteruser
|
|
||||||
|
|
||||||
#########################################
|
#########################################
|
||||||
|
|
||||||
#########################################
|
#########################################
|
||||||
@ -85,41 +81,46 @@ def twitter(page=0):
|
|||||||
followCount = len(followingList)
|
followCount = len(followingList)
|
||||||
page = int(page)
|
page = int(page)
|
||||||
avatarPath = "img/avatars/1.png"
|
avatarPath = "img/avatars/1.png"
|
||||||
|
|
||||||
followList = []
|
|
||||||
for f in followingList:
|
|
||||||
followList.append(f.username)
|
|
||||||
posts = []
|
posts = []
|
||||||
|
|
||||||
cache_file = glob.glob(f"app/cache/{current_user.username}_*")
|
nitter_feed_link = config['nitterInstance']
|
||||||
|
c = len(followingList)
|
||||||
|
for user in followingList:
|
||||||
|
if c != 0:
|
||||||
|
nitter_feed_link = nitter_feed_link + "{},".format(user.username)
|
||||||
|
c = c - 1
|
||||||
|
else:
|
||||||
|
nitter_feed_link = nitter_feed_link + user.username
|
||||||
|
|
||||||
|
cache_file = glob.glob("app/cache/{}_*".format(current_user.username))
|
||||||
if (len(cache_file) > 0):
|
if (len(cache_file) > 0):
|
||||||
time_diff = round(time.time() - os.path.getmtime(cache_file[0]))
|
time_diff = round(time.time() - os.path.getmtime(cache_file[0]))
|
||||||
else:
|
else:
|
||||||
time_diff = 999
|
time_diff = 999
|
||||||
|
# If cache file is more than 1 minute old
|
||||||
# If cache file is older than 30 minute old
|
if page == 0 and time_diff > 60:
|
||||||
if page == 0 and time_diff > 30:
|
|
||||||
if cache_file:
|
if cache_file:
|
||||||
for f in cache_file:
|
for f in cache_file:
|
||||||
os.remove(f)
|
os.remove(f)
|
||||||
feed = nitterfeed.get_feed(followList)
|
feed = getFeed(followingList)
|
||||||
cache_file = f"{current_user.username}_{time.strftime('%Y%m%d-%H%M%S')}.json"
|
cache_file = "{u}_{d}.json".format(u=current_user.username, d=time.strftime("%Y%m%d-%H%M%S"))
|
||||||
with open(f"app/cache/{cache_file}", 'w') as fp:
|
with open("app/cache/{}".format(cache_file), 'w') as fp:
|
||||||
json.dump(feed, fp)
|
json.dump(feed, fp)
|
||||||
|
|
||||||
# Else, refresh feed
|
# Else, refresh feed
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
cache_file = glob.glob(f"app/cache/{current_user.username}*")[0]
|
cache_file = glob.glob("app/cache/{}*".format(current_user.username))[0]
|
||||||
with open(cache_file, 'r') as fp:
|
with open(cache_file, 'r') as fp:
|
||||||
feed = json.load(fp)
|
feed = json.load(fp)
|
||||||
except:
|
except:
|
||||||
feed = nitterfeed.get_feed(followList)
|
feed = getFeed(followingList)
|
||||||
cache_file = f"{current_user.username}_{time.strftime('%Y%m%d-%H%M%S')}.json"
|
cache_file = "{u}_{d}.json".format(u=current_user.username, d=time.strftime("%Y%m%d-%H%M%S"))
|
||||||
with open(f"app/cache/{cache_file}", 'w') as fp:
|
with open("app/cache/{}".format(cache_file), 'w') as fp:
|
||||||
json.dump(feed, fp)
|
json.dump(feed, fp)
|
||||||
|
|
||||||
posts.extend(feed)
|
posts.extend(feed)
|
||||||
|
posts.sort(key=lambda x: datetime.datetime.strptime(x['timeStamp'], '%d/%m/%Y %H:%M:%S'), reverse=True)
|
||||||
|
|
||||||
# Items range per page
|
# Items range per page
|
||||||
page_items = page * 16
|
page_items = page * 16
|
||||||
offset = page_items + 16
|
offset = page_items + 16
|
||||||
@ -137,8 +138,14 @@ def twitter(page=0):
|
|||||||
posts = posts[page_items:offset]
|
posts = posts[page_items:offset]
|
||||||
else:
|
else:
|
||||||
posts = posts[page_items:]
|
posts = posts[page_items:]
|
||||||
return render_template('twitter.html', title='Yotter | Twitter', posts=posts, followedCount=followCount, form=form, config=config,
|
|
||||||
pages=total_pages, init_page=init_page, actual_page=page)
|
if not posts:
|
||||||
|
profilePic = avatarPath
|
||||||
|
else:
|
||||||
|
profilePic = posts[0]['profilePic']
|
||||||
|
return render_template('twitter.html', title='Yotter | Twitter', posts=posts, avatar=avatarPath,
|
||||||
|
profilePic=profilePic, followedCount=followCount, form=form, config=config,
|
||||||
|
pages=total_pages, init_page=init_page, actual_page=page, nitter_link=nitter_feed_link)
|
||||||
|
|
||||||
|
|
||||||
@app.route('/savePost/<url>', methods=['POST'])
|
@app.route('/savePost/<url>', methods=['POST'])
|
||||||
@ -187,7 +194,7 @@ def follow(username):
|
|||||||
form = EmptyForm()
|
form = EmptyForm()
|
||||||
if form.validate_on_submit():
|
if form.validate_on_submit():
|
||||||
if followTwitterAccount(username):
|
if followTwitterAccount(username):
|
||||||
flash(f"{username} followed!")
|
flash("{} followed!".format(username))
|
||||||
return redirect(request.referrer)
|
return redirect(request.referrer)
|
||||||
|
|
||||||
|
|
||||||
@ -202,7 +209,7 @@ def followTwitterAccount(username):
|
|||||||
db.session.commit()
|
db.session.commit()
|
||||||
return True
|
return True
|
||||||
except:
|
except:
|
||||||
flash(f"Twitter: Couldn't follow {username}. Already followed?")
|
flash("Twitter: Couldn't follow {}. Already followed?".format(username))
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
flash("Something went wrong... try again")
|
flash("Something went wrong... try again")
|
||||||
@ -215,7 +222,7 @@ def unfollow(username):
|
|||||||
form = EmptyForm()
|
form = EmptyForm()
|
||||||
if form.validate_on_submit():
|
if form.validate_on_submit():
|
||||||
if twUnfollow(username):
|
if twUnfollow(username):
|
||||||
flash(f"{username} unfollowed!")
|
flash("{} unfollowed!".format(username))
|
||||||
return redirect(request.referrer)
|
return redirect(request.referrer)
|
||||||
|
|
||||||
|
|
||||||
@ -248,44 +255,31 @@ def search():
|
|||||||
if results:
|
if results:
|
||||||
return render_template('search.html', form=form, results=results, config=config)
|
return render_template('search.html', form=form, results=results, config=config)
|
||||||
else:
|
else:
|
||||||
flash(f"User {user} not found...")
|
flash("User {} not found...".format(user))
|
||||||
return redirect(request.referrer)
|
return redirect(request.referrer)
|
||||||
else:
|
else:
|
||||||
return render_template('search.html', form=form, config=config)
|
return render_template('search.html', form=form, config=config)
|
||||||
|
|
||||||
|
|
||||||
@app.route('/u/<username>')
|
@app.route('/u/<username>')
|
||||||
@app.route('/<username>')
|
@app.route('/<username>')
|
||||||
@app.route('/<username>/<page>')
|
|
||||||
@login_required
|
@login_required
|
||||||
def u(username, page=1):
|
def u(username):
|
||||||
page=int(page)
|
|
||||||
if username == "favicon.ico":
|
if username == "favicon.ico":
|
||||||
return redirect(url_for('static', filename='favicons/favicon.ico'))
|
return redirect(url_for('static', filename='favicons/favicon.ico'))
|
||||||
form = EmptyForm()
|
form = EmptyForm()
|
||||||
avatarPath = f"img/avatars/{str(random.randint(1, 12))}.png"
|
avatarPath = "img/avatars/{}.png".format(str(random.randint(1, 12)))
|
||||||
user = nitteruser.get_user_info(username)
|
user = getTwitterUserInfo(username)
|
||||||
if not user:
|
if not user:
|
||||||
flash("This user is not on Twitter.")
|
flash("This user is not on Twitter.")
|
||||||
return redirect(request.referrer)
|
return redirect(request.referrer)
|
||||||
|
|
||||||
posts = []
|
posts = []
|
||||||
tweets=nitteruser.get_tweets(username, page)
|
posts.extend(getPosts(username))
|
||||||
if tweets == 'Empty feed':
|
if not posts:
|
||||||
posts = False
|
user['profilePic'] = avatarPath
|
||||||
elif tweets == 'Protected feed':
|
|
||||||
posts = 'Protected'
|
|
||||||
else:
|
|
||||||
posts.extend(tweets)
|
|
||||||
|
|
||||||
if page-1 < 0:
|
return render_template('user.html', posts=posts, user=user, form=form, config=config)
|
||||||
prev_page = 0
|
|
||||||
else:
|
|
||||||
prev_page = page-1
|
|
||||||
|
|
||||||
if page > 2:
|
|
||||||
page =2
|
|
||||||
|
|
||||||
return render_template('user.html', posts=posts, user=user, form=form, config=config, page=page, prev_page=prev_page)
|
|
||||||
|
|
||||||
|
|
||||||
#########################
|
#########################
|
||||||
@ -300,7 +294,7 @@ def youtube():
|
|||||||
videos = getYoutubePosts(ids)
|
videos = getYoutubePosts(ids)
|
||||||
if videos:
|
if videos:
|
||||||
videos.sort(key=lambda x: x.date, reverse=True)
|
videos.sort(key=lambda x: x.date, reverse=True)
|
||||||
print(f"--- {time.time() - start_time} seconds fetching youtube feed---")
|
print("--- {} seconds fetching youtube feed---".format(time.time() - start_time))
|
||||||
return render_template('youtube.html', title="Yotter | Youtube", videos=videos, followCount=followCount,
|
return render_template('youtube.html', title="Yotter | Youtube", videos=videos, followCount=followCount,
|
||||||
config=config)
|
config=config)
|
||||||
|
|
||||||
@ -337,21 +331,22 @@ def ytsearch():
|
|||||||
filters = {"time": 0, "type": 0, "duration": 0}
|
filters = {"time": 0, "type": 0, "duration": 0}
|
||||||
results = yts.search_by_terms(query, page, autocorrect, sort, filters)
|
results = yts.search_by_terms(query, page, autocorrect, sort, filters)
|
||||||
|
|
||||||
next_page = f"/ytsearch?q={query}&s={sort}&p={int(page)+1}"
|
next_page = "/ytsearch?q={q}&s={s}&p={p}".format(q=query, s=sort, p=int(page) + 1)
|
||||||
if int(page) == 1:
|
if int(page) == 1:
|
||||||
prev_page = f"/ytsearch?q={query}&s={sort}&p={1}"
|
prev_page = "/ytsearch?q={q}&s={s}&p={p}".format(q=query, s=sort, p=1)
|
||||||
else:
|
else:
|
||||||
prev_page = f"/ytsearch?q={query}&s={sort}&p={int(page)-1}"
|
prev_page = "/ytsearch?q={q}&s={s}&p={p}".format(q=query, s=sort, p=int(page) - 1)
|
||||||
|
|
||||||
for video in results['videos']:
|
for video in results['videos']:
|
||||||
hostname = urllib.parse.urlparse(video['videoThumb']).netloc
|
hostname = urllib.parse.urlparse(video['videoThumb']).netloc
|
||||||
video['videoThumb'] = video['videoThumb'].replace(f"https://{hostname}", "") + "&host=" + hostname
|
video['videoThumb'] = video['videoThumb'].replace("https://{}".format(hostname), "") + "&host=" + hostname
|
||||||
|
|
||||||
for channel in results['channels']:
|
for channel in results['channels']:
|
||||||
if config['isInstance']:
|
if config['isInstance']:
|
||||||
channel['thumbnail'] = channel['thumbnail'].replace("~", "/")
|
channel['thumbnail'] = channel['thumbnail'].replace("~", "/")
|
||||||
hostName = urllib.parse.urlparse(channel['thumbnail']).netloc
|
hostName = urllib.parse.urlparse(channel['thumbnail']).netloc
|
||||||
channel['thumbnail'] = channel['thumbnail'].replace(f"https://{hostName}", "") + "?host=" + hostName
|
channel['thumbnail'] = channel['thumbnail'].replace("https://{}".format(hostName),
|
||||||
|
"") + "?host=" + hostName
|
||||||
return render_template('ytsearch.html', form=form, btform=button_form, results=results,
|
return render_template('ytsearch.html', form=form, btform=button_form, results=results,
|
||||||
restricted=config['restrictPublicUsage'], config=config, npage=next_page,
|
restricted=config['restrictPublicUsage'], config=config, npage=next_page,
|
||||||
ppage=prev_page)
|
ppage=prev_page)
|
||||||
@ -370,7 +365,7 @@ def followYoutubeChannel(channelId):
|
|||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
if not current_user.is_following_yt(channelId):
|
if not current_user.is_following_yt(channelId):
|
||||||
channelData = ytch.get_channel_tab(channelId, tab='about')
|
channelData = ytch.get_channel_tab_info(channelId, tab='about')
|
||||||
if channelData == False:
|
if channelData == False:
|
||||||
return False
|
return False
|
||||||
follow = youtubeFollow()
|
follow = youtubeFollow()
|
||||||
@ -379,7 +374,7 @@ def followYoutubeChannel(channelId):
|
|||||||
follow.followers.append(current_user)
|
follow.followers.append(current_user)
|
||||||
db.session.add(follow)
|
db.session.add(follow)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
flash(f"{channelData['channel_name']} followed!")
|
flash("{} followed!".format(channelData['channel_name']))
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
@ -387,8 +382,8 @@ def followYoutubeChannel(channelId):
|
|||||||
print(e)
|
print(e)
|
||||||
return False
|
return False
|
||||||
except KeyError as ke:
|
except KeyError as ke:
|
||||||
print(f"KeyError: {ke}:'{channelId}' could not be found")
|
print("KeyError: {}:'{}' could not be found".format(ke, channelId))
|
||||||
flash(f"Youtube: ChannelId '{channelId}' is not valid")
|
flash("Youtube: ChannelId '{}' is not valid".format(channelId))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
@ -409,7 +404,7 @@ def unfollowYoutubeChannel(channelId):
|
|||||||
if channel:
|
if channel:
|
||||||
db.session.delete(channel)
|
db.session.delete(channel)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
flash(f"{name} unfollowed!")
|
flash("{} unfollowed!".format(name))
|
||||||
except:
|
except:
|
||||||
flash("There was an error unfollowing the user. Try again.")
|
flash("There was an error unfollowing the user. Try again.")
|
||||||
|
|
||||||
@ -429,26 +424,27 @@ def channel(id):
|
|||||||
if sort is None:
|
if sort is None:
|
||||||
sort = 3
|
sort = 3
|
||||||
|
|
||||||
data = ytch.get_channel_tab(id, page, sort)
|
data = ytch.get_channel_tab_info(id, page, sort)
|
||||||
|
|
||||||
for video in data['items']:
|
for video in data['items']:
|
||||||
if config['isInstance']:
|
if config['isInstance']:
|
||||||
hostName = urllib.parse.urlparse(video['thumbnail'][1:]).netloc
|
hostName = urllib.parse.urlparse(video['thumbnail'][1:]).netloc
|
||||||
video['thumbnail'] = video['thumbnail'].replace(f"https://{hostName}", "")[1:].replace("hqdefault",
|
video['thumbnail'] = video['thumbnail'].replace("https://{}".format(hostName), "")[1:].replace("hqdefault",
|
||||||
"mqdefault") + "&host=" + hostName
|
"mqdefault") + "&host=" + hostName
|
||||||
else:
|
else:
|
||||||
video['thumbnail'] = video['thumbnail'].replace('/', '~')
|
video['thumbnail'] = video['thumbnail'].replace('/', '~')
|
||||||
|
|
||||||
if config['isInstance']:
|
if config['isInstance']:
|
||||||
hostName = urllib.parse.urlparse(data['avatar'][1:]).netloc
|
hostName = urllib.parse.urlparse(data['avatar'][1:]).netloc
|
||||||
data['avatar'] = data['avatar'].replace(f"https://{hostName}", "")[1:] + "?host=" + hostName
|
data['avatar'] = data['avatar'].replace("https://{}".format(hostName), "")[1:] + "?host=" + hostName
|
||||||
else:
|
else:
|
||||||
data['avatar'] = data['avatar'].replace('/', '~')
|
data['avatar'] = data['avatar'].replace('/', '~')
|
||||||
|
|
||||||
next_page = f"/channel/{id}?s={sort}&p={int(page)+1}"
|
next_page = "/channel/{q}?s={s}&p={p}".format(q=id, s=sort, p=int(page) + 1)
|
||||||
if int(page) == 1:
|
if int(page) == 1:
|
||||||
prev_page = f"/channel/{id}?s={sort}&p={1}"
|
prev_page = "/channel/{q}?s={s}&p={p}".format(q=id, s=sort, p=1)
|
||||||
else:
|
else:
|
||||||
prev_page = f"/channel/{id}?s={sort}&p={int(page)-1}"
|
prev_page = "/channel/{q}?s={s}&p={p}".format(q=id, s=sort, p=int(page) - 1)
|
||||||
|
|
||||||
return render_template('channel.html', form=form, btform=button_form, data=data,
|
return render_template('channel.html', form=form, btform=button_form, data=data,
|
||||||
restricted=config['restrictPublicUsage'], config=config, next_page=next_page,
|
restricted=config['restrictPublicUsage'], config=config, next_page=next_page,
|
||||||
@ -486,11 +482,11 @@ def watch():
|
|||||||
if info['error'] == False:
|
if info['error'] == False:
|
||||||
for format in info['formats']:
|
for format in info['formats']:
|
||||||
hostName = urllib.parse.urlparse(format['url']).netloc
|
hostName = urllib.parse.urlparse(format['url']).netloc
|
||||||
format['url'] = format['url'].replace(f"https://{hostName}", "") + "&host=" + hostName
|
format['url'] = format['url'].replace("https://{}".format(hostName), "") + "&host=" + hostName
|
||||||
|
|
||||||
for format in info['audio_formats']:
|
for format in info['audio_formats']:
|
||||||
hostName = urllib.parse.urlparse(format['url']).netloc
|
hostName = urllib.parse.urlparse(format['url']).netloc
|
||||||
format['url'] = format['url'].replace(f"https://{hostName}", "") + "&host=" + hostName
|
format['url'] = format['url'].replace("https://{}".format(hostName), "") + "&host=" + hostName
|
||||||
|
|
||||||
# Markup description
|
# Markup description
|
||||||
try:
|
try:
|
||||||
@ -802,7 +798,7 @@ def status():
|
|||||||
|
|
||||||
@app.route('/error/<errno>')
|
@app.route('/error/<errno>')
|
||||||
def error(errno):
|
def error(errno):
|
||||||
return render_template(f'{str(errno)}.html', config=config)
|
return render_template('{}.html'.format(str(errno)), config=config)
|
||||||
|
|
||||||
|
|
||||||
def getTimeDiff(t):
|
def getTimeDiff(t):
|
||||||
@ -810,26 +806,24 @@ def getTimeDiff(t):
|
|||||||
|
|
||||||
if diff.days == 0:
|
if diff.days == 0:
|
||||||
if diff.seconds > 3599:
|
if diff.seconds > 3599:
|
||||||
num = int((diff.seconds / 60) / 60)
|
timeString = "{}h".format(int((diff.seconds / 60) / 60))
|
||||||
timeString = f"{num}h"
|
|
||||||
else:
|
else:
|
||||||
num = int(diff.seconds / 60)
|
timeString = "{}m".format(int(diff.seconds / 60))
|
||||||
timeString = f"{num}m"
|
|
||||||
else:
|
else:
|
||||||
timeString = f"{diff.days}d"
|
timeString = "{}d".format(diff.days)
|
||||||
return timeString
|
return timeString
|
||||||
|
|
||||||
|
|
||||||
def isTwitterUser(username):
|
def isTwitterUser(username):
|
||||||
response = requests.get(f'{NITTERINSTANCE}{username}/rss')
|
response = requests.get('{instance}{user}/rss'.format(instance=NITTERINSTANCE, user=username))
|
||||||
if response.status_code == 404:
|
if response.status_code == 404:
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def twitterUserSearch(terms):
|
def twitterUserSearch(terms):
|
||||||
url = f'{NITTERINSTANCE}search?f=users&q={urllib.parse.quote(terms)}'
|
response = urllib.request.urlopen(
|
||||||
response = urllib.request.urlopen(url).read()
|
'{instance}search?f=users&q={user}'.format(instance=NITTERINSTANCE, user=urllib.parse.quote(terms))).read()
|
||||||
html = BeautifulSoup(str(response), "lxml")
|
html = BeautifulSoup(str(response), "lxml")
|
||||||
|
|
||||||
results = []
|
results = []
|
||||||
@ -843,14 +837,14 @@ def twitterUserSearch(terms):
|
|||||||
'unicode_escape').encode('latin_1').decode('utf8'),
|
'unicode_escape').encode('latin_1').decode('utf8'),
|
||||||
"username": item.find('a', attrs={'class': 'username'}).getText().encode('latin_1').decode(
|
"username": item.find('a', attrs={'class': 'username'}).getText().encode('latin_1').decode(
|
||||||
'unicode_escape').encode('latin_1').decode('utf8'),
|
'unicode_escape').encode('latin_1').decode('utf8'),
|
||||||
'avatar': NITTERINSTANCE + item.find('img', attrs={'class': 'avatar'})['src'][1:],
|
'avatar': "{i}{s}".format(i=NITTERINSTANCE, s=item.find('img', attrs={'class': 'avatar'})['src'][1:])
|
||||||
}
|
}
|
||||||
results.append(user)
|
results.append(user)
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
||||||
def getTwitterUserInfo(username):
|
def getTwitterUserInfo(username):
|
||||||
response = urllib.request.urlopen('{NITTERINSTANCE}{username}').read()
|
response = urllib.request.urlopen('{instance}{user}'.format(instance=NITTERINSTANCE, user=username)).read()
|
||||||
# rssFeed = feedparser.parse(response.content)
|
# rssFeed = feedparser.parse(response.content)
|
||||||
|
|
||||||
html = BeautifulSoup(str(response), "lxml")
|
html = BeautifulSoup(str(response), "lxml")
|
||||||
@ -881,7 +875,9 @@ def getTwitterUserInfo(username):
|
|||||||
"followers": numerize.numerize(
|
"followers": numerize.numerize(
|
||||||
int(html.find_all('span', attrs={'class': 'profile-stat-num'})[2].string.replace(",", ""))),
|
int(html.find_all('span', attrs={'class': 'profile-stat-num'})[2].string.replace(",", ""))),
|
||||||
"likes": html.find_all('span', attrs={'class': 'profile-stat-num'})[3].string,
|
"likes": html.find_all('span', attrs={'class': 'profile-stat-num'})[3].string,
|
||||||
"profilePic": NITTERINSTANCE + html.find('a', attrs={'class': 'profile-card-avatar'})['href'][1:],
|
"profilePic": "{instance}{pic}".format(instance=NITTERINSTANCE,
|
||||||
|
pic=html.find('a', attrs={'class': 'profile-card-avatar'})['href'][
|
||||||
|
1:])
|
||||||
}
|
}
|
||||||
return user
|
return user
|
||||||
|
|
||||||
@ -889,7 +885,7 @@ def getTwitterUserInfo(username):
|
|||||||
def getFeed(urls):
|
def getFeed(urls):
|
||||||
feedPosts = []
|
feedPosts = []
|
||||||
with FuturesSession() as session:
|
with FuturesSession() as session:
|
||||||
futures = [session.get(f'{NITTERINSTANCE}{u.username}') for u in urls]
|
futures = [session.get('{instance}{user}'.format(instance=NITTERINSTANCE, user=u.username)) for u in urls]
|
||||||
for future in as_completed(futures):
|
for future in as_completed(futures):
|
||||||
res= future.result().content
|
res= future.result().content
|
||||||
html = BeautifulSoup(res, "html.parser")
|
html = BeautifulSoup(res, "html.parser")
|
||||||
@ -958,7 +954,7 @@ def getPosts(account):
|
|||||||
feedPosts = []
|
feedPosts = []
|
||||||
|
|
||||||
# Gather profile info.
|
# Gather profile info.
|
||||||
rssFeed = urllib.request.urlopen(f'{NITTERINSTANCE}{account}').read()
|
rssFeed = urllib.request.urlopen('{instance}{user}'.format(instance=NITTERINSTANCE, user=account)).read()
|
||||||
# Gather feedPosts
|
# Gather feedPosts
|
||||||
res = rssFeed.decode('utf-8')
|
res = rssFeed.decode('utf-8')
|
||||||
html = BeautifulSoup(res, "html.parser")
|
html = BeautifulSoup(res, "html.parser")
|
||||||
@ -1016,7 +1012,8 @@ def getPosts(account):
|
|||||||
def getYoutubePosts(ids):
|
def getYoutubePosts(ids):
|
||||||
videos = []
|
videos = []
|
||||||
with FuturesSession() as session:
|
with FuturesSession() as session:
|
||||||
futures = [session.get(f'https://www.youtube.com/feeds/videos.xml?channel_id={id.channelId}') for id in ids]
|
futures = [session.get('https://www.youtube.com/feeds/videos.xml?channel_id={id}'.format(id=id.channelId)) for
|
||||||
|
id in ids]
|
||||||
for future in as_completed(futures):
|
for future in as_completed(futures):
|
||||||
resp = future.result()
|
resp = future.result()
|
||||||
rssFeed = feedparser.parse(resp.content)
|
rssFeed = feedparser.parse(resp.content)
|
||||||
@ -1047,7 +1044,7 @@ def getYoutubePosts(ids):
|
|||||||
video.timeStamp = getTimeDiff(vid.published_parsed)
|
video.timeStamp = getTimeDiff(vid.published_parsed)
|
||||||
except:
|
except:
|
||||||
if time != 0:
|
if time != 0:
|
||||||
video.timeStamp = f"{str(time.days)} days"
|
video.timeStamp = "{} days".format(str(time.days))
|
||||||
else:
|
else:
|
||||||
video.timeStamp = "Unknown"
|
video.timeStamp = "Unknown"
|
||||||
|
|
||||||
@ -1058,7 +1055,7 @@ def getYoutubePosts(ids):
|
|||||||
video.videoTitle = vid.title
|
video.videoTitle = vid.title
|
||||||
if config['isInstance']:
|
if config['isInstance']:
|
||||||
hostName = urllib.parse.urlparse(vid.media_thumbnail[0]['url']).netloc
|
hostName = urllib.parse.urlparse(vid.media_thumbnail[0]['url']).netloc
|
||||||
video.videoThumb = vid.media_thumbnail[0]['url'].replace(f"https://{hostName}", "").replace(
|
video.videoThumb = vid.media_thumbnail[0]['url'].replace("https://{}".format(hostName), "").replace(
|
||||||
"hqdefault", "mqdefault") + "?host=" + hostName
|
"hqdefault", "mqdefault") + "?host=" + hostName
|
||||||
else:
|
else:
|
||||||
video.videoThumb = vid.media_thumbnail[0]['url'].replace('/', '~')
|
video.videoThumb = vid.media_thumbnail[0]['url'].replace('/', '~')
|
||||||
|
@ -1 +0,0 @@
|
|||||||
.vjs-quality-selector .vjs-menu-button{margin:0;padding:0;height:100%;width:100%}.vjs-quality-selector .vjs-icon-placeholder{font-family:'VideoJS';font-weight:normal;font-style:normal}.vjs-quality-selector .vjs-icon-placeholder:before{content:'\f110'}.vjs-quality-changing .vjs-big-play-button{display:none}.vjs-quality-changing .vjs-control-bar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;visibility:visible;opacity:1}
|
|
4
app/static/videojs-quality-selector.min.js
vendored
4
app/static/videojs-quality-selector.min.js
vendored
File diff suppressed because one or more lines are too long
3
app/static/videojs.hotkeys.min.js
vendored
3
app/static/videojs.hotkeys.min.js
vendored
@ -1,3 +0,0 @@
|
|||||||
/* videojs-hotkeys v0.2.27 - https://github.com/ctd1500/videojs-hotkeys */
|
|
||||||
!function(e,t){"undefined"!=typeof window&&window.videojs?t(window.videojs):"function"==typeof define&&define.amd?define("videojs-hotkeys",["video.js"],function(e){return t(e.default||e)}):"undefined"!=typeof module&&module.exports&&(module.exports=t(require("video.js")))}(0,function(e){"use strict";"undefined"!=typeof window&&(window.videojs_hotkeys={version:"0.2.27"});(e.registerPlugin||e.plugin)("hotkeys",function(t){function n(e){return"function"==typeof s?s(e):s}function o(e){null!=e&&"function"==typeof e.then&&e.then(null,function(e){})}var r=this,u=r.el(),l=document,i={volumeStep:.1,seekStep:5,enableMute:!0,enableVolumeScroll:!0,enableHoverScroll:!1,enableFullscreen:!0,enableNumbers:!0,enableJogStyle:!1,alwaysCaptureHotkeys:!1,captureDocumentHotkeys:!1,documentHotkeysFocusElementFilter:function(){return!1},enableModifiersForNumbers:!0,enableInactiveFocus:!0,skipInitialFocus:!1,playPauseKey:function(e){return 32===e.which||179===e.which},rewindKey:function(e){return 37===e.which||177===e.which},forwardKey:function(e){return 39===e.which||176===e.which},volumeUpKey:function(e){return 38===e.which},volumeDownKey:function(e){return 40===e.which},muteKey:function(e){return 77===e.which},fullscreenKey:function(e){return 70===e.which},customKeys:{}},c=e.mergeOptions||e.util.mergeOptions,a=(t=c(i,t||{})).volumeStep,s=t.seekStep,m=t.enableMute,y=t.enableVolumeScroll,f=t.enableHoverScroll,v=t.enableFullscreen,d=t.enableNumbers,p=t.enableJogStyle,b=t.alwaysCaptureHotkeys,h=t.captureDocumentHotkeys,w=t.documentHotkeysFocusElementFilter,k=t.enableModifiersForNumbers,S=t.enableInactiveFocus,K=t.skipInitialFocus,F=e.VERSION;u.hasAttribute("tabIndex")||u.setAttribute("tabIndex","-1"),u.style.outline="none",!b&&r.autoplay()||K||r.one("play",function(){u.focus()}),S&&r.on("userinactive",function(){var e=function(){clearTimeout(t)},t=setTimeout(function(){r.off("useractive",e);var t=l.activeElement,n=u.querySelector(".vjs-control-bar");t&&t.parentElement==n&&u.focus()},10);r.one("useractive",e)}),r.on("play",function(){var e=u.querySelector(".iframeblocker");e&&""===e.style.display&&(e.style.display="block",e.style.bottom="39px")});var q=function(e){var i,c,s=e.which,y=e.preventDefault.bind(e),f=r.duration();if(r.controls()){var S=l.activeElement;if(b||h&&w(S)||S==u||S==u.querySelector(".vjs-tech")||S==u.querySelector(".vjs-control-bar")||S==u.querySelector(".iframeblocker"))switch(g(e,r)){case 1:y(),(b||h)&&e.stopPropagation(),r.paused()?o(r.play()):r.pause();break;case 2:i=!r.paused(),y(),i&&r.pause(),(c=r.currentTime()-n(e))<=0&&(c=0),r.currentTime(c),i&&o(r.play());break;case 3:i=!r.paused(),y(),i&&r.pause(),(c=r.currentTime()+n(e))>=f&&(c=i?f-.001:f),r.currentTime(c),i&&o(r.play());break;case 5:y(),p?(c=r.currentTime()-1,r.currentTime()<=1&&(c=0),r.currentTime(c)):r.volume(r.volume()-a);break;case 4:y(),p?((c=r.currentTime()+1)>=f&&(c=f),r.currentTime(c)):r.volume(r.volume()+a);break;case 6:m&&r.muted(!r.muted());break;case 7:v&&(r.isFullscreen()?r.exitFullscreen():r.requestFullscreen());break;default:if((s>47&&s<59||s>95&&s<106)&&(k||!(e.metaKey||e.ctrlKey||e.altKey))&&d){var K=48;s>95&&(K=96);var F=s-K;y(),r.currentTime(r.duration()*F*.1)}for(var q in t.customKeys){var j=t.customKeys[q];j&&j.key&&j.handler&&j.key(e)&&(y(),j.handler(r,t,e))}}}},j=!1,T=u.querySelector(".vjs-volume-menu-button")||u.querySelector(".vjs-volume-panel");null!=T&&(T.onmouseover=function(){j=!0},T.onmouseout=function(){j=!1});var E=function(e){if(f)t=0;else var t=l.activeElement;if(r.controls()&&(b||t==u||t==u.querySelector(".vjs-tech")||t==u.querySelector(".iframeblocker")||t==u.querySelector(".vjs-control-bar")||j)&&y){e=window.event||e;var n=Math.max(-1,Math.min(1,e.wheelDelta||-e.detail));e.preventDefault(),1==n?r.volume(r.volume()+a):-1==n&&r.volume(r.volume()-a)}},g=function(e,n){return t.playPauseKey(e,n)?1:t.rewindKey(e,n)?2:t.forwardKey(e,n)?3:t.volumeUpKey(e,n)?4:t.volumeDownKey(e,n)?5:t.muteKey(e,n)?6:t.fullscreenKey(e,n)?7:void 0};return r.on("keydown",q),r.on("dblclick",function(e){if(null!=F&&F<="7.1.0"&&r.controls()){var t=e.relatedTarget||e.toElement||l.activeElement;t!=u&&t!=u.querySelector(".vjs-tech")&&t!=u.querySelector(".iframeblocker")||v&&(r.isFullscreen()?r.exitFullscreen():r.requestFullscreen())}}),r.on("mousewheel",E),r.on("DOMMouseScroll",E),h&&document.addEventListener("keydown",function(e){q(e)}),this})});
|
|
||||||
//# sourceMappingURL=videojs.hotkeys.min.js.map
|
|
@ -19,67 +19,35 @@
|
|||||||
<span class="category"><i class="retweet icon"></i> {{post.username}}</span>
|
<span class="category"><i class="retweet icon"></i> {{post.username}}</span>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-bottom: 15px;" class="description break-word">
|
<div class="description break-word">
|
||||||
<p>{{post.content | safe}}</p>
|
<p>{{post.content | safe}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="extra content">
|
||||||
{% if post.attachedImages %}
|
{% if post.attachedImg %}
|
||||||
{%for img in post.attachedImages %}
|
<a target="_blank" href="{{post.attachedImg}}"><img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{post.attachedImg}}">
|
||||||
<a target="_blank" href="{{img}}">
|
|
||||||
<img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{img}}">
|
|
||||||
</a>
|
|
||||||
{%endfor%}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if post.attachedVideo %}
|
|
||||||
<div class="ui segment"><p><i class="file video icon"></i> <b>This tweet has an attached video.</b></p></div>
|
|
||||||
{%endif%}
|
|
||||||
{% if post.isReply %}
|
{% if post.isReply %}
|
||||||
{%if post.unavailableReply%}
|
|
||||||
<div class="ui card">
|
|
||||||
<div class="content">
|
|
||||||
<p> This tweet is unavailable. </p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{%else%}
|
|
||||||
<div class="ui card">
|
<div class="ui card">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="header"><a href="/{{post.replyingUser}}">{{post.replyingUser}}</a></div>
|
<div class="header"><a href="/{{post.replyingUser}}">{{post.replyingUser}}</a></div>
|
||||||
<div class="meta">{{post.replyingUser}}</div>
|
<div class="meta">{{post.replyingUser}}</div>
|
||||||
<div class="description break-word">
|
<div class="description break-word">
|
||||||
{{post.replyingTweetContent | safe}}
|
{{post.replyingTweetContent | safe}}
|
||||||
|
|
||||||
{% if post.replyAttachedImg %}
|
{% if post.replyAttachedImg %}
|
||||||
<a target="_blank" href="{{post.replyAttachedImg}}">
|
<a target="_blank" href="{{post.replyAttachedImg}}"><img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{post.replyAttachedImg}}"></a>
|
||||||
<img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{post.replyAttachedImg}}">
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{%endif%}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<form class="ui form" action="{{ url_for('savePost', url=post.url.replace('/', '~')) }}" method="post">
|
<form class="ui form" action="{{ url_for('savePost', url=post.url.replace('/', '~')) }}" method="post">
|
||||||
<button type="submit" class="mini ui icon button">
|
<button type="submit" class="ui icon button">
|
||||||
<i class="bookmark outline icon"></i>
|
<i class="bookmark outline icon"></i>
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="extra content">
|
|
||||||
<span class="left floated">
|
|
||||||
<i class="red heart like icon"></i>
|
|
||||||
{{post.likes}}
|
|
||||||
<span> </span>
|
|
||||||
<i class="grey comment icon"></i>
|
|
||||||
{{post.comments}}
|
|
||||||
</span>
|
|
||||||
<span class="right floated">
|
|
||||||
<i class="blue retweet icon"></i>
|
|
||||||
{{post.retweets}}
|
|
||||||
<i class="grey quote left icon"></i>
|
|
||||||
{{post.quotes}}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div> <!--End tweet-->
|
</div> <!--End tweet-->
|
@ -32,14 +32,14 @@
|
|||||||
<form action="{{ url_for('ytfollow', channelId=data.channel_id) }}" method="post">
|
<form action="{{ url_for('ytfollow', channelId=data.channel_id) }}" method="post">
|
||||||
<button type="submit" value="Submit" class="ui red button">
|
<button type="submit" value="Submit" class="ui red button">
|
||||||
<i class="user icon"></i>
|
<i class="user icon"></i>
|
||||||
Subscribe
|
Suscribe
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
{% else %}
|
{% else %}
|
||||||
<form action="{{ url_for('ytunfollow', channelId=data.channel_id) }}" method="post">
|
<form action="{{ url_for('ytunfollow', channelId=data.channel_id) }}" method="post">
|
||||||
<button type="submit" value="Submit" class="ui red active button">
|
<button type="submit" value="Submit" class="ui red active button">
|
||||||
<i class="user icon"></i>
|
<i class="user icon"></i>
|
||||||
Unsubscribe
|
Unsuscribe
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
|
@ -41,9 +41,9 @@
|
|||||||
<div class="text container ui">
|
<div class="text container ui">
|
||||||
<div class="ui warning message">
|
<div class="ui warning message">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
{{config.admin_message_title|safe}}
|
{{config.admin_message_title}}
|
||||||
</div>
|
</div>
|
||||||
{{config.admin_message|safe}}
|
{{config.admin_message}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{{ form.hidden_tag() }}
|
{{ form.hidden_tag() }}
|
||||||
<p>
|
<p>
|
||||||
{{ form.username.label }}<br>
|
{{ form.username.label }}<br>
|
||||||
{{ form.username(size=32, autofocus=true) }}<br>
|
{{ form.username(size=32) }}<br>
|
||||||
{% for error in form.username.errors %}
|
{% for error in form.username.errors %}
|
||||||
<span style="color: red;">[{{ error }}]</span>
|
<span style="color: red;">[{{ error }}]</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -1,21 +1,30 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="ui text container center aligned">
|
<div class="blue ui centered card">
|
||||||
<div class="ui segments">
|
<div class="content">
|
||||||
<div class="ui centered vertical segment">
|
<div class="center aligned author">
|
||||||
<h2 class="ui header">
|
<img alt="Profile picture" class="ui avatar image" src="{{user.profilePic}}">
|
||||||
<img src="{{user.profilePic}}" class="ui circular image">
|
|
||||||
{{user.profileFullName}} <span style="color:grey;font-size: small;">({{user.profileUsername}})</span>
|
|
||||||
</h2>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="ui horizontal segments">
|
<div class="center aligned header"><a href="https://nitter.net/{{ user.profileUsername.replace('@','') }}">
|
||||||
<div class="ui segment">
|
{%if user.profileFullName%}
|
||||||
<div class="ui centered vertical segment">
|
{{user.profileFullName}}
|
||||||
<p>{{user.profileBio}}</p>
|
{%else%}
|
||||||
|
{{user.profileUsername}}
|
||||||
|
{%endif%}
|
||||||
|
</a></div>
|
||||||
|
<div class="center aligned description">
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
<i class="users icon"></i>{{user.followers}}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
Followers
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui segment">
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="center aligned extra content">
|
||||||
{% if not current_user.is_following_tw(user.profileUsername.replace('@','')) %}
|
{% if not current_user.is_following_tw(user.profileUsername.replace('@','')) %}
|
||||||
<p>
|
<p>
|
||||||
<form action="{{ url_for('follow', username=user.profileUsername.replace('@','')) }}" method="post">
|
<form action="{{ url_for('follow', username=user.profileUsername.replace('@','')) }}" method="post">
|
||||||
@ -33,76 +42,19 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui horizontal segments">
|
|
||||||
<div class="ui segment">
|
|
||||||
<div class="statistic">
|
|
||||||
<div class="value">
|
|
||||||
<b>{{user.followers}}</b>
|
|
||||||
</div>
|
|
||||||
<div class="label">
|
|
||||||
<b>FOLLOWERS</b>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ui segment">
|
|
||||||
<div class="statistic">
|
|
||||||
<div class="value">
|
|
||||||
<b>{{user.following}}</b>
|
|
||||||
</div>
|
|
||||||
<div class="label">
|
|
||||||
<b>FOLLOWING</b>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ui segment">
|
|
||||||
<div class="statistic">
|
|
||||||
<div class="value">
|
|
||||||
<b>{{user.tweets}}</b>
|
|
||||||
</div>
|
|
||||||
<div class="label">
|
|
||||||
<b>TWEETS</b>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ui segment">
|
|
||||||
<div class="statistic">
|
|
||||||
<div class="value">
|
|
||||||
<b>{{user.likes}}</b>
|
|
||||||
</div>
|
|
||||||
<div class="label">
|
|
||||||
<b>LIKES</b>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="margin-top: 15px;" class="text container" id="card-container">
|
<div class="text container" id="card-container">
|
||||||
{% if not posts %}
|
{% if not posts %}
|
||||||
<div style="margin-top: 20px;" class="ui container center aligned">
|
{% include '_empty_feed.html' %}
|
||||||
<h2> <i class="window close outline icon"></i> This feed is empty. </h3>
|
|
||||||
</div>
|
|
||||||
{% elif posts == 'Protected' %}
|
|
||||||
<div style="margin-top: 20px;" class="ui container center aligned">
|
|
||||||
<h2> <i class="lock icon"></i> This account's tweets are protected. </h3>
|
|
||||||
</div>
|
|
||||||
{% else %}
|
{% else %}
|
||||||
{% for post in posts %}
|
{% for post in posts %}
|
||||||
{% include '_twitter_post.html' %}
|
{% include '_twitter_post.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
<div class="scroller">
|
<div class="scroller">
|
||||||
<a href="#top" class="ui button">
|
<a href="#top" class="ui button">
|
||||||
<i style="margin: 0;" class="chevron up icon"></i>
|
<i style="margin: 0;" class="chevron up icon"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<div class="ui center aligned text container">
|
|
||||||
<a href="/{{user.profileUsername}}/{{prev_page}}"> <button class="ui left attached button"><i class="angle blue left icon"></i></button> </a>
|
|
||||||
<a href="/{{user.profileUsername}}/{{page+1}}"> <button class="right attached ui button"><i class="angle blue right icon"></i></button></a>
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -1,9 +1,5 @@
|
|||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" type= "text/css" href="{{ url_for('static',filename='video-js.min.css') }}">
|
<link rel="stylesheet" type= "text/css" href="{{ url_for('static',filename='video-js.min.css') }}">
|
||||||
<script src="{{ url_for('static',filename='video.min.js') }}"></script>
|
|
||||||
|
|
||||||
<link rel="stylesheet" type= "text/css" href="{{ url_for('static',filename='quality-selector.css') }}">
|
|
||||||
<script src="{{ url_for('static',filename='videojs-quality-selector.min.js') }}"></script>
|
|
||||||
</head>
|
</head>
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
@ -51,21 +47,17 @@
|
|||||||
</div>
|
</div>
|
||||||
{%else%}
|
{%else%}
|
||||||
<div class="video-js-responsive-container vjs-hd">
|
<div class="video-js-responsive-container vjs-hd">
|
||||||
<video-js id="video-1" class="video-js vjs-default-skin vjs-big-play-centered"
|
<video-js autofocus class="video-js vjs-default-skin"
|
||||||
qualitySelector
|
data-setup='{ "playbackRates": [0.5, 0.75, 1, 1.25,1.5, 1.75, 2] }'
|
||||||
controls
|
|
||||||
autofocus
|
|
||||||
data-setup='{ "playbackRates": [0.5, 1, 1.25, 1.5, 1.75, 2] }'
|
|
||||||
width="1080"
|
width="1080"
|
||||||
|
controls
|
||||||
buffered
|
buffered
|
||||||
preload="none">
|
preload="none">
|
||||||
{% if config.isInstance %}
|
{% if config.isInstance %}
|
||||||
{% for source in info.formats %}
|
{% for source in info.formats %}
|
||||||
<source src="{{source.url}}" type="video/{{source.ext}}" label="{{source.format_note}}">
|
<source src="{{source.url}}" type="video/{{source.ext}}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that
|
|
||||||
<a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
|
|
||||||
</video-js>
|
</video-js>
|
||||||
</div>
|
</div>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
@ -76,7 +68,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="ui horizontal segments">
|
<div class="ui horizontal segments">
|
||||||
<div class="center aligned ui segment">
|
<div class="center aligned ui segment">
|
||||||
<a href="{{ url_for('channel', id=info.channel_id)}}">
|
<a href="{{ url_for('channel', id=info.uploader_id)}}">
|
||||||
<i class="user icon"></i> <b>{{info.uploader}}</b>
|
<i class="user icon"></i> <b>{{info.uploader}}</b>
|
||||||
</a>
|
</a>
|
||||||
<div class="label">
|
<div class="label">
|
||||||
@ -139,7 +131,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
|
<script src="{{ url_for('static',filename='video.min.js') }}"></script>
|
||||||
{% if info.live %}
|
{% if info.live %}
|
||||||
<script src="{{ url_for('static',filename='videojs-http-streaming.min.js')}}"></script>
|
<script src="{{ url_for('static',filename='videojs-http-streaming.min.js')}}"></script>
|
||||||
<script>
|
<script>
|
||||||
@ -148,128 +140,4 @@
|
|||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%endif%}
|
{%endif%}
|
||||||
|
|
||||||
<!-- SETUP QUALITY SELECTOR -->
|
|
||||||
<script>
|
|
||||||
videojs("video-1", {}, function() {
|
|
||||||
var player = this;
|
|
||||||
|
|
||||||
player.controlBar.addChild('QualitySelector');
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- SETUP CONTROL HOTKEYS -->
|
|
||||||
<script src="{{ url_for('static',filename='videojs.hotkeys.min.js') }}"></script>
|
|
||||||
<script>
|
|
||||||
// initialize the plugin
|
|
||||||
|
|
||||||
videojs('video-1').ready(function() {
|
|
||||||
this.hotkeys({
|
|
||||||
volumeStep: 0.1,
|
|
||||||
seekStep: 5,
|
|
||||||
enableMute: true,
|
|
||||||
enableFullscreen: true,
|
|
||||||
enableNumbers: false,
|
|
||||||
enableVolumeScroll: true,
|
|
||||||
enableHoverScroll: true,
|
|
||||||
|
|
||||||
// Mimic VLC seek behavior, and default to 5.
|
|
||||||
seekStep: function(e) {
|
|
||||||
if (e.ctrlKey && e.altKey) {
|
|
||||||
return 5*60;
|
|
||||||
} else if (e.ctrlKey) {
|
|
||||||
return 60;
|
|
||||||
} else if (e.altKey) {
|
|
||||||
return 10;
|
|
||||||
} else {
|
|
||||||
return 5;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Enhance existing simple hotkey with a complex hotkey
|
|
||||||
fullscreenKey: function(e) {
|
|
||||||
// fullscreen with the F key or Ctrl+Enter
|
|
||||||
return ((e.which === 70) || (e.ctrlKey && e.which === 13));
|
|
||||||
},
|
|
||||||
|
|
||||||
// Custom Keys
|
|
||||||
customKeys: {
|
|
||||||
|
|
||||||
// Add new simple hotkey
|
|
||||||
simpleKey: {
|
|
||||||
key: function(e) {
|
|
||||||
// Toggle something with S Key
|
|
||||||
return (e.which === 83);
|
|
||||||
},
|
|
||||||
handler: function(player, options, e) {
|
|
||||||
// Example
|
|
||||||
if (player.paused()) {
|
|
||||||
player.play();
|
|
||||||
} else {
|
|
||||||
player.pause();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Add new complex hotkey
|
|
||||||
complexKey: {
|
|
||||||
key: function(e) {
|
|
||||||
// Toggle something with CTRL + D Key
|
|
||||||
return (e.ctrlKey && e.which === 68);
|
|
||||||
},
|
|
||||||
handler: function(player, options, event) {
|
|
||||||
// Example
|
|
||||||
if (options.enableMute) {
|
|
||||||
player.muted(!player.muted());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Override number keys example from https://github.com/ctd1500/videojs-hotkeys/pull/36
|
|
||||||
numbersKey: {
|
|
||||||
key: function(event) {
|
|
||||||
// Override number keys
|
|
||||||
return ((event.which > 47 && event.which < 59) || (event.which > 95 && event.which < 106));
|
|
||||||
},
|
|
||||||
handler: function(player, options, event) {
|
|
||||||
// Do not handle if enableModifiersForNumbers set to false and keys are Ctrl, Cmd or Alt
|
|
||||||
if (options.enableModifiersForNumbers || !(event.metaKey || event.ctrlKey || event.altKey)) {
|
|
||||||
var sub = 48;
|
|
||||||
if (event.which > 95) {
|
|
||||||
sub = 96;
|
|
||||||
}
|
|
||||||
var number = event.which - sub;
|
|
||||||
player.currentTime(player.duration() * number * 0.1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
emptyHotkey: {
|
|
||||||
// Empty
|
|
||||||
},
|
|
||||||
|
|
||||||
withoutKey: {
|
|
||||||
handler: function(player, options, event) {
|
|
||||||
console.log('withoutKey handler');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
withoutHandler: {
|
|
||||||
key: function(e) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
malformedKey: {
|
|
||||||
key: function() {
|
|
||||||
console.log('I have a malformed customKey. The Key function must return a boolean.');
|
|
||||||
},
|
|
||||||
handler: function(player, options, event) {
|
|
||||||
//Empty
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -4,7 +4,7 @@
|
|||||||
<div class="ui center aligned text container">
|
<div class="ui center aligned text container">
|
||||||
<form action="{{url_for('ytsearch', _method='GET')}}">
|
<form action="{{url_for('ytsearch', _method='GET')}}">
|
||||||
<div class="ui search">
|
<div class="ui search">
|
||||||
<input class="prompt" name="q" type="text" placeholder="Search..." autofocus>
|
<input class="prompt" name="q" type="text" placeholder="Search...">
|
||||||
<select name="s" id="sort">
|
<select name="s" id="sort">
|
||||||
<option value="0">Relevance</option>
|
<option value="0">Relevance</option>
|
||||||
<option value="3">Views</option>
|
<option value="3">Views</option>
|
||||||
@ -14,7 +14,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui text container">
|
<div class="ui text container"></div>
|
||||||
{% if results %}
|
{% if results %}
|
||||||
{% if results.channels %}
|
{% if results.channels %}
|
||||||
<h3 class="ui dividing header">Users</h3>
|
<h3 class="ui dividing header">Users</h3>
|
||||||
@ -93,5 +93,5 @@
|
|||||||
</div>
|
</div>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -12,18 +12,6 @@ services:
|
|||||||
- mysql:/var/lib/mysql
|
- mysql:/var/lib/mysql
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "mysqladmin", "ping", "--silent"]
|
test: ["CMD", "mysqladmin", "ping", "--silent"]
|
||||||
nginx:
|
|
||||||
image: ytorg/nginx:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
HOSTNAME: 'changeme.example.com'
|
|
||||||
HTTP_PORT: 8080
|
|
||||||
YOTTER_ADDRESS: 'http://yotter:5000'
|
|
||||||
YTPROXY_ADDRESS: 'http://unix:/var/run/ytproxy/http-proxy.sock'
|
|
||||||
ports:
|
|
||||||
- "127.0.0.1:8080:8080"
|
|
||||||
volumes:
|
|
||||||
- "/var/run/ytproxy:/app/socket/"
|
|
||||||
ytproxy:
|
ytproxy:
|
||||||
image: 1337kavin/ytproxy:latest
|
image: 1337kavin/ytproxy:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@ -43,10 +31,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- migrations:/usr/src/app/migrations
|
- migrations:/usr/src/app/migrations
|
||||||
- ./yotter-config.json:/usr/src/app/yotter-config.json
|
- ./yotter-config.json:/usr/src/app/yotter-config.json
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost:5000"]
|
|
||||||
interval: 1m
|
|
||||||
timeout: 3s
|
|
||||||
volumes:
|
volumes:
|
||||||
mysql:
|
mysql:
|
||||||
migrations:
|
migrations:
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
FROM nginx:mainline-alpine
|
|
||||||
|
|
||||||
WORKDIR /var/www
|
|
||||||
COPY ./app/static ./static
|
|
||||||
COPY ./nginx.conf.tmpl /nginx.conf.tmpl
|
|
||||||
|
|
||||||
ENV HOSTNAME= \
|
|
||||||
HTTP_PORT=80 \
|
|
||||||
YOTTER_ADDRESS=http://127.0.0.1:5000 \
|
|
||||||
YTPROXY_ADDRESS=http://unix:/var/run/ytproxy/http-proxy.sock
|
|
||||||
|
|
||||||
CMD ["/bin/sh", "-c", "envsubst '${HOSTNAME} ${HTTP_PORT} ${YOTTER_ADDRESS} ${YTPROXY_ADDRESS}' < /nginx.conf.tmpl > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"]
|
|
@ -1,10 +0,0 @@
|
|||||||
.circleci
|
|
||||||
.git
|
|
||||||
.github
|
|
||||||
.gitignore
|
|
||||||
cache
|
|
||||||
Dockerfile
|
|
||||||
docker-compose.yml
|
|
||||||
LICENSE
|
|
||||||
*.md
|
|
||||||
dockerhash.txt
|
|
@ -1,30 +0,0 @@
|
|||||||
server {
|
|
||||||
listen ${HTTP_PORT};
|
|
||||||
server_name ${HOSTNAME};
|
|
||||||
access_log off;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass ${YOTTER_ADDRESS};
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Connection "";
|
|
||||||
}
|
|
||||||
|
|
||||||
location /static/ {
|
|
||||||
root /var/www;
|
|
||||||
sendfile on;
|
|
||||||
aio threads=default;
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ (^/videoplayback$|/videoplayback/|/vi/|/a/|/ytc|/vi_webp/|/sb/) {
|
|
||||||
proxy_pass ${YTPROXY_ADDRESS};
|
|
||||||
add_header Access-Control-Allow-Origin *;
|
|
||||||
sendfile on;
|
|
||||||
tcp_nopush on;
|
|
||||||
aio_write on;
|
|
||||||
aio threads=default;
|
|
||||||
directio 512;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Connection "";
|
|
||||||
}
|
|
||||||
}
|
|
@ -4,7 +4,6 @@ from werkzeug.datastructures import Headers
|
|||||||
from concurrent.futures import as_completed
|
from concurrent.futures import as_completed
|
||||||
from numerize import numerize
|
from numerize import numerize
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from operator import itemgetter, attrgetter
|
|
||||||
from re import findall
|
from re import findall
|
||||||
from nitter import user
|
from nitter import user
|
||||||
import time, datetime
|
import time, datetime
|
||||||
@ -22,7 +21,7 @@ def get_feed(usernames, daysMaxOld=10, includeRT=True):
|
|||||||
'''
|
'''
|
||||||
feedTweets = []
|
feedTweets = []
|
||||||
with FuturesSession() as session:
|
with FuturesSession() as session:
|
||||||
futures = [session.get(f'{config["nitterInstance"]}{u}') for u in usernames]
|
futures = [session.get('{instance}{user}'.format(instance=config['nitterInstance'], user=u)) for u in usernames]
|
||||||
for future in as_completed(futures):
|
for future in as_completed(futures):
|
||||||
res = future.result().content.decode('utf-8')
|
res = future.result().content.decode('utf-8')
|
||||||
html = BeautifulSoup(res, "html.parser")
|
html = BeautifulSoup(res, "html.parser")
|
||||||
@ -38,13 +37,6 @@ def get_feed(usernames, daysMaxOld=10, includeRT=True):
|
|||||||
else:
|
else:
|
||||||
userFeed.append(tweet)
|
userFeed.append(tweet)
|
||||||
else:
|
else:
|
||||||
userFeed+=feed
|
userFeed += feed
|
||||||
try:
|
userFeed.sort(key=lambda x: datetime.datetime.strptime(x['timeStamp'], '%Y-%m-%d %H:%M:%S'), reverse=True)
|
||||||
for uf in userFeed:
|
|
||||||
if uf == 'emptyFeed':
|
|
||||||
userFeed.remove(uf)
|
|
||||||
userFeed.sort(key=lambda item:item['timeStamp'], reverse=True)
|
|
||||||
except:
|
|
||||||
print("Error sorting feed - nitter/feed.py")
|
|
||||||
return userFeed
|
|
||||||
return userFeed
|
return userFeed
|
@ -19,7 +19,7 @@ config = json.load(open('yotter-config.json'))
|
|||||||
config['nitterInstance']
|
config['nitterInstance']
|
||||||
|
|
||||||
def get_user_info(username):
|
def get_user_info(username):
|
||||||
response = urllib.request.urlopen(f'{config["nitterInstance"]}{username}').read()
|
response = urllib.request.urlopen('{instance}{user}'.format(instance=config['nitterInstance'], user=username)).read()
|
||||||
#rssFeed = feedparser.parse(response.content)
|
#rssFeed = feedparser.parse(response.content)
|
||||||
|
|
||||||
html = BeautifulSoup(str(response), "lxml")
|
html = BeautifulSoup(str(response), "lxml")
|
||||||
@ -46,12 +46,12 @@ def get_user_info(username):
|
|||||||
"following":html.find_all('span', attrs={'class':'profile-stat-num'})[1].string,
|
"following":html.find_all('span', attrs={'class':'profile-stat-num'})[1].string,
|
||||||
"followers":numerize.numerize(int(html.find_all('span', attrs={'class':'profile-stat-num'})[2].string.replace(",",""))),
|
"followers":numerize.numerize(int(html.find_all('span', attrs={'class':'profile-stat-num'})[2].string.replace(",",""))),
|
||||||
"likes":html.find_all('span', attrs={'class':'profile-stat-num'})[3].string,
|
"likes":html.find_all('span', attrs={'class':'profile-stat-num'})[3].string,
|
||||||
"profilePic":config['nitterInstance'] + html.find('a', attrs={'class':'profile-card-avatar'})['href'][1:],
|
"profilePic":"{instance}{pic}".format(instance=config['nitterInstance'], pic=html.find('a', attrs={'class':'profile-card-avatar'})['href'][1:])
|
||||||
}
|
}
|
||||||
return user
|
return user
|
||||||
|
|
||||||
def get_tweets(user, page=1):
|
def get_tweets(user, page=1):
|
||||||
feed = urllib.request.urlopen(f'{config["nitterInstance"]}{user}').read()
|
feed = urllib.request.urlopen('{instance}{user}'.format(instance=config['nitterInstance'], user=user)).read()
|
||||||
#Gather feedPosts
|
#Gather feedPosts
|
||||||
res = feed.decode('utf-8')
|
res = feed.decode('utf-8')
|
||||||
html = BeautifulSoup(res, "html.parser")
|
html = BeautifulSoup(res, "html.parser")
|
||||||
@ -59,27 +59,15 @@ def get_tweets(user, page=1):
|
|||||||
|
|
||||||
if page == 2:
|
if page == 2:
|
||||||
nextPage = html.find('div', attrs={'class':'show-more'}).find('a')['href']
|
nextPage = html.find('div', attrs={'class':'show-more'}).find('a')['href']
|
||||||
url = f'{config["nitterInstance"]}{user}{nextPage}'
|
print('{instance}{user}{page}'.format(instance=config['nitterInstance'], user=user, page=nextPage))
|
||||||
print(url)
|
feed = urllib.request.urlopen('{instance}{user}{page}'.format(instance=config['nitterInstance'], user=user, page=nextPage)).read()
|
||||||
feed = urllib.request.urlopen(url).read()
|
|
||||||
res = feed.decode('utf-8')
|
res = feed.decode('utf-8')
|
||||||
html = BeautifulSoup(res, "html.parser")
|
html = BeautifulSoup(res, "html.parser")
|
||||||
feedPosts = get_feed_tweets(html)
|
feedPosts = get_feed_tweets(html)
|
||||||
return feedPosts
|
return feedPosts
|
||||||
|
|
||||||
def yotterify(text):
|
|
||||||
URLS = ['https://youtube.com']
|
|
||||||
text = str(text)
|
|
||||||
for url in URLS:
|
|
||||||
text.replace(url, "")
|
|
||||||
return text
|
|
||||||
|
|
||||||
def get_feed_tweets(html):
|
def get_feed_tweets(html):
|
||||||
feedPosts = []
|
feedPosts = []
|
||||||
if 'No items found' in str(html.body):
|
|
||||||
return 'Empty feed'
|
|
||||||
if "This account's tweets are protected." in str(html.body):
|
|
||||||
return 'Protected feed'
|
|
||||||
userFeed = html.find_all('div', attrs={'class':'timeline-item'})
|
userFeed = html.find_all('div', attrs={'class':'timeline-item'})
|
||||||
if userFeed != []:
|
if userFeed != []:
|
||||||
for post in userFeed[:-1]:
|
for post in userFeed[:-1]:
|
||||||
@ -96,7 +84,7 @@ def get_feed_tweets(html):
|
|||||||
tweet['twitterName'] = post.find('a', attrs={'class':'fullname'}).text
|
tweet['twitterName'] = post.find('a', attrs={'class':'fullname'}).text
|
||||||
tweet['timeStamp'] = str(datetime.datetime.strptime(date_time_str, '%d/%m/%Y %H:%M:%S'))
|
tweet['timeStamp'] = str(datetime.datetime.strptime(date_time_str, '%d/%m/%Y %H:%M:%S'))
|
||||||
tweet['date'] = post.find('span', attrs={'class':'tweet-date'}).find('a').text
|
tweet['date'] = post.find('span', attrs={'class':'tweet-date'}).find('a').text
|
||||||
tweet['content'] = Markup(yotterify(post.find('div', attrs={'class':'tweet-content'}).decode_contents().replace("\n", "<br>")))
|
tweet['content'] = Markup(post.find('div', attrs={'class':'tweet-content'}).decode_contents())
|
||||||
|
|
||||||
if post.find('div', attrs={'class':'retweet-header'}):
|
if post.find('div', attrs={'class':'retweet-header'}):
|
||||||
tweet['username'] = post.find('div', attrs={'class':'retweet-header'}).find('div', attrs={'class':'icon-container'}).text
|
tweet['username'] = post.find('div', attrs={'class':'retweet-header'}).find('div', attrs={'class':'icon-container'}).text
|
||||||
@ -112,17 +100,7 @@ def get_feed_tweets(html):
|
|||||||
if post.find('div', attrs={'class':'quote'}):
|
if post.find('div', attrs={'class':'quote'}):
|
||||||
tweet['isReply'] = True
|
tweet['isReply'] = True
|
||||||
quote = post.find('div', attrs={'class':'quote'})
|
quote = post.find('div', attrs={'class':'quote'})
|
||||||
|
|
||||||
if 'unavailable' in str(quote):
|
|
||||||
tweet['unavailableReply'] = True
|
|
||||||
else:
|
|
||||||
tweet['unavailableReply'] = False
|
|
||||||
|
|
||||||
if not tweet['unavailableReply']:
|
|
||||||
if quote.find('div', attrs={'class':'quote-text'}):
|
if quote.find('div', attrs={'class':'quote-text'}):
|
||||||
try:
|
|
||||||
tweet['replyingTweetContent'] = Markup(quote.find('div', attrs={'class':'quote-text'}).replace("\n", "<br>"))
|
|
||||||
except:
|
|
||||||
tweet['replyingTweetContent'] = Markup(quote.find('div', attrs={'class':'quote-text'}))
|
tweet['replyingTweetContent'] = Markup(quote.find('div', attrs={'class':'quote-text'}))
|
||||||
|
|
||||||
if quote.find('a', attrs={'class':'still-image'}):
|
if quote.find('a', attrs={'class':'still-image'}):
|
||||||
@ -132,6 +110,7 @@ def get_feed_tweets(html):
|
|||||||
img = BeautifulSoup(str(img), "lxml")
|
img = BeautifulSoup(str(img), "lxml")
|
||||||
url = config['nitterInstance'] + img.find('a')['href'][1:]
|
url = config['nitterInstance'] + img.find('a')['href'][1:]
|
||||||
tweet['replyAttachedImages'].append(url)
|
tweet['replyAttachedImages'].append(url)
|
||||||
|
|
||||||
tweet['replyingUser']=quote.find('a', attrs={'class':'username'}).text
|
tweet['replyingUser']=quote.find('a', attrs={'class':'username'}).text
|
||||||
post.find('div', attrs={'class':'quote'}).decompose()
|
post.find('div', attrs={'class':'quote'}).decompose()
|
||||||
else:
|
else:
|
||||||
@ -150,25 +129,13 @@ def get_feed_tweets(html):
|
|||||||
else:
|
else:
|
||||||
tweet['attachedImages'] = False
|
tweet['attachedImages'] = False
|
||||||
# Videos
|
# Videos
|
||||||
if post.find('div', attrs={'attachments'}).find('div', attrs={'gallery-video'}):
|
if post.find('div', attrs={'gallery-video'}):
|
||||||
tweet['attachedVideo'] = True
|
tweet['attachedVideo'] = True
|
||||||
else:
|
else:
|
||||||
tweet['attachedVideo'] = False
|
tweet['attachedVideo'] = False
|
||||||
else:
|
else:
|
||||||
tweet['attachedVideo'] = False
|
tweet['attachedVideo'] = False
|
||||||
tweet['attachedImages'] = False
|
tweet['attachedImages'] = False
|
||||||
|
|
||||||
if post.find('div', attrs={'class':'tweet-stats'}):
|
|
||||||
stats = post.find('div', attrs={'class':'tweet-stats'}).find_all('span', attrs={'class':'tweet-stat'})
|
|
||||||
for stat in stats:
|
|
||||||
if 'comment' in str(stat):
|
|
||||||
tweet['comments'] = stat.find('div',attrs={'class':'icon-container'}).text
|
|
||||||
elif 'retweet' in str(stat):
|
|
||||||
tweet['retweets'] = stat.find('div',attrs={'class':'icon-container'}).text
|
|
||||||
elif 'heart' in str(stat):
|
|
||||||
tweet['likes'] = stat.find('div',attrs={'class':'icon-container'}).text
|
|
||||||
else:
|
|
||||||
tweet['quotes'] = stat.find('div',attrs={'class':'icon-container'}).text
|
|
||||||
feedPosts.append(tweet)
|
feedPosts.append(tweet)
|
||||||
else:
|
else:
|
||||||
return {"emptyFeed": True}
|
return {"emptyFeed": True}
|
||||||
|
@ -9,15 +9,9 @@ COPY ./requirements.txt /usr/src/app
|
|||||||
|
|
||||||
# Build Dependencies
|
# Build Dependencies
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -yq build-essential libssl-dev libffi-dev libxml2-dev libxslt-dev zlib1g-dev curl \
|
&& apt-get install -yq build-essential libssl-dev libffi-dev libxml2-dev libxslt-dev zlib1g-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/*
|
&& rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/*
|
||||||
|
|
||||||
# install rust toolchain
|
|
||||||
RUN curl https://sh.rustup.rs -sSf | \
|
|
||||||
sh -s -- --default-toolchain stable -y
|
|
||||||
|
|
||||||
ENV PATH=/root/.cargo/bin:$PATH
|
|
||||||
|
|
||||||
# Python Dependencies
|
# Python Dependencies
|
||||||
RUN pip install --no-warn-script-location --ignore-installed --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|
RUN pip install --no-warn-script-location --ignore-installed --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|
||||||
RUN pip install --no-warn-script-location --ignore-installed --no-cache-dir --prefix=/install -r requirements.txt
|
RUN pip install --no-warn-script-location --ignore-installed --no-cache-dir --prefix=/install -r requirements.txt
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
alembic==1.4.3
|
alembic==1.4.3
|
||||||
beautifulsoup4==4.9.3
|
beautifulsoup4==4.9.3
|
||||||
bleach==3.3.0
|
bleach==3.2.1
|
||||||
cachetools==4.2.0
|
cachetools==4.1.1
|
||||||
certifi==2020.12.5
|
certifi==2020.6.20
|
||||||
chardet==3.0.4
|
chardet==3.0.4
|
||||||
click==7.1.2
|
click==7.1.2
|
||||||
feedparser==6.0.2
|
feedparser==6.0.2
|
||||||
@ -16,29 +16,29 @@ gevent==20.9.0
|
|||||||
greenlet==0.4.17
|
greenlet==0.4.17
|
||||||
idna==2.10
|
idna==2.10
|
||||||
itsdangerous==1.1.0
|
itsdangerous==1.1.0
|
||||||
Jinja2==2.11.3
|
Jinja2==2.11.2
|
||||||
lxml>=4.6.3
|
lxml==4.6.1
|
||||||
Mako==1.1.3
|
Mako==1.1.3
|
||||||
MarkupSafe==1.1.1
|
MarkupSafe==1.1.1
|
||||||
numerize==0.12
|
numerize==0.12
|
||||||
packaging==20.8
|
packaging==20.4
|
||||||
pyparsing==2.4.7
|
pyparsing==2.4.7
|
||||||
PySocks==1.7.1
|
PySocks==1.7.1
|
||||||
python-dateutil==2.8.1
|
python-dateutil==2.8.1
|
||||||
python-dotenv==0.15.0
|
python-dotenv==0.15.0
|
||||||
python-editor==1.0.4
|
python-editor==1.0.4
|
||||||
requests==2.25.1
|
requests==2.24.0
|
||||||
requests-futures==1.0.0
|
requests-futures==1.0.0
|
||||||
sgmllib3k==1.0.0
|
sgmllib3k==1.0.0
|
||||||
six==1.15.0
|
six==1.15.0
|
||||||
socks==0
|
socks==0
|
||||||
soupsieve==2.0.1
|
soupsieve==2.0.1
|
||||||
SQLAlchemy==1.3.22
|
SQLAlchemy==1.3.20
|
||||||
urllib3==1.26.5
|
urllib3==1.25.11
|
||||||
webencodings==0.5.1
|
webencodings==0.5.1
|
||||||
Werkzeug==1.0.1
|
Werkzeug==1.0.1
|
||||||
WTForms==2.3.3
|
WTForms==2.3.3
|
||||||
youtube-dlc==2020.11.11.post3
|
youtube-dlc==2020.10.31
|
||||||
youtube-search-fork==1.2.5
|
youtube-search-fork==1.2.5
|
||||||
zope.event==4.5.0
|
zope.event==4.5.0
|
||||||
zope.interface==5.2.0
|
zope.interface==5.1.2
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"serverName": "yotter.xyz",
|
"serverName": "yotter.xyz",
|
||||||
"nitterInstance": "https://nitter.mastodont.cat/",
|
"nitterInstance": "https://nitter.net/",
|
||||||
"maxInstanceUsers": 200,
|
"maxInstanceUsers": 120,
|
||||||
"serverLocation": "Germany",
|
"serverLocation": "Germany",
|
||||||
"restrictPublicUsage":true,
|
"restrictPublicUsage":true,
|
||||||
"isInstance":true,
|
"isInstance":true,
|
||||||
|
@ -105,36 +105,25 @@ def channel_ctoken_v1(channel_id, page, sort, tab, view=1):
|
|||||||
|
|
||||||
return base64.urlsafe_b64encode(pointless_nest).decode('ascii')
|
return base64.urlsafe_b64encode(pointless_nest).decode('ascii')
|
||||||
|
|
||||||
def get_channel_tab(channel_id, page="1", sort=3, tab='videos', view=1,
|
def get_channel_tab_info(channel_id, page="1", sort=3, tab='videos', view=1, print_status=True):
|
||||||
ctoken=None, print_status=True):
|
|
||||||
message = 'Got channel tab' if print_status else None
|
message = 'Got channel tab' if print_status else None
|
||||||
|
|
||||||
if not ctoken:
|
if int(sort) == 2 and int(page) > 1:
|
||||||
|
ctoken = channel_ctoken_v1(channel_id, page, sort, tab, view)
|
||||||
|
ctoken = ctoken.replace('=', '%3D')
|
||||||
|
url = ('https://www.youtube.com/channel/' + channel_id + '/' + tab
|
||||||
|
+ '?action_continuation=1&continuation=' + ctoken
|
||||||
|
+ '&pbj=1')
|
||||||
|
content = util.fetch_url(url, headers_desktop + real_cookie,
|
||||||
|
debug_name='channel_tab', report_text=message)
|
||||||
|
else:
|
||||||
ctoken = channel_ctoken_v3(channel_id, page, sort, tab, view)
|
ctoken = channel_ctoken_v3(channel_id, page, sort, tab, view)
|
||||||
ctoken = ctoken.replace('=', '%3D')
|
ctoken = ctoken.replace('=', '%3D')
|
||||||
|
url = 'https://www.youtube.com/browse_ajax?ctoken=' + ctoken
|
||||||
|
content = util.fetch_url(url,
|
||||||
|
headers_desktop + generic_cookie,
|
||||||
|
debug_name='channel_tab', report_text=message)
|
||||||
|
|
||||||
# Not sure what the purpose of the key is or whether it will change
|
|
||||||
# For now it seems to be constant for the API endpoint, not dependent
|
|
||||||
# on the browsing session or channel
|
|
||||||
key = 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8'
|
|
||||||
url = 'https://www.youtube.com/youtubei/v1/browse?key=' + key
|
|
||||||
|
|
||||||
data = {
|
|
||||||
'context': {
|
|
||||||
'client': {
|
|
||||||
'hl': 'en',
|
|
||||||
'gl': 'US',
|
|
||||||
'clientName': 'WEB',
|
|
||||||
'clientVersion': '2.20180830',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'continuation': ctoken,
|
|
||||||
}
|
|
||||||
|
|
||||||
content_type_header = (('Content-Type', 'application/json'),)
|
|
||||||
content = util.fetch_url(
|
|
||||||
url, headers_desktop + content_type_header,
|
|
||||||
data=json.dumps(data), debug_name='channel_tab', report_text=message)
|
|
||||||
info = yt_data_extract.extract_channel_info(json.loads(content), tab)
|
info = yt_data_extract.extract_channel_info(json.loads(content), tab)
|
||||||
if info['error'] is not None:
|
if info['error'] is not None:
|
||||||
return False
|
return False
|
||||||
@ -185,31 +174,12 @@ def get_number_of_videos_general(base_url):
|
|||||||
return get_number_of_videos_channel(get_channel_id(base_url))
|
return get_number_of_videos_channel(get_channel_id(base_url))
|
||||||
|
|
||||||
def get_channel_search_json(channel_id, query, page):
|
def get_channel_search_json(channel_id, query, page):
|
||||||
offset = proto.unpadded_b64encode(proto.uint(3, (page-1)*30))
|
params = proto.string(2, 'search') + proto.string(15, str(page))
|
||||||
params = proto.string(2, 'search') + proto.string(15, offset)
|
|
||||||
params = proto.percent_b64encode(params)
|
params = proto.percent_b64encode(params)
|
||||||
ctoken = proto.string(2, channel_id) + proto.string(3, params) + proto.string(11, query)
|
ctoken = proto.string(2, channel_id) + proto.string(3, params) + proto.string(11, query)
|
||||||
ctoken = base64.urlsafe_b64encode(proto.nested(80226972, ctoken)).decode('ascii')
|
ctoken = base64.urlsafe_b64encode(proto.nested(80226972, ctoken)).decode('ascii')
|
||||||
|
|
||||||
key = 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8'
|
polymer_json = util.fetch_url("https://www.youtube.com/browse_ajax?ctoken=" + ctoken, headers_desktop, debug_name='channel_search')
|
||||||
url = 'https://www.youtube.com/youtubei/v1/browse?key=' + key
|
|
||||||
|
|
||||||
data = {
|
|
||||||
'context': {
|
|
||||||
'client': {
|
|
||||||
'hl': 'en',
|
|
||||||
'gl': 'US',
|
|
||||||
'clientName': 'WEB',
|
|
||||||
'clientVersion': '2.20180830',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'continuation': ctoken,
|
|
||||||
}
|
|
||||||
|
|
||||||
content_type_header = (('Content-Type', 'application/json'),)
|
|
||||||
polymer_json = util.fetch_url(
|
|
||||||
url, headers_desktop + content_type_header,
|
|
||||||
data=json.dumps(data), debug_name='channel_search')
|
|
||||||
|
|
||||||
return polymer_json
|
return polymer_json
|
||||||
|
|
||||||
@ -288,3 +258,5 @@ def get_channel_page_general_url(base_url, tab, request, channel_id=None):
|
|||||||
parameters_dictionary = request.args,
|
parameters_dictionary = request.args,
|
||||||
**info
|
**info
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -155,13 +155,13 @@ def get_info_grid_video_item(item, channel=None):
|
|||||||
'timeStamp':published,
|
'timeStamp':published,
|
||||||
'duration':duration,
|
'duration':duration,
|
||||||
'channelName':channel['username'],
|
'channelName':channel['username'],
|
||||||
'authorUrl':f"/channel/{channel['channelId']}",
|
'authorUrl':"/channel/{}".format(channel['channelId']),
|
||||||
'channelId':channel['channelId'],
|
'channelId':channel['channelId'],
|
||||||
'id':item['videoId'],
|
'id':item['videoId'],
|
||||||
'videoUrl':f"/watch?v={item['videoId']}",
|
'videoUrl':"/watch?v={}".format(item['videoId']),
|
||||||
'isLive':isLive,
|
'isLive':isLive,
|
||||||
'isUpcoming':isUpcoming,
|
'isUpcoming':isUpcoming,
|
||||||
'videoThumb':item['thumbnail']['thumbnails'][0]['url'],
|
'videoThumb':item['thumbnail']['thumbnails'][0]['url']
|
||||||
}
|
}
|
||||||
return video
|
return video
|
||||||
|
|
||||||
@ -172,18 +172,18 @@ def get_author_info_from_channel(content):
|
|||||||
channel = {
|
channel = {
|
||||||
"channelId": cmd['channelId'],
|
"channelId": cmd['channelId'],
|
||||||
"username": cmd['title'],
|
"username": cmd['title'],
|
||||||
"thumbnail": f"https:{cmd['avatar']['thumbnails'][0]['url'].replace('/', '~')}",
|
"thumbnail": "https:{}".format(cmd['avatar']['thumbnails'][0]['url'].replace("/", "~")),
|
||||||
"description":description,
|
"description":description,
|
||||||
"suscribers": cmd['subscriberCountText']['runs'][0]['text'].split(" ")[0],
|
"suscribers": cmd['subscriberCountText']['runs'][0]['text'].split(" ")[0],
|
||||||
"banner": cmd['banner']['thumbnails'][0]['url'],
|
"banner": cmd['banner']['thumbnails'][0]['url']
|
||||||
}
|
}
|
||||||
return channel
|
return channel
|
||||||
|
|
||||||
def get_channel_info(channelId, videos=True, page=1, sort=3):
|
def get_channel_info(channelId, videos=True, page=1, sort=3):
|
||||||
if id_or_username(channelId) == "channel":
|
if id_or_username(channelId) == "channel":
|
||||||
videos = []
|
videos = []
|
||||||
ciUrl = f"https://www.youtube.com/channel/{channelId}"
|
ciUrl = "https://www.youtube.com/channel/{}".format(channelId)
|
||||||
mainUrl = f"https://www.youtube.com/browse_ajax?ctoken={channel_ctoken_desktop(channelId, page, sort, 'videos')}"
|
mainUrl = "https://www.youtube.com/browse_ajax?ctoken={}".format(channel_ctoken_desktop(channelId, page, sort, "videos"))
|
||||||
content = json.loads(requests.get(mainUrl, headers=headers).text)
|
content = json.loads(requests.get(mainUrl, headers=headers).text)
|
||||||
req = requests.get(ciUrl, headers=headers).text
|
req = requests.get(ciUrl, headers=headers).text
|
||||||
|
|
||||||
@ -210,4 +210,4 @@ def get_channel_info(channelId, videos=True, page=1, sort=3):
|
|||||||
return {"channel":authorInfo}
|
return {"channel":authorInfo}
|
||||||
|
|
||||||
else:
|
else:
|
||||||
baseUrl = f"https://www.youtube.com/user/{channelId}"
|
baseUrl = "https://www.youtube.com/user/{}".format(channelId)
|
@ -159,9 +159,10 @@ def get_video_renderer_item_info(item):
|
|||||||
'authorUrl':"/channel/{}".format(item['ownerText']['runs'][0]['navigationEndpoint']['browseEndpoint']['browseId']),
|
'authorUrl':"/channel/{}".format(item['ownerText']['runs'][0]['navigationEndpoint']['browseEndpoint']['browseId']),
|
||||||
'channelId':item['ownerText']['runs'][0]['navigationEndpoint']['browseEndpoint']['browseId'],
|
'channelId':item['ownerText']['runs'][0]['navigationEndpoint']['browseEndpoint']['browseId'],
|
||||||
'id':item['videoId'],
|
'id':item['videoId'],
|
||||||
'videoUrl':f"/watch?v={item['videoId']}",
|
'videoUrl':"/watch?v={}".format(item['videoId']),
|
||||||
'isLive':isLive,
|
'isLive':isLive,
|
||||||
'isUpcoming':isUpcoming,
|
'isUpcoming':isUpcoming,
|
||||||
'videoThumb':item['thumbnail']['thumbnails'][0]['url'],
|
'videoThumb':item['thumbnail']['thumbnails'][0]['url']
|
||||||
}
|
}
|
||||||
return video
|
return video
|
||||||
|
|
||||||
|
@ -120,9 +120,9 @@ def fetch_url_response(url, headers=(), timeout=15, data=None,
|
|||||||
if data is not None:
|
if data is not None:
|
||||||
method = "POST"
|
method = "POST"
|
||||||
if isinstance(data, str):
|
if isinstance(data, str):
|
||||||
data = data.encode('utf-8')
|
data = data.encode('ascii')
|
||||||
elif not isinstance(data, bytes):
|
elif not isinstance(data, bytes):
|
||||||
data = urllib.parse.urlencode(data).encode('utf-8')
|
data = urllib.parse.urlencode(data).encode('ascii')
|
||||||
|
|
||||||
if cookiejar_send is not None or cookiejar_receive is not None: # Use urllib
|
if cookiejar_send is not None or cookiejar_receive is not None: # Use urllib
|
||||||
req = urllib.request.Request(url, data=data, headers=headers)
|
req = urllib.request.Request(url, data=data, headers=headers)
|
||||||
@ -143,7 +143,7 @@ def fetch_url_response(url, headers=(), timeout=15, data=None,
|
|||||||
else:
|
else:
|
||||||
retries = urllib3.Retry(3)
|
retries = urllib3.Retry(3)
|
||||||
pool = get_pool(use_tor)
|
pool = get_pool(use_tor)
|
||||||
response = pool.request(method, url, headers=headers, body=data,
|
response = pool.request(method, url, headers=headers,
|
||||||
timeout=timeout, preload_content=False,
|
timeout=timeout, preload_content=False,
|
||||||
decode_content=False, retries=retries)
|
decode_content=False, retries=retries)
|
||||||
cleanup_func = (lambda r: r.release_conn())
|
cleanup_func = (lambda r: r.release_conn())
|
||||||
@ -156,7 +156,7 @@ def fetch_url(url, headers=(), timeout=15, report_text=None, data=None,
|
|||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
|
|
||||||
response, cleanup_func = fetch_url_response(
|
response, cleanup_func = fetch_url_response(
|
||||||
url, headers, timeout=timeout, data=data,
|
url, headers, timeout=timeout,
|
||||||
cookiejar_send=cookiejar_send, cookiejar_receive=cookiejar_receive,
|
cookiejar_send=cookiejar_send, cookiejar_receive=cookiejar_receive,
|
||||||
use_tor=use_tor)
|
use_tor=use_tor)
|
||||||
response_time = time.time()
|
response_time = time.time()
|
||||||
@ -394,3 +394,4 @@ def check_gevent_exceptions(*tasks):
|
|||||||
for task in tasks:
|
for task in tasks:
|
||||||
if task.exception:
|
if task.exception:
|
||||||
raise task.exception
|
raise task.exception
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ def parse_comment(raw_comment):
|
|||||||
cmnt = {}
|
cmnt = {}
|
||||||
imgHostName = urllib.parse.urlparse(raw_comment['author_avatar'][1:]).netloc
|
imgHostName = urllib.parse.urlparse(raw_comment['author_avatar'][1:]).netloc
|
||||||
cmnt['author'] = raw_comment['author']
|
cmnt['author'] = raw_comment['author']
|
||||||
cmnt['thumbnail'] = raw_comment['author_avatar'].replace(f"https://{imgHostName}","")[1:] + "?host=" + imgHostName
|
cmnt['thumbnail'] = raw_comment['author_avatar'].replace("https://{}".format(imgHostName),"")[1:] + "?host=" + imgHostName
|
||||||
|
|
||||||
print(cmnt['thumbnail'])
|
print(cmnt['thumbnail'])
|
||||||
cmnt['channel'] = raw_comment['author_url']
|
cmnt['channel'] = raw_comment['author_url']
|
||||||
|
@ -266,3 +266,5 @@ def format_bytes(bytes):
|
|||||||
suffix = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent]
|
suffix = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent]
|
||||||
converted = float(bytes) / float(1024 ** exponent)
|
converted = float(bytes) / float(1024 ** exponent)
|
||||||
return '%.2f%s' % (converted, suffix)
|
return '%.2f%s' % (converted, suffix)
|
||||||
|
|
||||||
|
|
||||||
|
@ -329,11 +329,6 @@ def extract_item_info(item, additional_info={}):
|
|||||||
|
|
||||||
def extract_response(polymer_json):
|
def extract_response(polymer_json):
|
||||||
'''return response, error'''
|
'''return response, error'''
|
||||||
# /youtubei/v1/browse endpoint returns response directly
|
|
||||||
if isinstance(polymer_json, dict) and 'responseContext' in polymer_json:
|
|
||||||
# this is the response
|
|
||||||
return polymer_json, None
|
|
||||||
|
|
||||||
response = multi_deep_get(polymer_json, [1, 'response'], ['response'])
|
response = multi_deep_get(polymer_json, [1, 'response'], ['response'])
|
||||||
if response is None:
|
if response is None:
|
||||||
return None, 'Failed to extract response'
|
return None, 'Failed to extract response'
|
||||||
|
@ -177,6 +177,7 @@ def _extract_watch_info_mobile(top_level):
|
|||||||
author_id = deep_get(playlist, 'longBylineText', 'runs', 0,
|
author_id = deep_get(playlist, 'longBylineText', 'runs', 0,
|
||||||
'navigationEndpoint', 'browseEndpoint', 'browseId')
|
'navigationEndpoint', 'browseEndpoint', 'browseId')
|
||||||
info['playlist']['author_id'] = author_id
|
info['playlist']['author_id'] = author_id
|
||||||
|
if author_id:
|
||||||
info['playlist']['author_url'] = concat_or_none(
|
info['playlist']['author_url'] = concat_or_none(
|
||||||
'https://www.youtube.com/channel/', author_id)
|
'https://www.youtube.com/channel/', author_id)
|
||||||
info['playlist']['id'] = playlist.get('playlistId')
|
info['playlist']['id'] = playlist.get('playlistId')
|
||||||
@ -446,8 +447,7 @@ def _extract_playability_error(info, player_response, error_prefix=''):
|
|||||||
|
|
||||||
SUBTITLE_FORMATS = ('srv1', 'srv2', 'srv3', 'ttml', 'vtt')
|
SUBTITLE_FORMATS = ('srv1', 'srv2', 'srv3', 'ttml', 'vtt')
|
||||||
def extract_watch_info(polymer_json):
|
def extract_watch_info(polymer_json):
|
||||||
info = {'playability_error': None, 'error': None,
|
info = {'playability_error': None, 'error': None}
|
||||||
'player_response_missing': None}
|
|
||||||
|
|
||||||
if isinstance(polymer_json, dict):
|
if isinstance(polymer_json, dict):
|
||||||
top_level = polymer_json
|
top_level = polymer_json
|
||||||
@ -509,10 +509,6 @@ def extract_watch_info(polymer_json):
|
|||||||
if not info['formats']:
|
if not info['formats']:
|
||||||
_extract_formats(info, player_response)
|
_extract_formats(info, player_response)
|
||||||
|
|
||||||
# see https://github.com/user234683/youtube-local/issues/22#issuecomment-706395160
|
|
||||||
info['player_urls_missing'] = (
|
|
||||||
not info['formats'] and not embedded_player_response)
|
|
||||||
|
|
||||||
# playability errors
|
# playability errors
|
||||||
_extract_playability_error(info, player_response)
|
_extract_playability_error(info, player_response)
|
||||||
|
|
||||||
@ -569,84 +565,6 @@ def extract_watch_info(polymer_json):
|
|||||||
info['author_url'] = 'https://www.youtube.com/channel/' + info['author_id'] if info['author_id'] else None
|
info['author_url'] = 'https://www.youtube.com/channel/' + info['author_id'] if info['author_id'] else None
|
||||||
return info
|
return info
|
||||||
|
|
||||||
single_char_codes = {
|
|
||||||
'n': '\n',
|
|
||||||
'\\': '\\',
|
|
||||||
'"': '"',
|
|
||||||
"'": "'",
|
|
||||||
'b': '\b',
|
|
||||||
'f': '\f',
|
|
||||||
'n': '\n',
|
|
||||||
'r': '\r',
|
|
||||||
't': '\t',
|
|
||||||
'v': '\x0b',
|
|
||||||
'0': '\x00',
|
|
||||||
'\n': '', # backslash followed by literal newline joins lines
|
|
||||||
}
|
|
||||||
def js_escape_replace(match):
|
|
||||||
r'''Resolves javascript string escape sequences such as \x..'''
|
|
||||||
# some js-strings in the watch page html include them for no reason
|
|
||||||
# https://mathiasbynens.be/notes/javascript-escapes
|
|
||||||
escaped_sequence = match.group(1)
|
|
||||||
if escaped_sequence[0] in ('x', 'u'):
|
|
||||||
return chr(int(escaped_sequence[1:], base=16))
|
|
||||||
|
|
||||||
# In javascript, if it's not one of those escape codes, it's just the
|
|
||||||
# literal character. e.g., "\a" = "a"
|
|
||||||
return single_char_codes.get(escaped_sequence, escaped_sequence)
|
|
||||||
|
|
||||||
# works but complicated and unsafe:
|
|
||||||
#PLAYER_RESPONSE_RE = re.compile(r'<script[^>]*?>[^<]*?var ytInitialPlayerResponse = ({(?:"(?:[^"\\]|\\.)*?"|[^"])+?});')
|
|
||||||
|
|
||||||
# Because there are sometimes additional statements after the json object
|
|
||||||
# so we just capture all of those until end of script and tell json decoder
|
|
||||||
# to ignore extra stuff after the json object
|
|
||||||
PLAYER_RESPONSE_RE = re.compile(r'<script[^>]*?>[^<]*?var ytInitialPlayerResponse = ({.*?)</script>')
|
|
||||||
INITIAL_DATA_RE = re.compile(r"<script[^>]*?>var ytInitialData = '(.+?[^\\])';")
|
|
||||||
BASE_JS_RE = re.compile(r'jsUrl":\s*"([\w\-\./]+?/base.js)"')
|
|
||||||
JS_STRING_ESCAPE_RE = re.compile(r'\\([^xu]|x..|u....)')
|
|
||||||
def extract_watch_info_from_html(watch_html):
|
|
||||||
base_js_match = BASE_JS_RE.search(watch_html)
|
|
||||||
player_response_match = PLAYER_RESPONSE_RE.search(watch_html)
|
|
||||||
initial_data_match = INITIAL_DATA_RE.search(watch_html)
|
|
||||||
|
|
||||||
if base_js_match is not None:
|
|
||||||
base_js_url = base_js_match.group(1)
|
|
||||||
else:
|
|
||||||
base_js_url = None
|
|
||||||
|
|
||||||
if player_response_match is not None:
|
|
||||||
decoder = json.JSONDecoder()
|
|
||||||
# this will make it ignore extra stuff after end of object
|
|
||||||
player_response = decoder.raw_decode(player_response_match.group(1))[0]
|
|
||||||
else:
|
|
||||||
return {'error': 'Could not find ytInitialPlayerResponse'}
|
|
||||||
player_response = None
|
|
||||||
|
|
||||||
if initial_data_match is not None:
|
|
||||||
initial_data = initial_data_match.group(1)
|
|
||||||
initial_data = JS_STRING_ESCAPE_RE.sub(js_escape_replace, initial_data)
|
|
||||||
initial_data = json.loads(initial_data)
|
|
||||||
else:
|
|
||||||
print('extract_watch_info_from_html: failed to find initialData')
|
|
||||||
initial_data = None
|
|
||||||
|
|
||||||
# imitate old format expected by extract_watch_info
|
|
||||||
fake_polymer_json = {
|
|
||||||
'player': {
|
|
||||||
'args': {},
|
|
||||||
'assets': {
|
|
||||||
'js': base_js_url
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'playerResponse': player_response,
|
|
||||||
'response': initial_data,
|
|
||||||
}
|
|
||||||
|
|
||||||
return extract_watch_info(fake_polymer_json)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_caption_url(info, language, format, automatic=False, translation_language=None):
|
def get_caption_url(info, language, format, automatic=False, translation_language=None):
|
||||||
'''Gets the url for captions with the given language and format. If automatic is True, get the automatic captions for that language. If translation_language is given, translate the captions from `language` to `translation_language`. If automatic is true and translation_language is given, the automatic captions will be translated.'''
|
'''Gets the url for captions with the given language and format. If automatic is True, get the automatic captions for that language. If translation_language is given, translate the captions from `language` to `translation_language`. If automatic is true and translation_language is given, the automatic captions will be translated.'''
|
||||||
url = info['_captions_base_url']
|
url = info['_captions_base_url']
|
||||||
@ -662,8 +580,7 @@ def get_caption_url(info, language, format, automatic=False, translation_languag
|
|||||||
return url
|
return url
|
||||||
|
|
||||||
def update_with_age_restricted_info(info, video_info_page):
|
def update_with_age_restricted_info(info, video_info_page):
|
||||||
'''Inserts urls from 'player_response' in get_video_info page'''
|
ERROR_PREFIX = 'Error bypassing age-restriction: '
|
||||||
ERROR_PREFIX = 'Error getting missing player or bypassing age-restriction: '
|
|
||||||
|
|
||||||
video_info = urllib.parse.parse_qs(video_info_page)
|
video_info = urllib.parse.parse_qs(video_info_page)
|
||||||
player_response = deep_get(video_info, 'player_response', 0)
|
player_response = deep_get(video_info, 'player_response', 0)
|
||||||
@ -686,9 +603,7 @@ def requires_decryption(info):
|
|||||||
# adapted from youtube-dl and invidious:
|
# adapted from youtube-dl and invidious:
|
||||||
# https://github.com/omarroth/invidious/blob/master/src/invidious/helpers/signatures.cr
|
# https://github.com/omarroth/invidious/blob/master/src/invidious/helpers/signatures.cr
|
||||||
decrypt_function_re = re.compile(r'function\(a\)\{(a=a\.split\(""\)[^\}{]+)return a\.join\(""\)\}')
|
decrypt_function_re = re.compile(r'function\(a\)\{(a=a\.split\(""\)[^\}{]+)return a\.join\(""\)\}')
|
||||||
# gives us e.g. rt, .xK, 5 from rt.xK(a,5) or rt, ["xK"], 5 from rt["xK"](a,5)
|
op_with_arg_re = re.compile(r'[^\.]+\.([^\(]+)\(a,(\d+)\)')
|
||||||
# (var, operation, argument)
|
|
||||||
var_op_arg_re = re.compile(r'(\w+)(\.\w+|\["[^"]+"\])\(a,(\d+)\)')
|
|
||||||
def extract_decryption_function(info, base_js):
|
def extract_decryption_function(info, base_js):
|
||||||
'''Insert decryption function into info. Return error string if not successful.
|
'''Insert decryption function into info. Return error string if not successful.
|
||||||
Decryption function is a list of list[2] of numbers.
|
Decryption function is a list of list[2] of numbers.
|
||||||
@ -702,11 +617,10 @@ def extract_decryption_function(info, base_js):
|
|||||||
if not function_body:
|
if not function_body:
|
||||||
return 'Empty decryption function body'
|
return 'Empty decryption function body'
|
||||||
|
|
||||||
var_with_operation_match = var_op_arg_re.fullmatch(function_body[0])
|
var_name = get(function_body[0].split('.'), 0)
|
||||||
if var_with_operation_match is None:
|
if var_name is None:
|
||||||
return 'Could not find var_name'
|
return 'Could not find var_name'
|
||||||
|
|
||||||
var_name = var_with_operation_match.group(1)
|
|
||||||
var_body_match = re.search(r'var ' + re.escape(var_name) + r'=\{(.*?)\};', base_js, flags=re.DOTALL)
|
var_body_match = re.search(r'var ' + re.escape(var_name) + r'=\{(.*?)\};', base_js, flags=re.DOTALL)
|
||||||
if var_body_match is None:
|
if var_body_match is None:
|
||||||
return 'Could not find var_body'
|
return 'Could not find var_body'
|
||||||
@ -735,13 +649,13 @@ def extract_decryption_function(info, base_js):
|
|||||||
|
|
||||||
decryption_function = []
|
decryption_function = []
|
||||||
for op_with_arg in function_body:
|
for op_with_arg in function_body:
|
||||||
match = var_op_arg_re.fullmatch(op_with_arg)
|
match = op_with_arg_re.fullmatch(op_with_arg)
|
||||||
if match is None:
|
if match is None:
|
||||||
return 'Could not parse operation with arg'
|
return 'Could not parse operation with arg'
|
||||||
op_name = match.group(2).strip('[].')
|
op_name = match.group(1)
|
||||||
if op_name not in operation_definitions:
|
if op_name not in operation_definitions:
|
||||||
return 'Unknown op_name: ' + str(op_name)
|
return 'Unknown op_name: ' + op_name
|
||||||
op_argument = match.group(3)
|
op_argument = match.group(2)
|
||||||
decryption_function.append([operation_definitions[op_name], int(op_argument)])
|
decryption_function.append([operation_definitions[op_name], int(op_argument)])
|
||||||
|
|
||||||
info['decryption_function'] = decryption_function
|
info['decryption_function'] = decryption_function
|
||||||
|
Reference in New Issue
Block a user