Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
4d081adda2
|
|||
|
279d48d8ee
|
|||
|
c017578631
|
|||
|
f4baade73b
|
|||
|
f68053b461
|
|||
|
ec18ceb6db
|
|||
|
68c4778ed8
|
|||
|
cf28156e70
|
|||
|
149fe89f89
|
|||
|
c124d93285
|
|||
|
06e5d42c9c
|
|||
|
c42b60a58c
|
|||
|
1e8bdcddd8
|
|||
|
90c2295bb8
|
|||
|
cca7b48d3b
|
|||
|
2d9dec2d74
|
|||
|
30741f124e
|
|||
|
f256a9db06
|
|||
|
baf850308f
|
|||
|
|
d9174d2a20 | ||
|
a5dad1e7bb
|
|||
|
aa4278e7a7
|
|||
|
4dfff72a9c
|
|||
|
624b24b1be
|
|||
|
c14f035147
|
|||
|
2d787f458d
|
|||
|
9169e5177e
|
|||
|
077c63d793
|
|||
|
2696fe05d4
|
|||
| 3d042a3739 | |||
|
|
ad57bc5f78 | ||
|
|
5f2bb97d65 | ||
|
d9cb0edebe
|
|||
|
56c2bb2e4c
|
|||
|
3326468637
|
|||
|
23eeccb5e4
|
|||
|
7cd8e4af9b
|
|||
|
a14aa856ab
|
|||
|
d80d5e37c0
|
|||
|
60c6924870
|
|||
|
c3871cd542
|
|||
| 585051e324 | |||
|
77d22521c0
|
|||
|
5f1f9f7fff
|
|||
|
f8a2bdd464
|
|||
|
6e0c6c6ce0
|
|||
|
8fd37af0d3
|
|||
|
8f71f8195e
|
|||
|
1c75f11e9f
|
|||
|
711f6b59f3
|
|||
|
568158484e
|
|||
|
81d17dd982
|
|||
|
07b34a7650
|
|||
|
10da0f4980
|
|||
|
02591c5cff
|
|||
|
1675b9b751
|
|||
|
6bf0c45277
|
@@ -3,7 +3,9 @@
|
|||||||
"projectOwner": "Aetherinox",
|
"projectOwner": "Aetherinox",
|
||||||
"repoType": "github",
|
"repoType": "github",
|
||||||
"repoHost": "https://github.com",
|
"repoHost": "https://github.com",
|
||||||
"files": ["README.md"],
|
"files": [
|
||||||
|
"README.md"
|
||||||
|
],
|
||||||
"imageSize": 40,
|
"imageSize": 40,
|
||||||
"commit": true,
|
"commit": true,
|
||||||
"commitConvention": "angular",
|
"commitConvention": "angular",
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
# #
|
# #
|
||||||
# @file .editorconfig
|
# @file .editorconfig
|
||||||
# @author Aetherinox https://github.com/Aetherinox
|
# @author Aetherinox
|
||||||
|
# @repo https://github.com/TheBinaryNinja/tvapp2
|
||||||
# https://git.binaryninja.net/Aetherinox
|
# https://git.binaryninja.net/Aetherinox
|
||||||
# @ref http://editorconfig.org
|
# @ref http://editorconfig.org
|
||||||
# #
|
# #
|
||||||
|
|||||||
52
.github/workflows/documentation.yml
vendored
@@ -43,13 +43,55 @@ run-name: "📒 Docs › Build"
|
|||||||
# #
|
# #
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Trigger › Release
|
||||||
|
#
|
||||||
|
# update documentation every time a release is made
|
||||||
|
# #
|
||||||
|
|
||||||
release:
|
release:
|
||||||
types:
|
types:
|
||||||
- published
|
- published
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Trigger › Push
|
||||||
|
#
|
||||||
|
# update documentation every time a file in docs/ folder is modified
|
||||||
|
# #
|
||||||
|
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- docs/**
|
- docs/**
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Trigger › Workflow Dispatch
|
||||||
|
#
|
||||||
|
# If any values are not provided, will use fallback env variable
|
||||||
|
# #
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Image Name
|
||||||
|
#
|
||||||
|
# used in github image path
|
||||||
|
# ghcr.io/${{ env.IMAGE_GHCR_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||||
|
# #
|
||||||
|
|
||||||
|
WORKING_DIR:
|
||||||
|
description: '📁 Docs Folder'
|
||||||
|
required: true
|
||||||
|
default: './docs/site'
|
||||||
|
type: string
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Trigger › Cron
|
||||||
|
#
|
||||||
|
# update documentation every X hours
|
||||||
|
# #
|
||||||
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 */12 * * *"
|
- cron: "0 */12 * * *"
|
||||||
|
|
||||||
@@ -58,6 +100,7 @@ on:
|
|||||||
# #
|
# #
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
WORKING_DIR: ${{ github.event.inputs.WORKING_DIR || './docs/site' }}
|
||||||
ASSIGN_USER: Aetherinox
|
ASSIGN_USER: Aetherinox
|
||||||
BOT_NAME_1: EuropaServ
|
BOT_NAME_1: EuropaServ
|
||||||
BOT_NAME_2: BinaryServ
|
BOT_NAME_2: BinaryServ
|
||||||
@@ -106,7 +149,8 @@ jobs:
|
|||||||
# Documentation › Setup Python
|
# Documentation › Setup Python
|
||||||
# #
|
# #
|
||||||
|
|
||||||
- name: "🐍 Setup Python"
|
- name: >-
|
||||||
|
🐍 Setup Python
|
||||||
id: task_docs_python_setup
|
id: task_docs_python_setup
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@@ -128,6 +172,7 @@ jobs:
|
|||||||
pip install mkdocs
|
pip install mkdocs
|
||||||
pip install mkdocs-material
|
pip install mkdocs-material
|
||||||
pip install mike
|
pip install mike
|
||||||
|
pip install mkdocs-embed-external-markdown
|
||||||
pip install mkdocs-git-committers-plugin-2
|
pip install mkdocs-git-committers-plugin-2
|
||||||
pip install mkdocs-encryptcontent-plugin
|
pip install mkdocs-encryptcontent-plugin
|
||||||
pip install mkdocs-redirects mkdocs-glightbox pymdown-extensions mkdocs-git-revision-date-localized-plugin mkdocs-git-authors-plugin mkdocs-link-embeds-plugin
|
pip install mkdocs-redirects mkdocs-glightbox pymdown-extensions mkdocs-git-revision-date-localized-plugin mkdocs-git-authors-plugin mkdocs-link-embeds-plugin
|
||||||
@@ -141,12 +186,13 @@ jobs:
|
|||||||
# Documentation › Deploy
|
# Documentation › Deploy
|
||||||
# #
|
# #
|
||||||
|
|
||||||
- name: "💽 Deploy"
|
- name: >-
|
||||||
|
💽 Deploy
|
||||||
id: task_docs_deploy
|
id: task_docs_deploy
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v4
|
||||||
with:
|
with:
|
||||||
personal_token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
personal_token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||||
publish_dir: ./docs/site
|
publish_dir: "${{ env.WORKING_DIR }}"
|
||||||
|
|
||||||
|
|
||||||
# #
|
# #
|
||||||
|
|||||||
8
.github/workflows/release.yml
vendored
@@ -243,11 +243,12 @@ jobs:
|
|||||||
# Release › Install package via NPM
|
# Release › Install package via NPM
|
||||||
# #
|
# #
|
||||||
|
|
||||||
- name: '🪪 NPM › Install'
|
- name: '🪪 NPM › Install & Lint'
|
||||||
id: task_release_npm_install
|
id: task_release_npm_install
|
||||||
working-directory: ./tvapp2
|
working-directory: ./tvapp2
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm ci
|
||||||
|
npm run lint
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.SELF_TOKEN_CL }}
|
NODE_AUTH_TOKEN: ${{ secrets.SELF_TOKEN_CL }}
|
||||||
|
|
||||||
@@ -426,6 +427,9 @@ jobs:
|
|||||||
zip -jr ${{ env.PROJECT_NAME }}-${{ env.PACKAGE_VERSION }}-rc.${{ inputs.VERSION_RC }}.zip SHA256SUMS.txt
|
zip -jr ${{ env.PROJECT_NAME }}-${{ env.PACKAGE_VERSION }}-rc.${{ inputs.VERSION_RC }}.zip SHA256SUMS.txt
|
||||||
ls
|
ls
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Release › Generate Tags
|
||||||
|
# #
|
||||||
|
|
||||||
- name: '📝 Changelog › Pre Setup (Categorized Commits)'
|
- name: '📝 Changelog › Pre Setup (Categorized Commits)'
|
||||||
id: task_release_changelog_categorized_sha_set
|
id: task_release_changelog_categorized_sha_set
|
||||||
@@ -542,7 +546,7 @@ jobs:
|
|||||||
# Release › List Tree
|
# Release › List Tree
|
||||||
# #
|
# #
|
||||||
|
|
||||||
- name: '⚙️ Debug › Clean Dist Folder'
|
- name: '⚙️ Debug › Tree Listing'
|
||||||
id: task_release_debug_tree
|
id: task_release_debug_tree
|
||||||
run: |
|
run: |
|
||||||
tree
|
tree
|
||||||
|
|||||||
58
CODE_OF_CONDUCT.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
# Contributor Covenant Code of Conduct
|
||||||
|
|
||||||
|
## Our Pledge
|
||||||
|
|
||||||
|
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Our Standards
|
||||||
|
|
||||||
|
Examples of behavior that contributes to creating a positive environment include:
|
||||||
|
|
||||||
|
- Using welcoming and inclusive language
|
||||||
|
- Being respectful of differing viewpoints and experiences
|
||||||
|
- Gracefully accepting constructive criticism
|
||||||
|
- Focusing on what is best for the community
|
||||||
|
- Showing empathy towards other community members
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Examples of unacceptable behavior by participants include:
|
||||||
|
|
||||||
|
- The use of sexualized language or imagery and unwelcome sexual attention or advances
|
||||||
|
- Trolling, insulting/derogatory comments, and personal or political attacks
|
||||||
|
- Public or private harassment
|
||||||
|
- Publishing others' private information, such as a physical or electronic address, without explicit permission
|
||||||
|
- Other conduct which could reasonably be considered inappropriate in a professional setting
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Our Responsibilities
|
||||||
|
|
||||||
|
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
||||||
|
|
||||||
|
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Enforcement
|
||||||
|
|
||||||
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at `thebinaryninja [at] proton [dot] me`. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
||||||
|
|
||||||
|
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Attribution
|
||||||
|
|
||||||
|
This Code of Conduct is adapted from the [📄 Contributor Covenant][homepage], version 2.1, available at [https://contributor-covenant.org/version/2/1/][version]
|
||||||
|
|
||||||
|
[homepage]: http://contributor-covenant.org
|
||||||
|
[version]: https://www.contributor-covenant.org/version/2/1/
|
||||||
643
CONTRIBUTING.md
Normal file
@@ -0,0 +1,643 @@
|
|||||||
|
<div align="center">
|
||||||
|
<h6>Contribution Guidelines for BinaryNinja Applications</h6>
|
||||||
|
<h1>♾️ Contributing ♾️</h1>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
[![Version][github-version-img]][github-version-uri]
|
||||||
|
[![Downloads][github-downloads-img]][github-downloads-uri]
|
||||||
|
[![Size][github-size-img]][github-size-img]
|
||||||
|
[![Last Commit][github-commit-img]][github-commit-img]
|
||||||
|
[![Contributors][contribs-all-img]](#contributors-)
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
Below are a list of ways that you can help contribute to this project, as well as policies and guides that explain how to get started.
|
||||||
|
|
||||||
|
Please review everything on this page before you submit your contribution.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
- [About](#about)
|
||||||
|
- [Issues, Bugs, Ideas](#issues-bugs-ideas)
|
||||||
|
- [Contributing](#contributing)
|
||||||
|
- [Before Submitting Pull Requests](#before-submitting-pull-requests)
|
||||||
|
- [Conventional Commit Specification](#conventional-commit-specification)
|
||||||
|
- [Types](#types)
|
||||||
|
- [Example 1:](#example-1)
|
||||||
|
- [Example 2:](#example-2)
|
||||||
|
- [Committing](#committing)
|
||||||
|
- [Languages](#languages)
|
||||||
|
- [Python](#python)
|
||||||
|
- [Indentation](#indentation)
|
||||||
|
- [Line Length](#line-length)
|
||||||
|
- [Blank Lines](#blank-lines)
|
||||||
|
- [Imports](#imports)
|
||||||
|
- [Commenting](#commenting)
|
||||||
|
- [Casing](#casing)
|
||||||
|
- [NodeJS](#nodejs)
|
||||||
|
- [Prettier](#prettier)
|
||||||
|
- [ESLint](#eslint)
|
||||||
|
- [v9 \& Newer (Config)](#v9--newer-config)
|
||||||
|
- [v8 \& Older (Config)](#v8--older-config)
|
||||||
|
- [Packages](#packages)
|
||||||
|
- [Indentation](#indentation-1)
|
||||||
|
- [Style](#style)
|
||||||
|
- [Line Length](#line-length-1)
|
||||||
|
- [Commenting](#commenting-1)
|
||||||
|
- [Casing](#casing-1)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Issues, Bugs, Ideas
|
||||||
|
|
||||||
|
Stuff happens, and sometimes as best as we try, there may be issues within this project that we are unaware of. That is the great thing about open-source; anyone can use the program and contribute to making it better.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you have found a bug, have an issue, or maybe even a cool idea; you can let us know by [submitting it](https://github.com/thebinaryninja/tvapp2/issues). However, before you submit your new issue, bug report, or feature request; head over to the [Issues Section](https://github.com/thebinaryninja/tvapp2/issues) and ensure nobody else has already submitted it.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Once you are sure that your issue has not already being dealt with; you may submit a new issue at [here](https://github.com/thebinaryninja/tvapp2/issues/new/choose). You'll be asked to specify exactly what your new submission targets, such as:
|
||||||
|
- Bug report
|
||||||
|
- Feature Suggestion
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
When writing a new submission; ensure you fill out any of the questions asked of you. If you do not provide enough information, we cannot help. Be as detailed as possible, and provide any logs or screenshots you may have to help us better understand what you mean. Failure to fill out the submission properly may result in it being closed without a response.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you are submitting a bug report:
|
||||||
|
|
||||||
|
- Explain the issue
|
||||||
|
- Describe how you expect for a feature to work, and what you're seeing instead of what you expected.
|
||||||
|
- List possible options for a resolution or insight
|
||||||
|
- Provide screenshots, logs, or anything else that can visually help track down the issue.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
[![Submit Issue][btn-github-submit-img]][btn-github-submit-uri]
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
If you are looking to contribute to this project by actually submit your own code; please review this section completely. There is important information and policies provided below that you must follow for your pull request to get accepted.
|
||||||
|
|
||||||
|
The source is here for everyone to collectively share and collaborate on. If you think you have a possible solution to a problem; don't be afraid to get your hands dirty.
|
||||||
|
|
||||||
|
All contributions are made via pull requests. To create a pull request, you need a GitHub account. If you are unclear on this process, see [GitHub's documentation on forking and pull requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork). Pull requests should be targeted at the master branch.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Before Submitting Pull Requests
|
||||||
|
|
||||||
|
- Follow the repository's code formatting conventions (see below);
|
||||||
|
- Include tests that prove that the change works as intended and does not add regressions;
|
||||||
|
- Document the changes in the code and/or the project's documentation;
|
||||||
|
- Your PR must pass the CI pipeline;
|
||||||
|
- When submitting your Pull Request, use one of the following branches:
|
||||||
|
- For bug fixes: `main` branch
|
||||||
|
- For features & functionality: `development` branch
|
||||||
|
- Include a proper git commit message following the [Conventional Commit Specification](https://conventionalcommits.org/en/v1.0.0/#specification).
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you have completed the above tasks, the pull request is ready to be reviewed and your pull request's label will be changed to "Ready for Review". At this point, a human will need to step in and manually verify your submission.
|
||||||
|
|
||||||
|
Reviewers will approve the pull request once they are satisfied with the patch it will be merged.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Conventional Commit Specification
|
||||||
|
|
||||||
|
When committing your changes, we require you to follow the [Conventional Commit Specification](https://conventionalcommits.org/en/v1.0.0/#specification). The **Conventional Commits** is a specification for the format and content of a commit message. The concept behind Conventional Commits is to provide a rich commit history that can be read and understood by both humans and automated tools. Conventional Commits have the following format:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>[(optional <scope>)]: <description>
|
||||||
|
|
||||||
|
[optional <body>]
|
||||||
|
|
||||||
|
[optional <footer(s)>]
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### Types
|
||||||
|
|
||||||
|
Our repositories make use of the following commit tags:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
| Type | Description |
|
||||||
|
| --- | --- |
|
||||||
|
| `feat` | <sup><sub>Introduce new feature</sub></sup> |
|
||||||
|
| `fix` | <sup><sub>Bug fix</sub></sup> |
|
||||||
|
| `chore` | <sup><sub>Includes technical or preventative maintenance task that is necessary for managing the app or repo, such as updating grunt tasks, but is not tied to any specific feature. Usually done for maintenance purposes.<br/>E.g: Edit .gitignore, .prettierrc, .prettierignore, .gitignore, eslint.config.js file</sub></sup> |
|
||||||
|
| `revert` | <sup><sub>Revert a previous commit</sub></sup> |
|
||||||
|
| `style` | <sup><sub>Update / reformat style of source code. Does not change the way app is implemented. Changes that do not affect the meaning of the code<br />E.g: white-space, formatting, missing semi-colons, change tabs to spaces, etc)</sub></sup> |
|
||||||
|
| `docs` | <sup><sub>Change website or markdown documents. Does not mean changes to the documentation generator script itself, only the documents created from the generator. <br/>E.g: documentation, readme.md or markdown |
|
||||||
|
| `build` | <sup><sub>Changes to the build / compilation / packaging process or auxiliary tools such as doc generation<br />E.g: create new build tasks, update release script, etc.</sub></sup> |
|
||||||
|
| `refactor` | <sup><sub>Change to production code that leads to no behavior difference,<br/>E.g: split files, rename variables, rename package, improve code style, etc.</sub></sup> |
|
||||||
|
| `test` | <sup><sub>Add or refactor tests, no production code change. Changes the suite of automated tests for the app.</sub></sup> |
|
||||||
|
| `ci` | <sup><sub>Changes related to Continuous Integration (usually `yml` and other configuration files).</sub></sup> |
|
||||||
|
| `perf` | <sup><sub>Performance improvement of algorithms or execution time of the app. Does not change an existing feature.</sub></sup> |
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Example 1:
|
||||||
|
|
||||||
|
```
|
||||||
|
feat(core): bug affecting menu [#22]
|
||||||
|
^───^────^ ^────────────────^ ^───^
|
||||||
|
| | | |
|
||||||
|
| | | └───⫸ (ISSUE): Reference issue ID
|
||||||
|
│ │ │
|
||||||
|
│ │ └──────────────────────⫸ (DESC): Summary in present tense. Use lower case not title case!
|
||||||
|
│ │
|
||||||
|
│ └──────────────────────────────⫸ (SCOPE): The package(s) that this change affects
|
||||||
|
│
|
||||||
|
└──────────────────────────────────⫸ (TYPE): See list above
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Example 2:
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>(<scope>): <short summary> [issue]
|
||||||
|
| | | |
|
||||||
|
| | | └─⫸ Reference issue id (optional)
|
||||||
|
│ │ │
|
||||||
|
│ │ └─⫸ Summary in present tense. Not capitalized. No period at the end.
|
||||||
|
│ │
|
||||||
|
│ └─⫸ Commit Scope: animations|bazel|benchpress|common|compiler|compiler-cli|core|
|
||||||
|
│ elements|forms|http|language-service|localize|platform-browser|
|
||||||
|
│ platform-browser-dynamic|platform-server|router|service-worker|
|
||||||
|
│ upgrade|zone.js|packaging|changelog|docs-infra|migrations|ngcc|ve|
|
||||||
|
│ devtools....
|
||||||
|
│
|
||||||
|
└─⫸ Commit Type: build|ci|doc|docs|feat|fix|perf|refactor|test
|
||||||
|
website|chore|style|type|revert|deprecate
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Committing
|
||||||
|
|
||||||
|
If you are pushing a commit which addresses a submitted issue, reference your issue at the end of the commit message. You may also optionally add the major issue to the end of your commit body.
|
||||||
|
|
||||||
|
References should be on their own line, following the word `Ref` or `Refs`
|
||||||
|
|
||||||
|
```
|
||||||
|
Title: fix(core): fix error message displayed to users. [#22]
|
||||||
|
Description: The description of your commit
|
||||||
|
|
||||||
|
Ref: #22, #34, #37
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Languages
|
||||||
|
|
||||||
|
The formatting of code greatly depends on the language being used for this repository. We provide various different languages below as this guide is utilized across multiple repositories.
|
||||||
|
|
||||||
|
- [Python](#python)
|
||||||
|
- [Javascript / Typescript / NodeJS](#nodejs)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### Python
|
||||||
|
|
||||||
|
The following guidelines apply to any projects written with Python:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Indentation
|
||||||
|
|
||||||
|
Use `4 spaces` per indentation level.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> def Encrypt( key : int, bytestr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> i_blk, left_bytes = divmod( len(bytestr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> def encrypt( key : int, byteStr : bytes ):
|
||||||
|
> Res = b''
|
||||||
|
> iBlk, leftBytes = divmod( len(byteStr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Line Length
|
||||||
|
|
||||||
|
Keep the maximum character count to `100 characters per line`. If you are revising old code which doesn't follow this guideline; please rewrite it to conform.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Blank Lines
|
||||||
|
|
||||||
|
Surround top-level functions and class definitions with a blank in-between.
|
||||||
|
|
||||||
|
Method definitions inside a class are surrounded by a single blank line.
|
||||||
|
|
||||||
|
Extra blank lines may be used (sparingly) to separate groups of functions related to one another. Blank lines may be omitted between a bunch of related one-liners (e.g: set of dummy implementations).
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Imports
|
||||||
|
|
||||||
|
Imports should usually be on separate lines:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> import os
|
||||||
|
> import sys
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> import sys, os
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
The following is acceptable:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> from mypkg import siblingA, siblingB, siblingC
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Commenting
|
||||||
|
|
||||||
|
Comment your code. It helps novice readers to better understand the process. It doesn't have to be painfully obvious explanations, but it helps to give an idea of what something does.
|
||||||
|
|
||||||
|
Please append `#` to the beginning of each line.
|
||||||
|
|
||||||
|
```python
|
||||||
|
# #
|
||||||
|
# byteString : b'1#Aetherx|232#1#233262#0#0#0#'
|
||||||
|
# #
|
||||||
|
|
||||||
|
def Encrypt( key : int, byteString : bytes ):
|
||||||
|
res = bytearray( )
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Casing
|
||||||
|
|
||||||
|
- Stick to `camelCase`; unless:
|
||||||
|
- naming functions, capitalize the first letter
|
||||||
|
- Capitalize enums
|
||||||
|
- If you see code not conforming with this, please revise it in your pull request.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> def Encrypt( key : int, byteStr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> iBlock, leftBytes = divmod( len(byteStr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> def encrypt( key : int, bytestr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> i_blk, left_bytes = divmod( len(bytestr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### NodeJS
|
||||||
|
|
||||||
|
The following allows you to configure ESLint and Prettier.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Prettier
|
||||||
|
|
||||||
|
We have opted to make use of [ESLint](#eslint) over Prettier. We provide a detailed ESLint flag config file with very specific linting rules. Please review that section for more information.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### ESLint
|
||||||
|
|
||||||
|
Within the root folder of the repo, there are several configuration files which you should be using within the project. These files dictate how prettier and eslint will behave and what is acceptable / not acceptable.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Pick the config file below depending on which version of ESLint you are using. The v8 and older `.eslint` may not be there if we have migrated over to an Eslint v9 flat config file:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
###### v9 & Newer (Config)
|
||||||
|
|
||||||
|
Our NodeJS applications require that you utilize ESLint v9 or newer which makes use of a flat config structure. You may find a copy of our flat config at the link below:
|
||||||
|
|
||||||
|
- [📄 eslint.config.mjs](https://github.com/thebinaryninja/tvapp2/blob/main/tvapp2/eslint.config.mjs)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
###### v8 & Older (Config)
|
||||||
|
|
||||||
|
- We no longer utilize any version of ESLint older than version 9.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> When submitting your pull request, these linting and style rules will be verified with all of your files. If you did not follow these rules; the linter tests on your pull request will fail; and you'll be expected to correct these issues before your submission will be transferred over for human review.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Packages
|
||||||
|
|
||||||
|
We use the following packages for linting and prettier.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
| Package | Repo File | Description |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| [@stylistic/eslint-plugin-js](https://npmjs.com/package/@stylistic/eslint-plugin-js) | [package.json](./package.json) | JavaScript stylistic rules for ESLint, migrated from eslint core. |
|
||||||
|
| [@stylistic/eslint-plugin-ts](https://npmjs.com/package/@stylistic/eslint-plugin-ts) | [package.json](./package.json) | TypeScript stylistic rules for ESLint, migrated from typescript-eslint. |
|
||||||
|
| [@stylistic/eslint-plugin-plus](https://npmjs.com/package/@stylistic/eslint-plugin-plus) | [package.json](./package.json) | Supplementary rules introduced by ESLint Stylistic. |
|
||||||
|
| [eslint-plugin-prettier](https://npmjs.com/package/eslint-plugin-prettier) | [package.json](./package.json) | Runs Prettier as an ESLint rule and reports differences as individual ESLint issues. |
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
You can add the following to your `package.json` file:
|
||||||
|
|
||||||
|
https://github.com/TheBinaryNinja/tvapp2/blob/1c75f11e9f0506ad3dd05133fdafc3aeb87686ca/tvapp2/package.json#L81-L92
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Indentation
|
||||||
|
|
||||||
|
Use `4 spaces` per indentation level.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Style
|
||||||
|
|
||||||
|
For files that are not controlled by [Prettier](#prettier) or [ESLint](#eslint); use `Allman Style`. Braces should be on their own lines, and any code inside the braces should be indented 4 spaces.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
return {
|
||||||
|
status: "failure",
|
||||||
|
user:
|
||||||
|
{
|
||||||
|
id: "1aaa35aa-fb3a-62ae-ffec-a14g7fc401ac",
|
||||||
|
label: "Test String",
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
while (x == y)
|
||||||
|
{
|
||||||
|
foo();
|
||||||
|
bar();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Line Length
|
||||||
|
|
||||||
|
Keep the maximum character count to `100 characters per line`. The configs on this page have prettier automatically set up to detect more than 100 characters per line.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Commenting
|
||||||
|
|
||||||
|
Comment your code. It helps novice readers to better understand the process. You may use block style commenting, or single lines:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
/*
|
||||||
|
tests to decide if the end-user is running on Darwin or another platform.
|
||||||
|
*/
|
||||||
|
|
||||||
|
test(`Return true if platform is Darwin`, () => {
|
||||||
|
process.platform = 'darwin';
|
||||||
|
expect(bIsDarwin()).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test(`Return false if platform is not Darwin`, () => {
|
||||||
|
process.platform = 'linux';
|
||||||
|
expect(bIsDarwin()).toBe(false);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Casing
|
||||||
|
|
||||||
|
Stick to `camelCase` as much as possible.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
let myVar = 'one';
|
||||||
|
let secondVar = 'two';
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you are defining a new environment variable; it must be in ALL CAPS in the `Dockerfile`:
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
|
ENV DIR_BUILD=/usr/src/app
|
||||||
|
ENV DIR_RUN=/usr/bin/app
|
||||||
|
ENV URL_REPO="https://git.binaryninja.net/binaryninja/"
|
||||||
|
ENV WEB_IP="0.0.0.0"
|
||||||
|
ENV WEB_PORT=4124
|
||||||
|
ENV STREAM_QUALITY="hd"
|
||||||
|
ENV FILE_PLAYLIST="playlist.m3u8"
|
||||||
|
ENV FILE_EPG="xmltv.xml"
|
||||||
|
ENV LOG_LEVEL=4
|
||||||
|
ENV TZ="Etc/UTC"
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Then you may call your new environment variable within the Javascript code; and ensure you define a default value to correct any user misconfigurations:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja';
|
||||||
|
const envStreamQuality = process.env.STREAM_QUALITY || 'hd';
|
||||||
|
const envFileM3U = process.env.FILE_PLAYLIST || 'playlist.m3u8';
|
||||||
|
const envFileXML = process.env.FILE_EPG || 'xmltv.xml';
|
||||||
|
const envFileTAR = process.env.FILE_TAR || 'xmltv.xml.gz';
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
<!-- markdownlint-disable -->
|
||||||
|
|
||||||
|
<!-- BADGE > GENERAL -->
|
||||||
|
[general-npmjs-uri]: https://npmjs.com
|
||||||
|
[general-nodejs-uri]: https://nodejs.org
|
||||||
|
[general-npmtrends-uri]: http://npmtrends.com/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > VERSION > GITHUB -->
|
||||||
|
[github-version-img]: https://img.shields.io/github/v/tag/thebinaryninja/tvapp2?logo=GitHub&label=Version&color=ba5225
|
||||||
|
[github-version-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > LICENSE > MIT -->
|
||||||
|
[license-mit-img]: https://img.shields.io/badge/MIT-FFF?logo=creativecommons&logoColor=FFFFFF&label=License&color=9d29a0
|
||||||
|
[license-mit-uri]: https://github.com/thebinaryninja/tvapp2/blob/main/LICENSE
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD COUNT -->
|
||||||
|
[github-downloads-img]: https://img.shields.io/github/downloads/thebinaryninja/tvapp2/total?logo=github&logoColor=FFFFFF&label=Downloads&color=376892
|
||||||
|
[github-downloads-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD SIZE -->
|
||||||
|
[github-size-img]: https://img.shields.io/github/repo-size/thebinaryninja/tvapp2?logo=github&label=Size&color=59702a
|
||||||
|
[github-size-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > ALL CONTRIBUTORS -->
|
||||||
|
[contribs-all-img]: https://img.shields.io/github/all-contributors/thebinaryninja/tvapp2?logo=contributorcovenant&color=de1f6f&label=contributors
|
||||||
|
[contribs-all-uri]: https://github.com/all-contributors/all-contributors
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > NPM -->
|
||||||
|
[github-build-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/npm-release.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/npm-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > Pypi -->
|
||||||
|
[github-build-pypi-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/release-pypi.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-pypi-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/pypi-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > TESTS -->
|
||||||
|
[github-tests-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/npm-tests.yml?logo=github&label=Tests&color=2c6488
|
||||||
|
[github-tests-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/npm-tests.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > COMMIT -->
|
||||||
|
[github-commit-img]: https://img.shields.io/github/last-commit/thebinaryninja/tvapp2?logo=conventionalcommits&logoColor=FFFFFF&label=Last%20Commit&color=313131
|
||||||
|
[github-commit-uri]: https://github.com/thebinaryninja/tvapp2/commits/main/
|
||||||
|
|
||||||
|
<!-- BADGE > Github > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[github-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=development-amd64%2Cdevelopment%2Cdevelopment-arm64%2Clatest&label=version&trim=
|
||||||
|
[github-docker-version-uri]: https://github.com/thebinaryninja/tvapp2/pkgs/container/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Dockerhub > Docker Image -->
|
||||||
|
[dockerhub-docker-version-img]: https://img.shields.io/docker/v/thebinaryninja/tvapp2?sort=semver&arch=arm64
|
||||||
|
[dockerhub-docker-version-uri]: https://hub.docker.com/repository/docker/thebinaryninja/tvapp2/general
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[gitea-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=latest&label=version&trim=
|
||||||
|
[gitea-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea 2 > Docker Image -->
|
||||||
|
[gitea2-docker-version-img]: https://img.shields.io/gitea/v/release/binaryninja/tvapp2?gitea_url=https%3A%2F%2Fgit.binaryninja.net
|
||||||
|
[gitea2-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/-/packages/container/tvapp2/latest
|
||||||
|
|
||||||
|
<!-- BADGE > BUTTON > SUBMIT ISSUES -->
|
||||||
|
[btn-github-submit-img]: https://img.shields.io/badge/submit%20new%20issue-de1f5c?style=for-the-badge&logo=github&logoColor=FFFFFF
|
||||||
|
[btn-github-submit-uri]: https://github.com/thebinaryninja/tvapp2/issues
|
||||||
|
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
@@ -70,9 +70,12 @@ ENV DIR_RUN=/usr/bin/app
|
|||||||
ENV URL_REPO="https://git.binaryninja.net/binaryninja/"
|
ENV URL_REPO="https://git.binaryninja.net/binaryninja/"
|
||||||
ENV WEB_IP="0.0.0.0"
|
ENV WEB_IP="0.0.0.0"
|
||||||
ENV WEB_PORT=4124
|
ENV WEB_PORT=4124
|
||||||
|
ENV WEB_ENCODING="deflate, br"
|
||||||
ENV STREAM_QUALITY="hd"
|
ENV STREAM_QUALITY="hd"
|
||||||
ENV FILE_PLAYLIST="playlist.m3u8"
|
ENV FILE_URL="urls.txt"
|
||||||
|
ENV FILE_M3U="playlist.m3u8"
|
||||||
ENV FILE_EPG="xmltv.xml"
|
ENV FILE_EPG="xmltv.xml"
|
||||||
|
ENV FILE_TAR="xmltv.xml.gz"
|
||||||
ENV LOG_LEVEL=4
|
ENV LOG_LEVEL=4
|
||||||
ENV TZ="Etc/UTC"
|
ENV TZ="Etc/UTC"
|
||||||
|
|
||||||
|
|||||||
@@ -6,21 +6,139 @@ tags:
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
This section outlines all releases of TVApp2, including the version of the release, and the changes made for that release.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
<p align="center" markdown="1">
|
<p align="center" markdown="1">
|
||||||
|
|
||||||

|
<!-- prettier-ignore-start -->
|
||||||

|
[![Version][github-version-img]][github-version-uri]
|
||||||

|
[![Downloads][github-downloads-img]][github-downloads-uri]
|
||||||

|
[![Size][github-size-img]][github-size-img]
|
||||||
|
[![Last Commit][github-commit-img]][github-commit-img]
|
||||||
|
[![Contributors][contribs-all-img]](#contributors)
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
### <!-- md:version stable- --> 1.0.0 <small>Feb 24, 2025</small> { id="1.0.0" }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
### <!-- md:version stable- --> 1.1.0 <small>Mar 25, 2025</small> { id="1.1.0" }
|
||||||
|
|
||||||
|
- `feat`: new interface & theme for web ui
|
||||||
|
- integrated bootstrap 4.x
|
||||||
|
- new dark theme
|
||||||
|
- all hosted files now display `date`, `download url`, `size`, and `description`
|
||||||
|
- automatic viewport resizing depending on the device used
|
||||||
|
- new favicon
|
||||||
|
- localized css, js, and image support instead of relying on externally hosted resources
|
||||||
|
- `feat`: app now offers a compressed `gzip` for EPG guide data
|
||||||
|
- `feat`: add multiple url paths to download each asset
|
||||||
|
- `/guide`, `/epg`, `xml`
|
||||||
|
- `/playlist`, `/m3u`, `/m3u8`
|
||||||
|
- `/gzip`, `/gz`
|
||||||
|
- `feat`: add mew environment variables
|
||||||
|
- `LOG_LEVEL`: specifies what level of logs you will see in console
|
||||||
|
- `STREAM_QUALITY`: specifies the quality of the stream; options: `hd` and `sd`
|
||||||
|
- `FILE_PLAYLIST`: filename that M3U playlist data will be stored to
|
||||||
|
- `FILE_EPG`: filename that EPG / XML guide data will be stored to
|
||||||
|
- `FILE_GZIP`: filename that compressed gzip guide data will be stored to
|
||||||
|
- `build`: app migrated from CommonJS to ES Modules
|
||||||
|
- `build`: bump alpine base image from v3.20 to v3.21
|
||||||
|
- `build`: migrated html template to independent file in `www` folder; utilizes `ejs` module
|
||||||
|
- `build`: **amd64** and **arm64** docker images merged into one image with architecture support
|
||||||
|
- `fix`: resolved bug where local server could not be started using nodejs; related to ip address variable
|
||||||
|
- `build(deps)`: add package `ejs` 3.1.10
|
||||||
|
- `build(deps)`: add package `chalk` 5.3.0
|
||||||
|
- `build(deps)`: add package `moment` 2.30.1
|
||||||
|
- `build(deps-dev)`: add package `eslint` 9.17.0
|
||||||
|
- `build(deps-dev)`: add package `eslint-plugin-chai-friendly` 1.0.1
|
||||||
|
- `build(deps-dev)`: add package `eslint-plugin-import` 2.31.0
|
||||||
|
- `build(deps-dev)`: add package `eslint-plugin-n` 17.15.0
|
||||||
|
- `build(deps-dev)`: add package `eslint-plugin-promise` 7.2.1
|
||||||
|
- `build(deps-dev)`: add package `@stylistic/eslint-plugin-js` 3.1.0
|
||||||
|
- `remove`: tvapp2.fonts.min.js
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### <!-- md:version stable- --> 1.0.0 <small>Feb 24, 2025</small> { id="1.0.0" }
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
<!-- markdownlint-disable -->
|
||||||
|
|
||||||
|
<!-- BADGE > GENERAL -->
|
||||||
|
[general-npmjs-uri]: https://npmjs.com
|
||||||
|
[general-nodejs-uri]: https://nodejs.org
|
||||||
|
[general-npmtrends-uri]: http://npmtrends.com/csf-firewall
|
||||||
|
|
||||||
|
<!-- BADGE > VERSION > GITHUB -->
|
||||||
|
[github-version-img]: https://img.shields.io/github/v/tag/TheBinaryNinja/tvapp2?logo=GitHub&label=Version&color=ba5225
|
||||||
|
[github-version-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > LICENSE > MIT -->
|
||||||
|
[license-mit-img]: https://img.shields.io/badge/MIT-FFF?logo=creativecommons&logoColor=FFFFFF&label=License&color=9d29a0
|
||||||
|
[license-mit-uri]: https://github.com/TheBinaryNinja/tvapp2/blob/main/LICENSE
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD COUNT -->
|
||||||
|
[github-downloads-img]: https://img.shields.io/github/downloads/TheBinaryNinja/tvapp2/total?logo=github&logoColor=FFFFFF&label=Downloads&color=376892
|
||||||
|
[github-downloads-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD SIZE -->
|
||||||
|
[github-size-img]: https://img.shields.io/github/repo-size/TheBinaryNinja/tvapp2?logo=github&label=Size&color=59702a
|
||||||
|
[github-size-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > ALL CONTRIBUTORS -->
|
||||||
|
[contribs-all-img]: https://img.shields.io/github/all-contributors/TheBinaryNinja/tvapp2?logo=contributorcovenant&color=de1f6f&label=contributors
|
||||||
|
[contribs-all-uri]: https://github.com/all-contributors/all-contributors
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > NPM -->
|
||||||
|
[github-build-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/npm-release.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/npm-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > Pypi -->
|
||||||
|
[github-build-pypi-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/release-pypi.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-pypi-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/pypi-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > TESTS -->
|
||||||
|
[github-tests-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/npm-tests.yml?logo=github&label=Tests&color=2c6488
|
||||||
|
[github-tests-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/npm-tests.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > COMMIT -->
|
||||||
|
[github-commit-img]: https://img.shields.io/github/last-commit/TheBinaryNinja/tvapp2?logo=conventionalcommits&logoColor=FFFFFF&label=Last%20Commit&color=313131
|
||||||
|
[github-commit-uri]: https://github.com/TheBinaryNinja/tvapp2/commits/main/
|
||||||
|
|
||||||
|
<!-- BADGE > Github > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[github-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=development-amd64%2Cdevelopment%2Cdevelopment-arm64%2Clatest&label=version&trim=
|
||||||
|
[github-docker-version-uri]: https://github.com/TheBinaryNinja/tvapp2/pkgs/container/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Dockerhub > Docker Image -->
|
||||||
|
[dockerhub-docker-version-img]: https://img.shields.io/docker/v/thebinaryninja/tvapp2?sort=semver&arch=arm64
|
||||||
|
[dockerhub-docker-version-uri]: https://hub.docker.com/repository/docker/thebinaryninja/tvapp2/general
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[gitea-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=latest&label=version&trim=
|
||||||
|
[gitea-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea 2 > Docker Image -->
|
||||||
|
[gitea2-docker-version-img]: https://img.shields.io/gitea/v/release/binaryninja/tvapp2?gitea_url=https%3A%2F%2Fgit.binaryninja.net
|
||||||
|
[gitea2-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/-/packages/container/tvapp2/latest
|
||||||
|
|
||||||
|
<!-- BADGE > BUTTON > SUBMIT ISSUES -->
|
||||||
|
[btn-github-submit-img]: https://img.shields.io/badge/submit%20new%20issue-de1f5c?style=for-the-badge&logo=github&logoColor=FFFFFF
|
||||||
|
[btn-github-submit-uri]: https://github.com/TheBinaryNinja/tvapp2/issues
|
||||||
|
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
|
|||||||
652
docs/docs/about/contributing.md
Normal file
@@ -0,0 +1,652 @@
|
|||||||
|
---
|
||||||
|
title: Contributing to TVApp2
|
||||||
|
tags:
|
||||||
|
- info
|
||||||
|
---
|
||||||
|
|
||||||
|
<div align="center" markdown="1">
|
||||||
|
<h1>♾️ Contributing ♾️</h1>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<p align="center" markdown="1">
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
[![Version][github-version-img]][github-version-uri]
|
||||||
|
[![Downloads][github-downloads-img]][github-downloads-uri]
|
||||||
|
[![Size][github-size-img]][github-size-img]
|
||||||
|
[![Last Commit][github-commit-img]][github-commit-img]
|
||||||
|
[![Contributors][contribs-all-img]](#contributors)
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
Below are a list of ways that you can help contribute to this project, as well as policies and guides that explain how to get started.
|
||||||
|
|
||||||
|
Please review everything on this page before you submit your contribution.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
- [About](#about)
|
||||||
|
- [Issues, Bugs, Ideas](#issues-bugs-ideas)
|
||||||
|
- [Contributing](#contributing)
|
||||||
|
- [Before Submitting Pull Requests](#before-submitting-pull-requests)
|
||||||
|
- [Conventional Commit Specification](#conventional-commit-specification)
|
||||||
|
- [Types](#types)
|
||||||
|
- [Example 1:](#example-1)
|
||||||
|
- [Example 2:](#example-2)
|
||||||
|
- [Committing](#committing)
|
||||||
|
- [Languages](#languages)
|
||||||
|
- [Python](#python)
|
||||||
|
- [Indentation](#indentation)
|
||||||
|
- [Line Length](#line-length)
|
||||||
|
- [Blank Lines](#blank-lines)
|
||||||
|
- [Imports](#imports)
|
||||||
|
- [Commenting](#commenting)
|
||||||
|
- [Casing](#casing)
|
||||||
|
- [NodeJS](#nodejs)
|
||||||
|
- [Prettier](#prettier)
|
||||||
|
- [ESLint](#eslint)
|
||||||
|
- [v9 \& Newer (Config)](#v9--newer-config)
|
||||||
|
- [v8 \& Older (Config)](#v8--older-config)
|
||||||
|
- [Packages](#packages)
|
||||||
|
- [Indentation](#indentation-1)
|
||||||
|
- [Style](#style)
|
||||||
|
- [Line Length](#line-length-1)
|
||||||
|
- [Commenting](#commenting-1)
|
||||||
|
- [Casing](#casing-1)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Issues, Bugs, Ideas
|
||||||
|
|
||||||
|
Stuff happens, and sometimes as best as we try, there may be issues within this project that we are unaware of. That is the great thing about open-source; anyone can use the program and contribute to making it better.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you have found a bug, have an issue, or maybe even a cool idea; you can let us know by [submitting it](https://github.com/thebinaryninja/tvapp2/issues). However, before you submit your new issue, bug report, or feature request; head over to the [Issues Section](https://github.com/thebinaryninja/tvapp2/issues) and ensure nobody else has already submitted it.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Once you are sure that your issue has not already being dealt with; you may submit a new issue at [here](https://github.com/thebinaryninja/tvapp2/issues/new/choose). You'll be asked to specify exactly what your new submission targets, such as:
|
||||||
|
- Bug report
|
||||||
|
- Feature Suggestion
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
When writing a new submission; ensure you fill out any of the questions asked of you. If you do not provide enough information, we cannot help. Be as detailed as possible, and provide any logs or screenshots you may have to help us better understand what you mean. Failure to fill out the submission properly may result in it being closed without a response.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you are submitting a bug report:
|
||||||
|
|
||||||
|
- Explain the issue
|
||||||
|
- Describe how you expect for a feature to work, and what you're seeing instead of what you expected.
|
||||||
|
- List possible options for a resolution or insight
|
||||||
|
- Provide screenshots, logs, or anything else that can visually help track down the issue.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
[![Submit Issue][btn-github-submit-img]][btn-github-submit-uri]
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
If you are looking to contribute to this project by actually submit your own code; please review this section completely. There is important information and policies provided below that you must follow for your pull request to get accepted.
|
||||||
|
|
||||||
|
The source is here for everyone to collectively share and collaborate on. If you think you have a possible solution to a problem; don't be afraid to get your hands dirty.
|
||||||
|
|
||||||
|
All contributions are made via pull requests. To create a pull request, you need a GitHub account. If you are unclear on this process, see [GitHub's documentation on forking and pull requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork). Pull requests should be targeted at the master branch.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Before Submitting Pull Requests
|
||||||
|
|
||||||
|
- Follow the repository's code formatting conventions (see below);
|
||||||
|
- Include tests that prove that the change works as intended and does not add regressions;
|
||||||
|
- Document the changes in the code and/or the project's documentation;
|
||||||
|
- Your PR must pass the CI pipeline;
|
||||||
|
- When submitting your Pull Request, use one of the following branches:
|
||||||
|
- For bug fixes: `main` branch
|
||||||
|
- For features & functionality: `development` branch
|
||||||
|
- Include a proper git commit message following the [Conventional Commit Specification](https://conventionalcommits.org/en/v1.0.0/#specification).
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you have completed the above tasks, the pull request is ready to be reviewed and your pull request's label will be changed to "Ready for Review". At this point, a human will need to step in and manually verify your submission.
|
||||||
|
|
||||||
|
Reviewers will approve the pull request once they are satisfied with the patch it will be merged.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Conventional Commit Specification
|
||||||
|
|
||||||
|
When committing your changes, we require you to follow the [Conventional Commit Specification](https://conventionalcommits.org/en/v1.0.0/#specification). The **Conventional Commits** is a specification for the format and content of a commit message. The concept behind Conventional Commits is to provide a rich commit history that can be read and understood by both humans and automated tools. Conventional Commits have the following format:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>[(optional <scope>)]: <description>
|
||||||
|
|
||||||
|
[optional <body>]
|
||||||
|
|
||||||
|
[optional <footer(s)>]
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### Types
|
||||||
|
|
||||||
|
Our repositories make use of the following commit tags:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
| Type | Description |
|
||||||
|
| --- | --- |
|
||||||
|
| `feat` | <sup><sub>Introduce new feature</sub></sup> |
|
||||||
|
| `fix` | <sup><sub>Bug fix</sub></sup> |
|
||||||
|
| `chore` | <sup><sub>Includes technical or preventative maintenance task that is necessary for managing the app or repo, such as updating grunt tasks, but is not tied to any specific feature. Usually done for maintenance purposes.<br/>E.g: Edit .gitignore, .prettierrc, .prettierignore, .gitignore, eslint.config.js file</sub></sup> |
|
||||||
|
| `revert` | <sup><sub>Revert a previous commit</sub></sup> |
|
||||||
|
| `style` | <sup><sub>Update / reformat style of source code. Does not change the way app is implemented. Changes that do not affect the meaning of the code<br />E.g: white-space, formatting, missing semi-colons, change tabs to spaces, etc)</sub></sup> |
|
||||||
|
| `docs` | <sup><sub>Change website or markdown documents. Does not mean changes to the documentation generator script itself, only the documents created from the generator. <br/>E.g: documentation, readme.md or markdown |
|
||||||
|
| `build` | <sup><sub>Changes to the build / compilation / packaging process or auxiliary tools such as doc generation<br />E.g: create new build tasks, update release script, etc.</sub></sup> |
|
||||||
|
| `refactor` | <sup><sub>Change to production code that leads to no behavior difference,<br/>E.g: split files, rename variables, rename package, improve code style, etc.</sub></sup> |
|
||||||
|
| `test` | <sup><sub>Add or refactor tests, no production code change. Changes the suite of automated tests for the app.</sub></sup> |
|
||||||
|
| `ci` | <sup><sub>Changes related to Continuous Integration (usually `yml` and other configuration files).</sub></sup> |
|
||||||
|
| `perf` | <sup><sub>Performance improvement of algorithms or execution time of the app. Does not change an existing feature.</sub></sup> |
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Example 1:
|
||||||
|
|
||||||
|
```
|
||||||
|
feat(core): bug affecting menu [#22]
|
||||||
|
^───^────^ ^────────────────^ ^───^
|
||||||
|
| | | |
|
||||||
|
| | | └───⫸ (ISSUE): Reference issue ID
|
||||||
|
│ │ │
|
||||||
|
│ │ └──────────────────────⫸ (DESC): Summary in present tense. Use lower case not title case!
|
||||||
|
│ │
|
||||||
|
│ └──────────────────────────────⫸ (SCOPE): The package(s) that this change affects
|
||||||
|
│
|
||||||
|
└──────────────────────────────────⫸ (TYPE): See list above
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Example 2:
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>(<scope>): <short summary> [issue]
|
||||||
|
| | | |
|
||||||
|
| | | └─⫸ Reference issue id (optional)
|
||||||
|
│ │ │
|
||||||
|
│ │ └─⫸ Summary in present tense. Not capitalized. No period at the end.
|
||||||
|
│ │
|
||||||
|
│ └─⫸ Commit Scope: animations|bazel|benchpress|common|compiler|compiler-cli|core|
|
||||||
|
│ elements|forms|http|language-service|localize|platform-browser|
|
||||||
|
│ platform-browser-dynamic|platform-server|router|service-worker|
|
||||||
|
│ upgrade|zone.js|packaging|changelog|docs-infra|migrations|ngcc|ve|
|
||||||
|
│ devtools....
|
||||||
|
│
|
||||||
|
└─⫸ Commit Type: build|ci|doc|docs|feat|fix|perf|refactor|test
|
||||||
|
website|chore|style|type|revert|deprecate
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Committing
|
||||||
|
|
||||||
|
If you are pushing a commit which addresses a submitted issue, reference your issue at the end of the commit message. You may also optionally add the major issue to the end of your commit body.
|
||||||
|
|
||||||
|
References should be on their own line, following the word `Ref` or `Refs`
|
||||||
|
|
||||||
|
```
|
||||||
|
Title: fix(core): fix error message displayed to users. [#22]
|
||||||
|
Description: The description of your commit
|
||||||
|
|
||||||
|
Ref: #22, #34, #37
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Languages
|
||||||
|
|
||||||
|
The formatting of code greatly depends on the language being used for this repository. We provide various different languages below as this guide is utilized across multiple repositories.
|
||||||
|
|
||||||
|
- [Python](#python)
|
||||||
|
- [Javascript / Typescript / NodeJS](#nodejs)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### Python
|
||||||
|
|
||||||
|
The following guidelines apply to any projects written with Python:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Indentation
|
||||||
|
|
||||||
|
Use `4 spaces` per indentation level.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> def Encrypt( key : int, bytestr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> i_blk, left_bytes = divmod( len(bytestr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> def encrypt( key : int, byteStr : bytes ):
|
||||||
|
> Res = b''
|
||||||
|
> iBlk, leftBytes = divmod( len(byteStr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Line Length
|
||||||
|
|
||||||
|
Keep the maximum character count to `100 characters per line`. If you are revising old code which doesn't follow this guideline; please rewrite it to conform.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Blank Lines
|
||||||
|
|
||||||
|
Surround top-level functions and class definitions with a blank in-between.
|
||||||
|
|
||||||
|
Method definitions inside a class are surrounded by a single blank line.
|
||||||
|
|
||||||
|
Extra blank lines may be used (sparingly) to separate groups of functions related to one another. Blank lines may be omitted between a bunch of related one-liners (e.g: set of dummy implementations).
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Imports
|
||||||
|
|
||||||
|
Imports should usually be on separate lines:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> import os
|
||||||
|
> import sys
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> import sys, os
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
The following is acceptable:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> from mypkg import siblingA, siblingB, siblingC
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Commenting
|
||||||
|
|
||||||
|
Comment your code. It helps novice readers to better understand the process. It doesn't have to be painfully obvious explanations, but it helps to give an idea of what something does.
|
||||||
|
|
||||||
|
Please append `#` to the beginning of each line.
|
||||||
|
|
||||||
|
```python
|
||||||
|
# #
|
||||||
|
# byteString : b'1#Aetherx|232#1#233262#0#0#0#'
|
||||||
|
# #
|
||||||
|
|
||||||
|
def Encrypt( key : int, byteString : bytes ):
|
||||||
|
res = bytearray( )
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Casing
|
||||||
|
|
||||||
|
- Stick to `camelCase`; unless:
|
||||||
|
- naming functions, capitalize the first letter
|
||||||
|
- Capitalize enums
|
||||||
|
- If you see code not conforming with this, please revise it in your pull request.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> ✅ Correct
|
||||||
|
> ```python
|
||||||
|
> def Encrypt( key : int, byteStr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> iBlock, leftBytes = divmod( len(byteStr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> ❌ Wrong
|
||||||
|
> ```python
|
||||||
|
> def encrypt( key : int, bytestr : bytes ):
|
||||||
|
> res = b''
|
||||||
|
> i_blk, left_bytes = divmod( len(bytestr), 3 )
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
#### NodeJS
|
||||||
|
|
||||||
|
The following allows you to configure ESLint and Prettier.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Prettier
|
||||||
|
|
||||||
|
We have opted to make use of [ESLint](#eslint) over Prettier. We provide a detailed ESLint flag config file with very specific linting rules. Please review that section for more information.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### ESLint
|
||||||
|
|
||||||
|
Within the root folder of the repo, there are several configuration files which you should be using within the project. These files dictate how prettier and eslint will behave and what is acceptable / not acceptable.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Pick the config file below depending on which version of ESLint you are using. The v8 and older `.eslint` may not be there if we have migrated over to an Eslint v9 flat config file:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
###### v9 & Newer (Config)
|
||||||
|
|
||||||
|
Our NodeJS applications require that you utilize ESLint v9 or newer which makes use of a flat config structure. You may find a copy of our flat config at the link below:
|
||||||
|
|
||||||
|
- [📄 eslint.config.mjs](https://github.com/thebinaryninja/tvapp2/blob/main/tvapp2/eslint.config.mjs)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
###### v8 & Older (Config)
|
||||||
|
|
||||||
|
- We no longer utilize any version of ESLint older than version 9.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> When submitting your pull request, these linting and style rules will be verified with all of your files. If you did not follow these rules; the linter tests on your pull request will fail; and you'll be expected to correct these issues before your submission will be transferred over for human review.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Packages
|
||||||
|
|
||||||
|
We use the following packages for linting and prettier.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
| Package | Repo File | Description |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| [@stylistic/eslint-plugin-js](https://npmjs.com/package/@stylistic/eslint-plugin-js) | [package.json](./package.json) | JavaScript stylistic rules for ESLint, migrated from eslint core. |
|
||||||
|
| [@stylistic/eslint-plugin-ts](https://npmjs.com/package/@stylistic/eslint-plugin-ts) | [package.json](./package.json) | TypeScript stylistic rules for ESLint, migrated from typescript-eslint. |
|
||||||
|
| [@stylistic/eslint-plugin-plus](https://npmjs.com/package/@stylistic/eslint-plugin-plus) | [package.json](./package.json) | Supplementary rules introduced by ESLint Stylistic. |
|
||||||
|
| [eslint-plugin-prettier](https://npmjs.com/package/eslint-plugin-prettier) | [package.json](./package.json) | Runs Prettier as an ESLint rule and reports differences as individual ESLint issues. |
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
You can add the following to your `package.json` file:
|
||||||
|
|
||||||
|
https://github.com/TheBinaryNinja/tvapp2/blob/1c75f11e9f0506ad3dd05133fdafc3aeb87686ca/tvapp2/package.json#L81-L92
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Indentation
|
||||||
|
|
||||||
|
Use `4 spaces` per indentation level.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Style
|
||||||
|
|
||||||
|
For files that are not controlled by [Prettier](#prettier) or [ESLint](#eslint); use `Allman Style`. Braces should be on their own lines, and any code inside the braces should be indented 4 spaces.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
return {
|
||||||
|
status: "failure",
|
||||||
|
user:
|
||||||
|
{
|
||||||
|
id: "1aaa35aa-fb3a-62ae-ffec-a14g7fc401ac",
|
||||||
|
label: "Test String",
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
while (x == y)
|
||||||
|
{
|
||||||
|
foo();
|
||||||
|
bar();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Line Length
|
||||||
|
|
||||||
|
Keep the maximum character count to `100 characters per line`. The configs on this page have prettier automatically set up to detect more than 100 characters per line.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Commenting
|
||||||
|
|
||||||
|
Comment your code. It helps novice readers to better understand the process. You may use block style commenting, or single lines:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
/*
|
||||||
|
tests to decide if the end-user is running on Darwin or another platform.
|
||||||
|
*/
|
||||||
|
|
||||||
|
test(`Return true if platform is Darwin`, () => {
|
||||||
|
process.platform = 'darwin';
|
||||||
|
expect(bIsDarwin()).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test(`Return false if platform is not Darwin`, () => {
|
||||||
|
process.platform = 'linux';
|
||||||
|
expect(bIsDarwin()).toBe(false);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
##### Casing
|
||||||
|
|
||||||
|
Stick to `camelCase` as much as possible.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
let myVar = 'one';
|
||||||
|
let secondVar = 'two';
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
If you are defining a new environment variable; it must be in ALL CAPS in the `Dockerfile`:
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
|
ENV DIR_BUILD=/usr/src/app
|
||||||
|
ENV DIR_RUN=/usr/bin/app
|
||||||
|
ENV URL_REPO="https://git.binaryninja.net/binaryninja/"
|
||||||
|
ENV WEB_IP="0.0.0.0"
|
||||||
|
ENV WEB_PORT=4124
|
||||||
|
ENV STREAM_QUALITY="hd"
|
||||||
|
ENV FILE_PLAYLIST="playlist.m3u8"
|
||||||
|
ENV FILE_EPG="xmltv.xml"
|
||||||
|
ENV LOG_LEVEL=4
|
||||||
|
ENV TZ="Etc/UTC"
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Then you may call your new environment variable within the Javascript code; and ensure you define a default value to correct any user misconfigurations:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja';
|
||||||
|
const envStreamQuality = process.env.STREAM_QUALITY || 'hd';
|
||||||
|
const envFileM3U = process.env.FILE_PLAYLIST || 'playlist.m3u8';
|
||||||
|
const envFileXML = process.env.FILE_EPG || 'xmltv.xml';
|
||||||
|
const envFileTAR = process.env.FILE_TAR || 'xmltv.xml.gz';
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**[`^ back to top ^`](#about)**
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
<!-- markdownlint-disable -->
|
||||||
|
|
||||||
|
<!-- BADGE > GENERAL -->
|
||||||
|
[general-npmjs-uri]: https://npmjs.com
|
||||||
|
[general-nodejs-uri]: https://nodejs.org
|
||||||
|
[general-npmtrends-uri]: http://npmtrends.com/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > VERSION > GITHUB -->
|
||||||
|
[github-version-img]: https://img.shields.io/github/v/tag/thebinaryninja/tvapp2?logo=GitHub&label=Version&color=ba5225
|
||||||
|
[github-version-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > LICENSE > MIT -->
|
||||||
|
[license-mit-img]: https://img.shields.io/badge/MIT-FFF?logo=creativecommons&logoColor=FFFFFF&label=License&color=9d29a0
|
||||||
|
[license-mit-uri]: https://github.com/thebinaryninja/tvapp2/blob/main/LICENSE
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD COUNT -->
|
||||||
|
[github-downloads-img]: https://img.shields.io/github/downloads/thebinaryninja/tvapp2/total?logo=github&logoColor=FFFFFF&label=Downloads&color=376892
|
||||||
|
[github-downloads-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD SIZE -->
|
||||||
|
[github-size-img]: https://img.shields.io/github/repo-size/thebinaryninja/tvapp2?logo=github&label=Size&color=59702a
|
||||||
|
[github-size-uri]: https://github.com/thebinaryninja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > ALL CONTRIBUTORS -->
|
||||||
|
[contribs-all-img]: https://img.shields.io/github/all-contributors/thebinaryninja/tvapp2?logo=contributorcovenant&color=de1f6f&label=contributors
|
||||||
|
[contribs-all-uri]: https://github.com/all-contributors/all-contributors
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > NPM -->
|
||||||
|
[github-build-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/npm-release.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/npm-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > Pypi -->
|
||||||
|
[github-build-pypi-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/release-pypi.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-pypi-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/pypi-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > TESTS -->
|
||||||
|
[github-tests-img]: https://img.shields.io/github/actions/workflow/status/thebinaryninja/tvapp2/npm-tests.yml?logo=github&label=Tests&color=2c6488
|
||||||
|
[github-tests-uri]: https://github.com/thebinaryninja/tvapp2/actions/workflows/npm-tests.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > COMMIT -->
|
||||||
|
[github-commit-img]: https://img.shields.io/github/last-commit/thebinaryninja/tvapp2?logo=conventionalcommits&logoColor=FFFFFF&label=Last%20Commit&color=313131
|
||||||
|
[github-commit-uri]: https://github.com/thebinaryninja/tvapp2/commits/main/
|
||||||
|
|
||||||
|
<!-- BADGE > Github > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[github-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=development-amd64%2Cdevelopment%2Cdevelopment-arm64%2Clatest&label=version&trim=
|
||||||
|
[github-docker-version-uri]: https://github.com/thebinaryninja/tvapp2/pkgs/container/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Dockerhub > Docker Image -->
|
||||||
|
[dockerhub-docker-version-img]: https://img.shields.io/docker/v/thebinaryninja/tvapp2?sort=semver&arch=arm64
|
||||||
|
[dockerhub-docker-version-uri]: https://hub.docker.com/repository/docker/thebinaryninja/tvapp2/general
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[gitea-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=latest&label=version&trim=
|
||||||
|
[gitea-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea 2 > Docker Image -->
|
||||||
|
[gitea2-docker-version-img]: https://img.shields.io/gitea/v/release/binaryninja/tvapp2?gitea_url=https%3A%2F%2Fgit.binaryninja.net
|
||||||
|
[gitea2-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/-/packages/container/tvapp2/latest
|
||||||
|
|
||||||
|
<!-- BADGE > BUTTON > SUBMIT ISSUES -->
|
||||||
|
[btn-github-submit-img]: https://img.shields.io/badge/submit%20new%20issue-de1f5c?style=for-the-badge&logo=github&logoColor=FFFFFF
|
||||||
|
[btn-github-submit-uri]: https://github.com/thebinaryninja/tvapp2/issues
|
||||||
|
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
@@ -9,8 +9,9 @@ conventions:
|
|||||||
|
|
||||||
The tag symbol in conjunction with a version number denotes when a specific feature or behavior was added. Make sure you're at least on this version if you want to use it.
|
The tag symbol in conjunction with a version number denotes when a specific feature or behavior was added. Make sure you're at least on this version if you want to use it.
|
||||||
|
|
||||||
|
: <!-- md:version --> default
|
||||||
: <!-- md:version stable- --> stable
|
: <!-- md:version stable- --> stable
|
||||||
: <!-- md:version beta- --> beta
|
: <!-- md:version development- --> development
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
@@ -19,11 +20,13 @@ The tag symbol in conjunction with a version number denotes when a specific feat
|
|||||||
These icons define what type of control a specified setting uses.
|
These icons define what type of control a specified setting uses.
|
||||||
|
|
||||||
: <!-- md:control toggle --> toggle
|
: <!-- md:control toggle --> toggle
|
||||||
|
: <!-- md:control toggle_on --> toggle on
|
||||||
|
: <!-- md:control toggle_off --> toggle off
|
||||||
: <!-- md:control textbox --> textbox
|
: <!-- md:control textbox --> textbox
|
||||||
: <!-- md:control dropdown --> dropdown
|
: <!-- md:control dropdown --> dropdown
|
||||||
: <!-- md:control button --> button
|
: <!-- md:control button --> button
|
||||||
: <!-- md:control slider --> slider
|
: <!-- md:control slider --> slider
|
||||||
: <!-- md:control color --> color wheel
|
: <!-- md:control color #E5E5E5 #121315 --> color wheel
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
@@ -45,40 +48,42 @@ This defines a command
|
|||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
### <!-- md:flag experimental --> – Experimental { data-toc-label="Experimental" }
|
### <!-- md:flag --> – Flags { #flags data-toc-label="Flags" }
|
||||||
|
|
||||||
|
: <!-- md:flag --> Default
|
||||||
|
: <!-- md:flag experimental --> Experimental
|
||||||
|
: <!-- md:flag required --> Required
|
||||||
|
: <!-- md:flag customization --> Customization
|
||||||
|
: <!-- md:flag metadata --> Metadata
|
||||||
|
: <!-- md:flag dangerous --> Dangerous
|
||||||
|
: <!-- md:flag multiple --> Multiple
|
||||||
|
: <!-- md:flag setting --> Setting
|
||||||
|
|
||||||
Anything listed with this icon are features or functionality that are still in development and may change in future versions.
|
Anything listed with this icon are features or functionality that are still in development and may change in future versions.
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
### <!-- md:flag required --> – Required value { #required data-toc-label="Required value" }
|
|
||||||
|
|
||||||
Items listed with this symbol indicate that they are required to be set.
|
|
||||||
|
|
||||||
<br />
|
|
||||||
|
|
||||||
### <!-- md:flag customization --> – Customization { #customization data-toc-label="Customization" }
|
|
||||||
|
|
||||||
This symbol denotes that the item described is a customization which affects the overall look of the app.
|
|
||||||
|
|
||||||
<br />
|
|
||||||
|
|
||||||
### <!-- md:3rdparty --> – 3rd Party { data-toc-label="3rd Party" }
|
### <!-- md:3rdparty --> – 3rd Party { data-toc-label="3rd Party" }
|
||||||
|
|
||||||
This symbol denotes that the item described is classified as something that changes the overall functionality of the plugin.
|
This symbol denotes that the item described is classified as something that changes the overall functionality of the plugin.
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
### <!-- md:flag metadata --> – Metadata property { #metadata data-toc-label="Metadata property" }
|
### <!-- md:flag setting --> – Configurable Settings { #setting data-toc-label="Configurable Setting" }
|
||||||
|
|
||||||
This symbol denotes that the item described is a metadata property, which can
|
The following denotes a configurable setting. These can also be broken up into individual settings as shown below:
|
||||||
be used in Markdown documents as part of the front matter definition.
|
|
||||||
|
|
||||||
<br />
|
#### <!-- md:setting example.setting.enabled -->
|
||||||
|
<!-- md:version 1.0.0 -->
|
||||||
|
<!-- md:default `true` -->
|
||||||
|
|
||||||
### <!-- md:flag setting --> – Configurable Setting { #setting data-toc-label="Configurable Setting" }
|
This is an example setting
|
||||||
|
|
||||||
This symbol denotes that an item is configurable by the user
|
#### <!-- md:setting example.setting.other -->
|
||||||
|
<!-- md:version 1.0.0 -->
|
||||||
|
<!-- md:default `true` -->
|
||||||
|
|
||||||
|
This is another example setting
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
@@ -91,9 +96,23 @@ can be used multiple times in the `plugins` setting in `mkdocs.yml`.
|
|||||||
|
|
||||||
### <!-- md:feature --> – Optional feature { #feature data-toc-label="Optional feature" }
|
### <!-- md:feature --> – Optional feature { #feature data-toc-label="Optional feature" }
|
||||||
|
|
||||||
Most of the features are hidden behind feature flags, which means they must
|
Some features may be hidden behind feature flags, which means they must
|
||||||
be explicitly enabled via `mkdocs.yml`. This allows for the existence of
|
be explicitly enabled first before they can be configured. This allows
|
||||||
potentially orthogonal features.
|
for the existence of potentially orthogonal features.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### <!-- md:markdown --> – Markdown extension { data-toc-label="Markdown extension" #extension }
|
||||||
|
|
||||||
|
This symbol denotes that the thing described is a Markdown element.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### <!-- md:flag dangerous --> – Dangerous { #danger data-toc-label="Dangerous Property" }
|
||||||
|
|
||||||
|
This symbol denotes that the item described is a metadata property, which can
|
||||||
|
be used in Markdown documents as part of the front matter definition.
|
||||||
|
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
@@ -107,3 +126,58 @@ available to backers. Normal users will not have access to this particular item.
|
|||||||
---
|
---
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
## Other Tags
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Example Download { #example data-toc-label="Dangerous Property" }
|
||||||
|
<!-- md:example my-example-file -->
|
||||||
|
|
||||||
|
The following denotes a downloadable file.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
### Commands
|
||||||
|
<!-- md:command `-s, --start` -->
|
||||||
|
|
||||||
|
The above denotes a command which can be executed in a terminal / command prompt.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Options
|
||||||
|
|
||||||
|
Options are another form of setting which lists what the option does, and then examples of how it works.
|
||||||
|
|
||||||
|
<!-- md:option rss.enabled -->
|
||||||
|
|
||||||
|
: <!-- md:default `true` --> This option specifies whether
|
||||||
|
the plugin is enabled when building your project. If you want to speed up
|
||||||
|
local builds, you can use an [environment variable][mkdocs.env]:
|
||||||
|
|
||||||
|
``` yaml
|
||||||
|
plugins:
|
||||||
|
- rss:
|
||||||
|
enabled: !ENV [CI, false]
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- md:option rss.match_path -->
|
||||||
|
|
||||||
|
: <!-- md:default `.*` --> This option specifies which
|
||||||
|
pages should be included in the feed. For example, to only include blog
|
||||||
|
posts in the feed, use the following regular expression:
|
||||||
|
|
||||||
|
``` yaml
|
||||||
|
plugins:
|
||||||
|
- rss:
|
||||||
|
match_path: blog/posts/.*
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|||||||
218
docs/docs/about/what_is_tvapp.md
Normal file
@@ -0,0 +1,218 @@
|
|||||||
|
---
|
||||||
|
title: About TVApp2
|
||||||
|
tags:
|
||||||
|
- info
|
||||||
|
---
|
||||||
|
|
||||||
|
# About
|
||||||
|
|
||||||
|
<figure markdown="span">
|
||||||
|
{ width="60%" }
|
||||||
|
<figcaption>TVApp2 Main Interface</figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<h1 align="center"><b>TVApp2: M3U Playlist & Data Guides</b></h1>
|
||||||
|
|
||||||
|
<p align="center" markdown="1">
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
[![Version][github-version-img]][github-version-uri]
|
||||||
|
[![Downloads][github-downloads-img]][github-downloads-uri]
|
||||||
|
[![Size][github-size-img]][github-size-img]
|
||||||
|
[![Last Commit][github-commit-img]][github-commit-img]
|
||||||
|
[![Contributors][contribs-all-img]](#contributors)
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
## What is TVApp2?
|
||||||
|
|
||||||
|
**TVApp2** is a docker image which allows you to download M3U playlists and EPG guide data from various online IPTV services such as **TheTVApp**, **TVPass**, and **MoveOnJoy**. The playlist and guide data files can be imported into your favorite IPTV applications such as Jellyfin, Plex, and Emby.
|
||||||
|
|
||||||
|
Once the docker container is started; a fresh copy of the channel list and TV guide data will be downloaded and generated within your docker container. You can then visit the website URL associated with your docker container; which will give you direct links to the files that you can utilize with the above listed IPTV apps.
|
||||||
|
|
||||||
|
All channels contain multiple sources so that you have a reliable streaming experience, and helps you combat moments when one channel source goes offline.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Associated Links
|
||||||
|
|
||||||
|
Check out the following websites for additional resources for the TVApp2 docker image below.
|
||||||
|
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
The following is a small list of the features available with the TVApp2 container:
|
||||||
|
|
||||||
|
- Multiple IPTV service sources:
|
||||||
|
- TheTVApp
|
||||||
|
- TVPass
|
||||||
|
- MoveOnJoy
|
||||||
|
- Channel playlists can be downloaded as a `.m38u` or a compressed `.gzip` archive.
|
||||||
|
- Compressed gzip compatible with 3rd party apps like Cabernet and Jellyfin.
|
||||||
|
- Tracking statistics which show the last update time, size, and a description for each file's purpose.
|
||||||
|
- Direct access to download each of the generated files, including multiple easy-to-remember URLs for each file type.
|
||||||
|
- **M3U Playlist**:
|
||||||
|
- http://127.0.0.1:4124/playlist
|
||||||
|
- http://127.0.0.1:4124/m3u
|
||||||
|
- http://127.0.0.1:4124/m38u
|
||||||
|
- **EPG Guide Data (Uncompressed)**:
|
||||||
|
- http://127.0.0.1:4124/guide
|
||||||
|
- http://127.0.0.1:4124/epg
|
||||||
|
- http://127.0.0.1:4124/xml
|
||||||
|
- **EPG Guide Data (Compressed)**:
|
||||||
|
- http://127.0.0.1:4124/gzip
|
||||||
|
- http://127.0.0.1:4124/gz
|
||||||
|
- Video sources include both quality options `hd` and `sd`.
|
||||||
|
- Easily mountable docker volumes to access the generated files quickly.
|
||||||
|
- Wide variety of docker environment variables to change the binding IP, port, app root directory, quality, timezone, etc.
|
||||||
|
- Small docker image size; based on Alpine 3.x which averages `40MB`.
|
||||||
|
- Compatible with architectures `amd64` and `arm64/aarm64`.
|
||||||
|
- Example configurations for 3rd party apps such as Traefik and Authentik.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## ✨ Contributors
|
||||||
|
|
||||||
|
We are always looking for contributors. If you feel that you can provide something useful to Gistr, then we'd love to review your suggestion. Before submitting your contribution, please review the following resources:
|
||||||
|
|
||||||
|
- [Pull Request Procedure](https://github.com/TheBinaryNinja/tvapp2/blob/main/.github/PULL_REQUEST_TEMPLATE.md)
|
||||||
|
- [Contributor Policy](https://github.com/TheBinaryNinja/tvapp2/blob/main/CONTRIBUTING.md)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
Want to help but can't write code?
|
||||||
|
- Review [active questions by our community](https://github.com/TheBinaryNinja/tvapp2/labels/help%20wanted) and answer the ones you know.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center" markdown="1">
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
The following people have helped get this project going:
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div align="center" markdown="1">
|
||||||
|
|
||||||
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
|
[![Contributors][contribs-all-img]](#contributors)
|
||||||
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
|
|
||||||
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
<!-- markdownlint-disable -->
|
||||||
|
<table>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top"><a href="https://github.com/Aetherinox">
|
||||||
|
<img src="https://avatars.githubusercontent.com/u/118329232?v=4?s=40" width="80px;" alt="Aetherinox"/><br /><sub><b>Aetherinox</b></sub></a><br /><a href="https://github.com/TheBinaryNinja/tvapp2/commits?author=Aetherinox" title="Code">💻</a>
|
||||||
|
</td>
|
||||||
|
<td align="center" valign="top"><a href="https://github.com/iFlip721">
|
||||||
|
<img src="https://avatars.githubusercontent.com/u/28721588?v=4" width="80px;" alt="iFlip721"/><br /><sub><b>iFlip721</b></sub></a><br /><a href="https://github.com/TheBinaryNinja/tvapp2/commits?author=iFlip721" title="Code">💻</a>
|
||||||
|
</td>
|
||||||
|
<td align="center" valign="top"><a href="https://github.com/Nvmdfth">
|
||||||
|
<img src="https://avatars.githubusercontent.com/u/32874812?v=4" width="80px;" alt="Nvmdfth"/><br /><sub><b>Optx</b></sub></a><br /><a href="https://github.com/TheBinaryNinja/tvapp2/commits?author=Nvmdfth" title="Code">💻</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- prettier-ignore-start -->
|
||||||
|
<!-- markdownlint-disable -->
|
||||||
|
|
||||||
|
<!-- BADGE > GENERAL -->
|
||||||
|
[general-npmjs-uri]: https://npmjs.com
|
||||||
|
[general-nodejs-uri]: https://nodejs.org
|
||||||
|
[general-npmtrends-uri]: http://npmtrends.com/csf-firewall
|
||||||
|
|
||||||
|
<!-- BADGE > VERSION > GITHUB -->
|
||||||
|
[github-version-img]: https://img.shields.io/github/v/tag/TheBinaryNinja/tvapp2?logo=GitHub&label=Version&color=ba5225
|
||||||
|
[github-version-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > LICENSE > MIT -->
|
||||||
|
[license-mit-img]: https://img.shields.io/badge/MIT-FFF?logo=creativecommons&logoColor=FFFFFF&label=License&color=9d29a0
|
||||||
|
[license-mit-uri]: https://github.com/TheBinaryNinja/tvapp2/blob/main/LICENSE
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD COUNT -->
|
||||||
|
[github-downloads-img]: https://img.shields.io/github/downloads/TheBinaryNinja/tvapp2/total?logo=github&logoColor=FFFFFF&label=Downloads&color=376892
|
||||||
|
[github-downloads-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > DOWNLOAD SIZE -->
|
||||||
|
[github-size-img]: https://img.shields.io/github/repo-size/TheBinaryNinja/tvapp2?logo=github&label=Size&color=59702a
|
||||||
|
[github-size-uri]: https://github.com/TheBinaryNinja/tvapp2/releases
|
||||||
|
|
||||||
|
<!-- BADGE > ALL CONTRIBUTORS -->
|
||||||
|
[contribs-all-img]: https://img.shields.io/github/all-contributors/TheBinaryNinja/tvapp2?logo=contributorcovenant&color=de1f6f&label=contributors
|
||||||
|
[contribs-all-uri]: https://github.com/all-contributors/all-contributors
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > NPM -->
|
||||||
|
[github-build-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/npm-release.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/npm-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > BUILD > Pypi -->
|
||||||
|
[github-build-pypi-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/release-pypi.yml?logo=github&logoColor=FFFFFF&label=Build&color=%23278b30
|
||||||
|
[github-build-pypi-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/pypi-release.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > TESTS -->
|
||||||
|
[github-tests-img]: https://img.shields.io/github/actions/workflow/status/TheBinaryNinja/tvapp2/npm-tests.yml?logo=github&label=Tests&color=2c6488
|
||||||
|
[github-tests-uri]: https://github.com/TheBinaryNinja/tvapp2/actions/workflows/npm-tests.yml
|
||||||
|
|
||||||
|
<!-- BADGE > GITHUB > COMMIT -->
|
||||||
|
[github-commit-img]: https://img.shields.io/github/last-commit/TheBinaryNinja/tvapp2?logo=conventionalcommits&logoColor=FFFFFF&label=Last%20Commit&color=313131
|
||||||
|
[github-commit-uri]: https://github.com/TheBinaryNinja/tvapp2/commits/main/
|
||||||
|
|
||||||
|
<!-- BADGE > Github > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[github-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=development-amd64%2Cdevelopment%2Cdevelopment-arm64%2Clatest&label=version&trim=
|
||||||
|
[github-docker-version-uri]: https://github.com/TheBinaryNinja/tvapp2/pkgs/container/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Dockerhub > Docker Image -->
|
||||||
|
[dockerhub-docker-version-img]: https://img.shields.io/docker/v/thebinaryninja/tvapp2?sort=semver&arch=arm64
|
||||||
|
[dockerhub-docker-version-uri]: https://hub.docker.com/repository/docker/thebinaryninja/tvapp2/general
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea > Docker Image > SELFHOSTED BADGES -->
|
||||||
|
[gitea-docker-version-img]: https://badges-ghcr.onrender.com/thebinaryninja/tvapp2/latest_tag?color=%233d9e18&ignore=latest&label=version&trim=
|
||||||
|
[gitea-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/tvapp2
|
||||||
|
|
||||||
|
<!-- BADGE > Gitea 2 > Docker Image -->
|
||||||
|
[gitea2-docker-version-img]: https://img.shields.io/gitea/v/release/binaryninja/tvapp2?gitea_url=https%3A%2F%2Fgit.binaryninja.net
|
||||||
|
[gitea2-docker-version-uri]: https://git.binaryninja.net/BinaryNinja/-/packages/container/tvapp2/latest
|
||||||
|
|
||||||
|
<!-- BADGE > BUTTON > SUBMIT ISSUES -->
|
||||||
|
[btn-github-submit-img]: https://img.shields.io/badge/submit%20new%20issue-de1f5c?style=for-the-badge&logo=github&logoColor=FFFFFF
|
||||||
|
[btn-github-submit-uri]: https://github.com/TheBinaryNinja/tvapp2/issues
|
||||||
|
|
||||||
|
<!-- prettier-ignore-end -->
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
title: About TVApp2
|
|
||||||
tags:
|
|
||||||
- info
|
|
||||||
---
|
|
||||||
|
|
||||||
# About TVApp2
|
|
||||||
|
|
||||||
<br />
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<br />
|
|
||||||
429
docs/docs/config/env.md
Normal file
@@ -0,0 +1,429 @@
|
|||||||
|
---
|
||||||
|
title: Environment Variables
|
||||||
|
tags:
|
||||||
|
- config
|
||||||
|
---
|
||||||
|
|
||||||
|
# Environment Variables
|
||||||
|
|
||||||
|
Environment variables allow you to modify how TVApp2 functions within a docker container. Ensure that
|
||||||
|
you understand the setting you are changing before you modify these values, otherwise, TVApp2 may fail to
|
||||||
|
start due to misconfigurations.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## TZ
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `Etc/UTC` -->
|
||||||
|
|
||||||
|
The `TZ` environment variable specifies the timezone that your docker container will
|
||||||
|
utilize. This is useful for syncing your local time with console outputs such as
|
||||||
|
our logging system.
|
||||||
|
|
||||||
|
=== "Example"
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- TZ=Etc/UTC # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Changing this env variable will change the time for anything
|
||||||
|
related to the TVApp2 docker container.
|
||||||
|
|
||||||
|
=== "Timezones"
|
||||||
|
|
||||||
|
``` yaml
|
||||||
|
Etc/UTC
|
||||||
|
Africa/Cairo
|
||||||
|
Africa/Johannesburg
|
||||||
|
Africa/Lagos
|
||||||
|
America/Argentina/Buenos_Aires
|
||||||
|
America/Bogota
|
||||||
|
America/Caracas
|
||||||
|
America/Chicago
|
||||||
|
America/El_Salvador
|
||||||
|
America/Juneau
|
||||||
|
America/Lima
|
||||||
|
America/Los_Angeles
|
||||||
|
America/Mexico_City
|
||||||
|
America/New_York
|
||||||
|
America/Phoenix
|
||||||
|
America/Santiago
|
||||||
|
America/Sao_Paulo
|
||||||
|
America/Toronto
|
||||||
|
America/Vancouver
|
||||||
|
Asia/Almaty
|
||||||
|
Asia/Ashkhabad
|
||||||
|
Asia/Bahrain
|
||||||
|
Asia/Bangkok
|
||||||
|
Asia/Chongqing
|
||||||
|
Asia/Dubai
|
||||||
|
Asia/Ho_Chi_Minh
|
||||||
|
Asia/Hong_Kong
|
||||||
|
Asia/Jakarta
|
||||||
|
Asia/Jerusalem
|
||||||
|
Asia/Kathmandu
|
||||||
|
Asia/Kolkata
|
||||||
|
Asia/Kuwait
|
||||||
|
Asia/Muscat
|
||||||
|
Asia/Qatar
|
||||||
|
Asia/Riyadh
|
||||||
|
Asia/Seoul
|
||||||
|
Asia/Shanghai
|
||||||
|
Asia/Singapore
|
||||||
|
Asia/Taipei
|
||||||
|
Asia/Tehran
|
||||||
|
Asia/Tokyo
|
||||||
|
Atlantic/Reykjavik
|
||||||
|
Australia/ACT
|
||||||
|
Australia/Adelaide
|
||||||
|
Australia/Brisbane
|
||||||
|
Australia/Sydney
|
||||||
|
Europe/Athens
|
||||||
|
Europe/Belgrade
|
||||||
|
Europe/Berlin
|
||||||
|
Europe/Copenhagen
|
||||||
|
Europe/Helsinki
|
||||||
|
Europe/Istanbul
|
||||||
|
Europe/London
|
||||||
|
Europe/Luxembourg
|
||||||
|
Europe/Madrid
|
||||||
|
Europe/Moscow
|
||||||
|
Europe/Paris
|
||||||
|
Europe/Riga
|
||||||
|
Europe/Rome
|
||||||
|
Europe/Stockholm
|
||||||
|
Europe/Tallinn
|
||||||
|
Europe/Vilnius
|
||||||
|
Europe/Warsaw
|
||||||
|
Europe/Zurich
|
||||||
|
Pacific/Auckland
|
||||||
|
Pacific/Chatham
|
||||||
|
Pacific/Fakaofo
|
||||||
|
Pacific/Honolulu
|
||||||
|
Pacific/Norfolk
|
||||||
|
US/Mountain
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## WEB_IP
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `0.0.0.0` -->
|
||||||
|
|
||||||
|
The `WEB_IP` environment variable allows you to define what IP address will be
|
||||||
|
bound to the TVApp2 docker image.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- WEB_IP=0.0.0.0 # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Specify `0.0.0.0` to bind to all local IP addresses.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## WEB_PORT
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `4124` -->
|
||||||
|
|
||||||
|
The `WEB_PORT` environment variable allows you to define what port the TVApp2
|
||||||
|
docker container will listen to.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- WEB_IP=4124 # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: The default port is `4124`
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## URL_REPO
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `https://git.binaryninja.net/binaryninja` -->
|
||||||
|
<!-- md:flag dangerous -->
|
||||||
|
|
||||||
|
The `URL_REPO` environment variable allows you to specify what Github repo is used to communicate
|
||||||
|
with in order to fetch IPTV data. This is used as an internal environment variable by the developers
|
||||||
|
and should not be changed by the end-user; otherwise you will be unable to fetch IPTV data.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- URL_REPO=https://git.binaryninja.net/binaryninja # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :warning: It is highly recommended that you do not change this value
|
||||||
|
otherwise you will not be able to download the latest M3U playlists and EPG
|
||||||
|
guide data.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## DIR_BUILD
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `/usr/src/app` -->
|
||||||
|
<!-- md:flag dangerous -->
|
||||||
|
|
||||||
|
The `DIR_BUILD` environment variable specifies what local folder will be utilized
|
||||||
|
by the TVApp2 docker container when the container builds the app.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- DIR_BUILD=/usr/src/app # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :warning: You should not change this unless you are an advanced user.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## DIR_RUN
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `/usr/src/app` -->
|
||||||
|
<!-- md:flag dangerous -->
|
||||||
|
|
||||||
|
The `DIR_RUN` environment variable specifies what local folder will be utilized
|
||||||
|
by the TVApp2 docker container when the container has built the app and placed it
|
||||||
|
into a production folder.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- DIR_RUN=/usr/bin/app # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :warning: You should not change this unless you are an advanced user.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## STREAM_QUALITY
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.1.0 -->
|
||||||
|
<!-- md:default `hd` -->
|
||||||
|
|
||||||
|
The `STREAM_QUALITY` environment variable specifies the default stream quality that will
|
||||||
|
be used when you initiate a new channel to view.
|
||||||
|
|
||||||
|
Available Options:
|
||||||
|
|
||||||
|
* `hd` High Definition
|
||||||
|
* `sd` Standard Definition
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- STREAM_QUALITY=hd # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: This environment variable has the following options:
|
||||||
|
- hd
|
||||||
|
- sd
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## FILE_PLAYLIST
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.1.0 -->
|
||||||
|
<!-- md:default `playlist.m3u8` -->
|
||||||
|
|
||||||
|
The `FILE_PLAYLIST` environment variable specifies the filename that will be utilized when
|
||||||
|
your .m3u playlist file is generated.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- FILE_PLAYLIST=playlist.m3u8 # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Changing this file only changes the filename locally; it does
|
||||||
|
not affect the server-side fetching mechanism.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## FILE_EPG
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.1.0 -->
|
||||||
|
<!-- md:default `xmltv.xml` -->
|
||||||
|
|
||||||
|
The `FILE_EPG` environment variable specifies the filename that will be utilized when
|
||||||
|
your .xml EPG playlist file is generated.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- FILE_EPG=xmltv.xml # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Changing this file only changes the filename locally; it does
|
||||||
|
not affect the server-side fetching mechanism.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## FILE_GZIP
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.1.0 -->
|
||||||
|
<!-- md:default `xmltv.xml.gz` -->
|
||||||
|
|
||||||
|
The `FILE_GZIP` environment variable specifies the filename that will be utilized when
|
||||||
|
a compressed `.gzip` is generated and when you download the file.
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- FILE_GZIP=xmltv.xml.gz # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Changing this file only changes the filename locally for
|
||||||
|
generation and downloading. It does not affect the server-side fetching
|
||||||
|
mechanism.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## LOG_LEVEL
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.1.0 -->
|
||||||
|
<!-- md:default `4` -->
|
||||||
|
|
||||||
|
The `LOG_LEVEL` environment variable allows you specify how deep logs should go
|
||||||
|
when being output to your console.
|
||||||
|
|
||||||
|
=== "Example"
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=4 # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: The default log level is `4` (info).
|
||||||
|
|
||||||
|
=== "Logging Options"
|
||||||
|
|
||||||
|
| Log Level | Name | Description |
|
||||||
|
| --------------- | ----------- | ------------------------------------------------------------------------------- |
|
||||||
|
| `6` | Trace | Displays all possible logs in console, along with anything below this line. |
|
||||||
|
| `5` | Debug | Displays debug / developer logs, along with anything below this line. |
|
||||||
|
| `4` | Info | Displays informative logs, along with anything below this line. |
|
||||||
|
| `3` | Notice | Displays important notices, along with anything below this line. |
|
||||||
|
| `2` | Warm | Displays warnings, along with anything below this line. |
|
||||||
|
| `1` | Error | Displays only errors, none of the log levels above this line will be shown |
|
||||||
120
docs/docs/config/volumes.md
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
---
|
||||||
|
title: Environment Variables
|
||||||
|
tags:
|
||||||
|
- config
|
||||||
|
---
|
||||||
|
|
||||||
|
# Mountable Volumes
|
||||||
|
|
||||||
|
Mountable volumes in Docker allow you to share folders within a docker container with your host machine. This allows you to access these specific files without having to bash into the container and using the terminal to navigate around.
|
||||||
|
|
||||||
|
The TVApp2 docker image provides a few different paths that you can mount to your host machine; as outlined below.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
## 📁 /usr/bin/app
|
||||||
|
<!-- md:control env -->
|
||||||
|
<!-- md:version stable-1.0.0 -->
|
||||||
|
<!-- md:default `Etc/UTC` -->
|
||||||
|
|
||||||
|
The `TZ` environment variable specifies the timezone that your docker container will
|
||||||
|
utilize. This is useful for syncing your local time with console outputs such as
|
||||||
|
our logging system.
|
||||||
|
|
||||||
|
=== "Example"
|
||||||
|
|
||||||
|
``` { .yaml .copy .select title="docker-compose.yml" linenums="1" hl_lines="13" }
|
||||||
|
services:
|
||||||
|
tvapp2:
|
||||||
|
container_name: tvapp2
|
||||||
|
image: ghcr.io/thebinaryninja/tvapp2:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./config:/config
|
||||||
|
- ./app:/usr/bin/app
|
||||||
|
environment:
|
||||||
|
- TZ=Etc/UTC # (1)
|
||||||
|
```
|
||||||
|
|
||||||
|
1. :information: Changing this env variable will change the time for anything
|
||||||
|
related to the TVApp2 docker container.
|
||||||
|
|
||||||
|
=== "Timezones"
|
||||||
|
|
||||||
|
``` yaml
|
||||||
|
Etc/UTC
|
||||||
|
Africa/Cairo
|
||||||
|
Africa/Johannesburg
|
||||||
|
Africa/Lagos
|
||||||
|
America/Argentina/Buenos_Aires
|
||||||
|
America/Bogota
|
||||||
|
America/Caracas
|
||||||
|
America/Chicago
|
||||||
|
America/El_Salvador
|
||||||
|
America/Juneau
|
||||||
|
America/Lima
|
||||||
|
America/Los_Angeles
|
||||||
|
America/Mexico_City
|
||||||
|
America/New_York
|
||||||
|
America/Phoenix
|
||||||
|
America/Santiago
|
||||||
|
America/Sao_Paulo
|
||||||
|
America/Toronto
|
||||||
|
America/Vancouver
|
||||||
|
Asia/Almaty
|
||||||
|
Asia/Ashkhabad
|
||||||
|
Asia/Bahrain
|
||||||
|
Asia/Bangkok
|
||||||
|
Asia/Chongqing
|
||||||
|
Asia/Dubai
|
||||||
|
Asia/Ho_Chi_Minh
|
||||||
|
Asia/Hong_Kong
|
||||||
|
Asia/Jakarta
|
||||||
|
Asia/Jerusalem
|
||||||
|
Asia/Kathmandu
|
||||||
|
Asia/Kolkata
|
||||||
|
Asia/Kuwait
|
||||||
|
Asia/Muscat
|
||||||
|
Asia/Qatar
|
||||||
|
Asia/Riyadh
|
||||||
|
Asia/Seoul
|
||||||
|
Asia/Shanghai
|
||||||
|
Asia/Singapore
|
||||||
|
Asia/Taipei
|
||||||
|
Asia/Tehran
|
||||||
|
Asia/Tokyo
|
||||||
|
Atlantic/Reykjavik
|
||||||
|
Australia/ACT
|
||||||
|
Australia/Adelaide
|
||||||
|
Australia/Brisbane
|
||||||
|
Australia/Sydney
|
||||||
|
Europe/Athens
|
||||||
|
Europe/Belgrade
|
||||||
|
Europe/Berlin
|
||||||
|
Europe/Copenhagen
|
||||||
|
Europe/Helsinki
|
||||||
|
Europe/Istanbul
|
||||||
|
Europe/London
|
||||||
|
Europe/Luxembourg
|
||||||
|
Europe/Madrid
|
||||||
|
Europe/Moscow
|
||||||
|
Europe/Paris
|
||||||
|
Europe/Riga
|
||||||
|
Europe/Rome
|
||||||
|
Europe/Stockholm
|
||||||
|
Europe/Tallinn
|
||||||
|
Europe/Vilnius
|
||||||
|
Europe/Warsaw
|
||||||
|
Europe/Zurich
|
||||||
|
Pacific/Auckland
|
||||||
|
Pacific/Chatham
|
||||||
|
Pacific/Fakaofo
|
||||||
|
Pacific/Honolulu
|
||||||
|
Pacific/Norfolk
|
||||||
|
US/Mountain
|
||||||
|
```
|
||||||
|
|
||||||
|
<br />
|
||||||
13
docs/docs/includes/abbreviations.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
[mkdocs]: https://www.mkdocs.org
|
||||||
|
[mkdocs.dotfiles]: https://www.mkdocs.org/dev-guide/themes/#dot-files
|
||||||
|
[mkdocs.metadata]: https://www.mkdocs.org/user-guide/writing-your-docs/#yaml-style-meta-data
|
||||||
|
[mkdocs.env]: https://www.mkdocs.org/user-guide/configuration/#environment-variables
|
||||||
|
[mkdocs.docs_dir]: https://www.mkdocs.org/user-guide/configuration/#docs_dir
|
||||||
|
[mkdocs.extra_templates]: https://www.mkdocs.org/user-guide/configuration/#extra_templates
|
||||||
|
[mkdocs.site_dir]: https://www.mkdocs.org/user-guide/configuration/#site_dir
|
||||||
|
[mkdocs.site_url]: https://www.mkdocs.org/user-guide/configuration/#site_url
|
||||||
|
[mkdocs.site_description]: https://www.mkdocs.org/user-guide/configuration/#site_description
|
||||||
|
[mkdocs.nav]: https://www.mkdocs.org/user-guide/configuration/#nav
|
||||||
|
[mkdocs.plugins]: https://www.mkdocs.org/user-guide/configuration/#plugins
|
||||||
|
[mkdocs.strict]: https://www.mkdocs.org/user-guide/configuration/#strict
|
||||||
|
[mkdocs.use_directory_urls]: https://www.mkdocs.org/user-guide/configuration/#use_directory_urls
|
||||||
6
docs/docs/javascripts/tablesort.js
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
document$.subscribe(function() {
|
||||||
|
var tables = document.querySelectorAll("article table:not([class])")
|
||||||
|
tables.forEach(function(table) {
|
||||||
|
new Tablesort(table)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -5,6 +5,16 @@
|
|||||||
[ data-md-color-scheme="default" ]
|
[ data-md-color-scheme="default" ]
|
||||||
{
|
{
|
||||||
|
|
||||||
|
--md-accent-fg-color--transparent: #1b1b1b2f;
|
||||||
|
--md-typeset-a-color: #568afa;
|
||||||
|
--md-badge-icon-color: #2b2b2b;
|
||||||
|
--md-badge-icon-hover-color: #568afa;
|
||||||
|
--md-badge-bg-color--transparent: #1b1b1b2f;
|
||||||
|
--md-badge-bg-hover-color: #1b1b1b2f;
|
||||||
|
--md-table-head-bg-color: #597dd2;
|
||||||
|
--md-table-body-bg-color: rgb(221, 221, 221);
|
||||||
|
--md-table-body-text-color: rgb(20, 20, 20);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Tag > Background Color
|
Tag > Background Color
|
||||||
*/
|
*/
|
||||||
@@ -24,15 +34,6 @@
|
|||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Badge > Left Box (Icon
|
|
||||||
*/
|
|
||||||
|
|
||||||
.md-typeset .mdx-badge__icon
|
|
||||||
{
|
|
||||||
background-color: var(--md-accent-fg-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Badges > Right Box
|
Badges > Right Box
|
||||||
*/
|
*/
|
||||||
@@ -52,15 +53,6 @@
|
|||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Badge > Icon Color
|
|
||||||
*/
|
|
||||||
|
|
||||||
.md-typeset .mdx-badge svg
|
|
||||||
{
|
|
||||||
color: #FFFFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Make <small>text</small> opaque. used for changelog to show date
|
Make <small>text</small> opaque. used for changelog to show date
|
||||||
*/
|
*/
|
||||||
@@ -84,16 +76,10 @@
|
|||||||
margin-inline-end: 5px;
|
margin-inline-end: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 .mdx-badge svg
|
|
||||||
{
|
|
||||||
padding-left: 2px;
|
|
||||||
padding-top: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.color-box {
|
.color-box {
|
||||||
float: left;
|
float: left;
|
||||||
height: 24px;
|
height: 21px;
|
||||||
width: 24px;
|
width: 21px;
|
||||||
border: 1px solid rgba( 255, 255, 255, 0.2 );
|
border: 1px solid rgba( 255, 255, 255, 0.2 );
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
@@ -111,11 +97,6 @@
|
|||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-typeset table:not([class]) tbody tr
|
|
||||||
{
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Table > Outter Border / Background
|
Table > Outter Border / Background
|
||||||
*/
|
*/
|
||||||
@@ -125,6 +106,17 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.md-typeset table:not([class]) td
|
||||||
|
{
|
||||||
|
border-top: 2px solid var(--md-typeset-table-color);
|
||||||
|
padding: .9375em 1.25em;
|
||||||
|
padding-top: 0.9375em;
|
||||||
|
padding-bottom: 0.9375em;
|
||||||
|
padding-left: 1.25em;
|
||||||
|
vertical-align: top;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Table > Outter Border / Background
|
Table > Outter Border / Background
|
||||||
*/
|
*/
|
||||||
@@ -156,15 +148,6 @@
|
|||||||
{
|
{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
/*background-color: var(--md-code-bg-color);*/
|
/*background-color: var(--md-code-bg-color);*/
|
||||||
min-width: 25%;
|
|
||||||
border-right: 1px solid rgba( 255, 255, 255, 0.14);
|
|
||||||
background-color: rgba(194, 194, 194, 0.28);
|
|
||||||
}
|
|
||||||
|
|
||||||
.md-typeset__table thead
|
|
||||||
{
|
|
||||||
background-color: var(--md-accent-fg-color);
|
|
||||||
color: #FFF;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -233,29 +216,42 @@
|
|||||||
--md-code-hl-generic-color: var(--md-default-fg-color--light);
|
--md-code-hl-generic-color: var(--md-default-fg-color--light);
|
||||||
--md-code-hl-variable-color: var(--md-default-fg-color--light);
|
--md-code-hl-variable-color: var(--md-default-fg-color--light);
|
||||||
--md-typeset-color: var(--md-default-fg-color);
|
--md-typeset-color: var(--md-default-fg-color);
|
||||||
--md-typeset-a-color: #568afa;
|
--md-typeset-a-color: #f91d5b;
|
||||||
|
--md-badge-icon-color: #d0d0d0;
|
||||||
|
--md-badge-icon-hover-color: #568afa;
|
||||||
|
--md-badge-bg-color--transparent: #ffffff1c;
|
||||||
|
--md-badge-bg-hover-color: #FFFFFF2E;
|
||||||
--md-typeset-kbd-color: hsla(var(--md-hue),15%,90%,0.12);
|
--md-typeset-kbd-color: hsla(var(--md-hue),15%,90%,0.12);
|
||||||
--md-typeset-kbd-accent-color: hsla(var(--md-hue),15%,90%,0.2);
|
--md-typeset-kbd-accent-color: hsla(var(--md-hue),15%,90%,0.2);
|
||||||
--md-typeset-kbd-border-color: hsla(var(--md-hue),15%,14%,1);
|
--md-typeset-kbd-border-color: hsla(var(--md-hue),15%,14%,1);
|
||||||
--md-typeset-mark-color: #4287ff4d;
|
--md-typeset-mark-color: #4287ff4d;
|
||||||
--md-typeset-table-color: hsla(var(--md-hue),15%,95%,0.12);
|
--md-typeset-table-color: hsla(0%, 0%, 40%, 0.12);
|
||||||
--md-typeset-table-color--light: hsla(var(--md-hue),15%,95%,0.035);
|
--md-typeset-table-color--light: hsla(var(--md-hue),15%,95%,0.035);
|
||||||
--md-admonition-fg-color: var(--md-default-fg-color);
|
--md-admonition-fg-color: var(--md-default-fg-color);
|
||||||
--md-admonition-bg-color: var(--md-default-bg-color);
|
--md-admonition-bg-color: var(--md-default-bg-color);
|
||||||
--md-footer-bg-color: rgba( 34, 34, 34, 1 );
|
--md-footer-bg-color: rgba( 17, 17, 17, 1 );
|
||||||
--md-footer-bg-color--dark: rgba( 15, 15, 15, 1 );
|
--md-footer-bg-color--dark: rgba( 13, 13, 13, 1 );
|
||||||
--md-shadow-z1: 0 0.2rem 0.5rem #0000000d,0 0 0.05rem #0000001a;
|
--md-shadow-z1: 0 0.2rem 0.5rem #0000000d,0 0 0.05rem #0000001a;
|
||||||
--md-shadow-z2: 0 0.2rem 0.5rem #00000040,0 0 0.05rem #00000040;
|
--md-shadow-z2: 0 0.2rem 0.5rem #00000040,0 0 0.05rem #00000040;
|
||||||
--md-shadow-z3: 0 0.2rem 0.5rem #0006,0 0 0.05rem #00000059;
|
--md-shadow-z3: 0 0.2rem 0.5rem #0006,0 0 0.05rem #00000059;
|
||||||
|
--md-table-head-bg-color: #860038;
|
||||||
|
--md-table-body-text-color: rgb(231, 231, 231);
|
||||||
|
--md-accent-fg-color--transparent: #FFFFFF2E;
|
||||||
--md-admonition-icon--pied-piper: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z"/></svg>');
|
--md-admonition-icon--pied-piper: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z"/></svg>');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Tag > Background Color
|
Navigation > Tabs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.md-typeset .md-tag
|
.md-tabs
|
||||||
{
|
{
|
||||||
background-color: var(--md-primary-fg-color);
|
background-color: #860038;
|
||||||
|
color: var(--md-primary-bg-color);
|
||||||
|
display: block;
|
||||||
|
line-height: 1.3;
|
||||||
|
overflow: auto;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -264,8 +260,8 @@
|
|||||||
|
|
||||||
.md-nav
|
.md-nav
|
||||||
{
|
{
|
||||||
font-size: .6rem;
|
font-size: .7rem;
|
||||||
line-height: 1.3;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mdx-container
|
.mdx-container
|
||||||
@@ -276,12 +272,18 @@
|
|||||||
|
|
||||||
.md-main
|
.md-main
|
||||||
{
|
{
|
||||||
background-color: hsla(140, 0%, 5%, 1) !important;
|
background-color: #161618 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-main__inner
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-typeset table:not([ class ] ) tbody tr
|
.md-typeset table:not([ class ] ) tbody tr
|
||||||
{
|
{
|
||||||
background-color: rgb( 17, 15, 15 );
|
background-color: rgb( 15, 15, 15 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -315,14 +317,6 @@
|
|||||||
{
|
{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
/*background-color: var(--md-code-bg-color);*/
|
/*background-color: var(--md-code-bg-color);*/
|
||||||
min-width: 25%;
|
|
||||||
border-right: 1px solid rgba( 255, 255, 255, 0.14);
|
|
||||||
background-color: rgba(70, 65, 77, 0.36);
|
|
||||||
}
|
|
||||||
|
|
||||||
.md-typeset__table thead
|
|
||||||
{
|
|
||||||
background-color: #b10f52;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -417,16 +411,7 @@
|
|||||||
|
|
||||||
.md-typeset .tabbed-labels
|
.md-typeset .tabbed-labels
|
||||||
{
|
{
|
||||||
background-color: #090909;
|
background-color: #0d0d0d;
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Badge > Left Box (Icon
|
|
||||||
*/
|
|
||||||
|
|
||||||
.md-typeset .mdx-badge__icon
|
|
||||||
{
|
|
||||||
background-color: #3f4faa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -453,8 +438,7 @@
|
|||||||
|
|
||||||
h3 .mdx-badge svg
|
h3 .mdx-badge svg
|
||||||
{
|
{
|
||||||
padding-left: 2px;
|
padding-left: 0px;
|
||||||
padding-top: 1px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -476,15 +460,6 @@
|
|||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Badge > Icon Color
|
|
||||||
*/
|
|
||||||
|
|
||||||
.md-typeset .mdx-badge svg
|
|
||||||
{
|
|
||||||
color: #FFFFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -509,6 +484,14 @@ h4:has(.twemoji) .twemoji
|
|||||||
margin-left: -7px;
|
margin-left: -7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.md-typeset .emojione, .md-typeset .gemoji, .md-typeset .twemoji
|
||||||
|
{
|
||||||
|
--md-icon-size: 1.125em;
|
||||||
|
display: inline-flex;
|
||||||
|
height: var(--md-icon-size);
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Badge > Header Padding
|
Badge > Header Padding
|
||||||
if a badge is used in a header, add padding between the badge and text
|
if a badge is used in a header, add padding between the badge and text
|
||||||
@@ -523,12 +506,18 @@ h4:has(.twemoji) .twemoji
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.md-nav--primary .md-nav__title
|
||||||
|
{
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Navigation > Spacer
|
Navigation > Spacer
|
||||||
Add a gap between the last "File" item in nav menu, and the folders under.
|
Add a gap between the last "File" item in nav menu, and the folders under.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
li:has(a[href*="about_patcher"])
|
.md-sidebar--primary li:has(a[href*="about_tvapp2"])
|
||||||
{
|
{
|
||||||
margin-bottom: 28px !important;
|
margin-bottom: 28px !important;
|
||||||
}
|
}
|
||||||
@@ -563,6 +552,34 @@ li:has(a[href*="about_patcher"])
|
|||||||
transition: none !important;
|
transition: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.md-typeset .mdx-badge--dangerous
|
||||||
|
{
|
||||||
|
--md-badge-icon-color: #fff;
|
||||||
|
--md-badge-icon-hover-color: #ff1058;
|
||||||
|
--md-badge-bg-color--transparent: #7B1532 !important;
|
||||||
|
color: #f9f9f9;
|
||||||
|
--md-typeset-bg-color: #111;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset .mdx-badge--heart {
|
||||||
|
--md-badge-icon-color: #e92063;
|
||||||
|
--md-badge-icon-hover-color: #FFFFFF;
|
||||||
|
--md-accent-fg-color: #ff4281;
|
||||||
|
--md-accent-fg-color--transparent: #e920631a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset .mdx-badge--heart .twemoji {
|
||||||
|
animation: heart 1s infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset .mdx-badge--command
|
||||||
|
{
|
||||||
|
--md-typeset-a-color: #ff2d72;
|
||||||
|
--md-accent-fg-color: #fff;
|
||||||
|
--md-accent-fg-color--transparent: #ffffff1a;
|
||||||
|
color: #e91e63;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Badge > Header Positioning
|
Badge > Header Positioning
|
||||||
This is mainly for the conventions page
|
This is mainly for the conventions page
|
||||||
@@ -584,7 +601,6 @@ h2:has(.mdx-badge) > .mdx-badge svg
|
|||||||
|
|
||||||
:is(h1, h2, h3, h4, h5, h6) .mdx-badge__icon svg
|
:is(h1, h2, h3, h4, h5, h6) .mdx-badge__icon svg
|
||||||
{
|
{
|
||||||
padding-top: 3px !important;
|
|
||||||
padding-right: 1px;
|
padding-right: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -598,6 +614,22 @@ h2:has(.mdx-badge) > .mdx-badge svg
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Table > Header
|
||||||
|
*/
|
||||||
|
|
||||||
|
.md-typeset__table table thead, .md-typeset__table > table
|
||||||
|
{
|
||||||
|
background-color: var(--md-table-head-bg-color);
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset table:not([class]) tbody tr
|
||||||
|
{
|
||||||
|
background-color: var(--md-table-body-bg-color);
|
||||||
|
color: var(--md-table-body-text-color);
|
||||||
|
}
|
||||||
|
|
||||||
.mdx-badge__text a
|
.mdx-badge__text a
|
||||||
{
|
{
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
@@ -614,20 +646,40 @@ small
|
|||||||
font-size: 60%;
|
font-size: 60%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Navigation > Category Gap
|
||||||
|
|
||||||
|
if you have multiple sub-folders for a group of pages, add a gap between categories on left-side navigation
|
||||||
|
*/
|
||||||
|
|
||||||
|
.md-nav__item--section
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
margin: 2.00em 0;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Menu Navigation > FontAwesome Folder Icons (for folders)
|
Menu Navigation > FontAwesome Folder Icons (for folders)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
label.md-nav__link
|
||||||
|
{
|
||||||
|
color: #ffffff59 !important;
|
||||||
|
}
|
||||||
|
|
||||||
label.md-nav__link::before
|
label.md-nav__link::before
|
||||||
{
|
{
|
||||||
content: ".";
|
opacity: 0.6;
|
||||||
|
content: "";
|
||||||
background-color: currentColor;
|
background-color: currentColor;
|
||||||
padding-right: 0.6rem;
|
padding-right: 0.6rem;
|
||||||
margin-right: 0.1rem;
|
margin-right: 0.1rem;
|
||||||
mask-repeat: no-repeat;
|
mask-repeat: no-repeat;
|
||||||
mask-size: contain;
|
mask-size: 20px;
|
||||||
|
padding-inline: 4px;
|
||||||
|
mask-position: center;
|
||||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='currentColor' width='16px' height='16px'%3E%3C!-- --%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-primary' d='M160 384H512c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H394.5c-17 0-33.3-6.7-45.3-18.7L322.7 50.7c-12-12-28.3-18.7-45.3-18.7H160c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64z'%3E%3C/path%3E%3Cpath class='fa-secondary' d='M24 96c13.3 0 24 10.7 24 24V344c0 48.6 39.4 88 88 88H456c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 480 0 419.1 0 344V120c0-13.3 10.7-24 24-24z'%3E%3C/path%3E%3C/svg%3E");
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='currentColor' width='16px' height='16px'%3E%3C!-- --%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-primary' d='M160 384H512c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H394.5c-17 0-33.3-6.7-45.3-18.7L322.7 50.7c-12-12-28.3-18.7-45.3-18.7H160c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64z'%3E%3C/path%3E%3Cpath class='fa-secondary' d='M24 96c13.3 0 24 10.7 24 24V344c0 48.6 39.4 88 88 88H456c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 480 0 419.1 0 344V120c0-13.3 10.7-24 24-24z'%3E%3C/path%3E%3C/svg%3E");
|
||||||
opacity: 0.6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li.md-nav__item--nested > a > span::before
|
li.md-nav__item--nested > a > span::before
|
||||||
@@ -652,10 +704,56 @@ nav.md-nav > ul.md-nav__list > li.md-nav__item > a.md-nav__link > span::before
|
|||||||
padding-right: 0.6rem;
|
padding-right: 0.6rem;
|
||||||
margin-right: 0.1rem;
|
margin-right: 0.1rem;
|
||||||
mask-repeat: no-repeat;
|
mask-repeat: no-repeat;
|
||||||
mask-size: contain;
|
mask-size: 9px;
|
||||||
|
padding-inline: 4px;
|
||||||
|
mask-position: center;
|
||||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='currentColor' width='16px' height='16px'%3E%3C!-- --%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-primary' d=''%3E%3C/path%3E%3Cpath class='fa-secondary' d='M0 256a160 160 0 1 1 320 0A160 160 0 1 1 0 256z'%3E%3C/path%3E%3C/svg%3E");
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='currentColor' width='16px' height='16px'%3E%3C!-- --%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-primary' d=''%3E%3C/path%3E%3Cpath class='fa-secondary' d='M0 256a160 160 0 1 1 320 0A160 160 0 1 1 0 256z'%3E%3C/path%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Menu Navigation > Secondary > Text Size
|
||||||
|
*/
|
||||||
|
|
||||||
|
nav.md-nav--secondary li
|
||||||
|
{
|
||||||
|
font-size: 0.6rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Badge > Override Icon Color
|
||||||
|
*/
|
||||||
|
|
||||||
|
.mdx-badge a
|
||||||
|
{
|
||||||
|
color: var(--md-badge-icon-color);
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mdx-badge a:hover
|
||||||
|
{
|
||||||
|
color: var(--md-badge-icon-hover-color);
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mdx-badge .mdx-badge__icon
|
||||||
|
{
|
||||||
|
background-color: var(--md-badge-bg-color--transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mdx-badge .mdx-badge__icon:hover
|
||||||
|
{
|
||||||
|
background-color: var(--md-badge-bg-hover-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Tag > Background Color
|
||||||
|
*/
|
||||||
|
|
||||||
|
.md-typeset .md-tag
|
||||||
|
{
|
||||||
|
background-color: var(--md-primary-fg-color);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Lightbox border
|
Lightbox border
|
||||||
*/
|
*/
|
||||||
@@ -727,6 +825,12 @@ figure img
|
|||||||
transition: border .25s,box-shadow .25s;
|
transition: border .25s,box-shadow .25s;
|
||||||
border: 2px solid rgba( 255, 255, 255, 0.1 );
|
border: 2px solid rgba( 255, 255, 255, 0.1 );
|
||||||
background-color: var(--md-default-fg-color--lightest);
|
background-color: var(--md-default-fg-color--lightest);
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
margin-top: 5px;
|
||||||
|
width: clamp(200px, 100%, 75%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mkde-embed-container:hover
|
.mkde-embed-container:hover
|
||||||
@@ -815,14 +919,14 @@ figure img
|
|||||||
|
|
||||||
.mkde-right
|
.mkde-right
|
||||||
{
|
{
|
||||||
padding: 8px 10px;
|
padding: 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media ( min-width: 360px )
|
@media ( min-width: 360px )
|
||||||
{
|
{
|
||||||
.mkde-right
|
.mkde-right
|
||||||
{
|
{
|
||||||
padding: 12px 15px;
|
padding: 0px 15px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -830,7 +934,7 @@ figure img
|
|||||||
{
|
{
|
||||||
.mkde-right
|
.mkde-right
|
||||||
{
|
{
|
||||||
padding: 12px 12px;
|
padding: 0px 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -840,10 +944,12 @@ figure img
|
|||||||
|
|
||||||
._lc._sm:not( .xd ) .mkde-left
|
._lc._sm:not( .xd ) .mkde-left
|
||||||
{
|
{
|
||||||
min-width: 100px;
|
min-width: 70px;
|
||||||
width: 100px;
|
width: 70px;
|
||||||
min-height: 100px;
|
min-height: 70px;
|
||||||
padding: 10px;
|
height: 70px;
|
||||||
|
padding: 5px;
|
||||||
|
align-self: center;
|
||||||
background: rgba( 255, 255, 255, 0.10 );
|
background: rgba( 255, 255, 255, 0.10 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -851,9 +957,11 @@ figure img
|
|||||||
{
|
{
|
||||||
._lc._sm:not( .xd ) .mkde-left
|
._lc._sm:not( .xd ) .mkde-left
|
||||||
{
|
{
|
||||||
min-width: 110px;
|
min-width: 80px;
|
||||||
width: 110px;
|
width: 80px;
|
||||||
min-height: 110px;
|
min-height: 80px;
|
||||||
|
height: 80px;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -861,9 +969,11 @@ figure img
|
|||||||
{
|
{
|
||||||
._lc._sm:not( .xd ) .mkde-left
|
._lc._sm:not( .xd ) .mkde-left
|
||||||
{
|
{
|
||||||
min-width: 140px;
|
min-width: 110px;
|
||||||
width: 140px;
|
width: 110px;
|
||||||
min-height: 140px;
|
min-height: 110px;
|
||||||
|
height: 110px;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -871,9 +981,11 @@ figure img
|
|||||||
{
|
{
|
||||||
._lc._sm:not( .xd ) .mkde-left
|
._lc._sm:not( .xd ) .mkde-left
|
||||||
{
|
{
|
||||||
min-width: 160px;
|
min-width: 110px;
|
||||||
width: 160px;
|
width: 110px;
|
||||||
min-height: 160px;
|
min-height: 110px;
|
||||||
|
height: 110px;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1049,24 +1161,24 @@ figure img
|
|||||||
._fs-x,
|
._fs-x,
|
||||||
._fs-m
|
._fs-m
|
||||||
{
|
{
|
||||||
font-size: 12px;
|
font-size: clamp(7px, 2.0vw, 12px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._f1p
|
._f1p
|
||||||
{
|
{
|
||||||
font-size: 13px;
|
font-size: clamp(10px, 2.5vw, 13px);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media ( min-width: 360px )
|
@media ( min-width: 360px )
|
||||||
{
|
{
|
||||||
._fs-x
|
._fs-x
|
||||||
{
|
{
|
||||||
font-size: 13px;
|
font-size: clamp(10px, 2.5vw, 13px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._f1p
|
._f1p
|
||||||
{
|
{
|
||||||
font-size: 14px;
|
font-size: clamp(10px, 2.5vw, 14px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1074,17 +1186,17 @@ figure img
|
|||||||
{
|
{
|
||||||
._fs-m
|
._fs-m
|
||||||
{
|
{
|
||||||
font-size: 13px;
|
font-size: clamp(10px, 2.5vw, 13px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._fs-x
|
._fs-x
|
||||||
{
|
{
|
||||||
font-size: 14px;
|
font-size: clamp(10px, 2.5vw, 14px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._f1p
|
._f1p
|
||||||
{
|
{
|
||||||
font-size: 15px;
|
font-size: clamp(10px, 2.5vw, 15px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1092,17 +1204,17 @@ figure img
|
|||||||
{
|
{
|
||||||
._fs-m
|
._fs-m
|
||||||
{
|
{
|
||||||
font-size: 14px;
|
font-size: clamp(10px, 2.5vw, 13px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._fs-x
|
._fs-x
|
||||||
{
|
{
|
||||||
font-size: 15px;
|
font-size: clamp(10px, 2.5vw, 14px);
|
||||||
}
|
}
|
||||||
|
|
||||||
._f1p
|
._f1p
|
||||||
{
|
{
|
||||||
font-size: 17px;
|
font-size: clamp(10px, 2.5vw, 15px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1216,13 +1328,12 @@ figure img
|
|||||||
.item-link
|
.item-link
|
||||||
{
|
{
|
||||||
color: var( --md-typeset-a-color );
|
color: var( --md-typeset-a-color );
|
||||||
font-size: 12px;
|
font-size: clamp(8px, 2.5vw, 12px);
|
||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-footer
|
.item-footer
|
||||||
{
|
{
|
||||||
padding-block-start: 12px;
|
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1255,14 +1366,14 @@ figure img
|
|||||||
{
|
{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
margin-block-end: -5px;
|
margin-block-end: -7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-box
|
.color-box
|
||||||
{
|
{
|
||||||
float: left;
|
float: left;
|
||||||
height: 20px;
|
height: 21px;
|
||||||
width: 20px;
|
width: 21px;
|
||||||
border: 1px solid rgba( 255, 255, 255, 0.2 );
|
border: 1px solid rgba( 255, 255, 255, 0.2 );
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
@@ -1276,3 +1387,187 @@ figure img
|
|||||||
clear: both;
|
clear: both;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Tools > Icon Search
|
||||||
|
*/
|
||||||
|
|
||||||
|
.md-typeset .mdx-iconsearch {
|
||||||
|
background-color:var(--md-default-bg-color);
|
||||||
|
border-radius:.1rem;
|
||||||
|
box-shadow:var(--md-shadow-z1);
|
||||||
|
position:relative;
|
||||||
|
transition:box-shadow 125ms
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch:focus-within,
|
||||||
|
.md-typeset .mdx-iconsearch:hover {
|
||||||
|
box-shadow:var(--md-shadow-z2)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch .md-input {
|
||||||
|
background:var(--md-default-bg-color);
|
||||||
|
box-shadow:none
|
||||||
|
}
|
||||||
|
[data-md-color-scheme=slate] .md-typeset .mdx-iconsearch .md-input {
|
||||||
|
background:var(--md-code-bg-color)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result {
|
||||||
|
-webkit-backface-visibility:hidden;
|
||||||
|
backface-visibility:hidden;
|
||||||
|
max-height:50vh;
|
||||||
|
overflow-y:auto;
|
||||||
|
scrollbar-color:var(--md-default-fg-color--lighter) #0000;
|
||||||
|
scrollbar-width:thin;
|
||||||
|
touch-action:pan-y
|
||||||
|
}
|
||||||
|
.md-tooltip .md-typeset .mdx-iconsearch-result {
|
||||||
|
max-height:10.25rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result::-webkit-scrollbar {
|
||||||
|
height:.2rem;
|
||||||
|
width:.2rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result::-webkit-scrollbar-thumb {
|
||||||
|
background-color:var(--md-default-fg-color--lighter)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color:var(--md-accent-fg-color)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__meta {
|
||||||
|
color:var(--md-default-fg-color--lighter);
|
||||||
|
font-size:.64rem;
|
||||||
|
position:absolute;
|
||||||
|
right:.6rem;
|
||||||
|
top:.4rem
|
||||||
|
}
|
||||||
|
@media screen and (max-width:29.984375em) {
|
||||||
|
.md-typeset .mdx-iconsearch-result__meta {
|
||||||
|
display:none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__select {
|
||||||
|
background-color:var(--md-default-fg-color--lightest);
|
||||||
|
border:none;
|
||||||
|
border-radius:.1rem;
|
||||||
|
color:var(--md-default-fg-color--light);
|
||||||
|
font-size:.64rem;
|
||||||
|
padding-bottom:.15em;
|
||||||
|
padding-top:.15em;
|
||||||
|
position:absolute;
|
||||||
|
right:.6rem;
|
||||||
|
top:.4rem;
|
||||||
|
transition:color 125ms,background-color 125ms
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__select:focus,
|
||||||
|
.md-typeset .mdx-iconsearch-result__select:hover {
|
||||||
|
background-color:var(--md-accent-fg-color);
|
||||||
|
color:var(--md-accent-bg-color);
|
||||||
|
outline:none
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__select+.mdx-iconsearch-result__meta {
|
||||||
|
right:4.1rem
|
||||||
|
}
|
||||||
|
[dir=ltr] .md-typeset .mdx-iconsearch-result__list {
|
||||||
|
margin-left:0
|
||||||
|
}
|
||||||
|
[dir=rtl] .md-typeset .mdx-iconsearch-result__list {
|
||||||
|
margin-right:0
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__list {
|
||||||
|
list-style:none;
|
||||||
|
margin:0;
|
||||||
|
padding:0
|
||||||
|
}
|
||||||
|
[dir=ltr] .md-typeset .mdx-iconsearch-result__item {
|
||||||
|
margin-left:0
|
||||||
|
}
|
||||||
|
[dir=rtl] .md-typeset .mdx-iconsearch-result__item {
|
||||||
|
margin-right:0
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__item {
|
||||||
|
border-bottom:.05rem solid var(--md-default-fg-color--lightest);
|
||||||
|
margin:0;
|
||||||
|
padding:.2rem .6rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__item:last-child {
|
||||||
|
border-bottom:none
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__item>* {
|
||||||
|
margin-right:.6rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-iconsearch-result__item img {
|
||||||
|
height:.9rem;
|
||||||
|
width:.9rem
|
||||||
|
}
|
||||||
|
[data-md-color-scheme=slate] .md-typeset .mdx-iconsearch-result__item img[src*=squidfunk] {
|
||||||
|
filter:invert(1)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-premium p {
|
||||||
|
margin:2em 0;
|
||||||
|
text-align:center
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-premium img {
|
||||||
|
height:3.25rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-premium p:last-child {
|
||||||
|
display:flex;
|
||||||
|
flex-wrap:wrap;
|
||||||
|
justify-content:center
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-premium p:last-child>a {
|
||||||
|
display:block;
|
||||||
|
flex-shrink:0
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__list {
|
||||||
|
margin:2em 0
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__list:after {
|
||||||
|
clear:both;
|
||||||
|
content:"";
|
||||||
|
display:block
|
||||||
|
}
|
||||||
|
[dir=ltr] .md-typeset .mdx-sponsorship__item {
|
||||||
|
float:left
|
||||||
|
}
|
||||||
|
[dir=rtl] .md-typeset .mdx-sponsorship__item {
|
||||||
|
float:right
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__item {
|
||||||
|
border-radius:100%;
|
||||||
|
display:block;
|
||||||
|
height:1.6rem;
|
||||||
|
margin:.2rem;
|
||||||
|
overflow:hidden;
|
||||||
|
transform:scale(1);
|
||||||
|
transition:color 125ms,transform 125ms;
|
||||||
|
width:1.6rem
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__item:focus,
|
||||||
|
.md-typeset .mdx-sponsorship__item:hover {
|
||||||
|
transform:scale(1.1)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__item:focus img,
|
||||||
|
.md-typeset .mdx-sponsorship__item:hover img {
|
||||||
|
filter:grayscale(0)
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__item--private {
|
||||||
|
background:var(--md-default-fg-color--lightest);
|
||||||
|
color:var(--md-default-fg-color--lighter);
|
||||||
|
font-size:.6rem;
|
||||||
|
font-weight:700;
|
||||||
|
line-height:1.6rem;
|
||||||
|
text-align:center
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship__item img {
|
||||||
|
display:block;
|
||||||
|
filter:grayscale(100%) opacity(75%);
|
||||||
|
height:auto;
|
||||||
|
transition:filter 125ms;
|
||||||
|
width:100%
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship-button {
|
||||||
|
font-weight:400
|
||||||
|
}
|
||||||
|
.md-typeset .mdx-sponsorship-count,
|
||||||
|
.md-typeset .mdx-sponsorship-total {
|
||||||
|
font-weight:700
|
||||||
|
}
|
||||||
|
|||||||
BIN
docs/img/core/01.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
docs/img/core/02.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
docs/img/core/03.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
docs/img/core/04.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
1
docs/material/overrides/.icons/aetherx/axd/ballot.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M0 64L0 448c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-384c0-35.3-28.7-64-64-64L64 0C28.7 0 0 28.7 0 64zm64 48c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32zm0 128c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32zm0 128c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32zM192 128c0-8.8 7.2-16 16-16l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16zm0 128c0-8.8 7.2-16 16-16l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16zm0 128c0-8.8 7.2-16 16-16l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16z"/><path class="fa-primary" d="M64 112c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32zm0 128c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32zM80 352l32 0c8.8 0 16 7.2 16 16l0 32c0 8.8-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16l0-32c0-8.8 7.2-16 16-16z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M264.8 64C277.6 64 288 74.4 288 87.2c0 9.2-5.8 17.3-13.2 22.8c-11.6 8.7-18.8 20.7-18.8 34c0 26.5 28.7 48 64 48s64-21.5 64-48c0-13.3-7.2-25.3-18.8-34c-7.4-5.5-13.2-13.6-13.2-22.8C352 74.4 362.4 64 375.2 64L464 64c26.5 0 48 21.5 48 48l0 88.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2l0 88.8c0 26.5-21.5 48-48 48l-88.8 0c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2L176 448c-26.5 0-48-21.5-48-48l0-88.8c0-12.8-10.4-23.2-23.2-23.2c-9.2 0-17.3 5.8-22.8 13.2C73.3 312.8 61.3 320 48 320c-26.5 0-48-28.7-48-64s21.5-64 48-64c13.3 0 25.3 7.2 34 18.8c5.5 7.4 13.6 13.2 22.8 13.2c12.8 0 23.2-10.4 23.2-23.2l0-88.8c0-26.5 21.5-48 48-48l88.8 0z"/><path class="fa-primary" d=""/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2l56.8 0c26.5 0 48 21.5 48 48l0 56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2L384 464c0 26.5-21.5 48-48 48l-56.8 0c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2L48 512c-26.5 0-48-21.5-48-48L0 343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8L0 176c0-26.5 21.5-48 48-48l120.8 0c12.8 0 23.2-10.4 23.2-23.2z"/><path class="fa-primary" d=""/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
docs/material/overrides/.icons/aetherx/axd/puzzle.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M0 288L0 448c0 35.3 28.7 64 64 64l160 0 0-64c0-8.8-7.2-16-16-16l-16 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l16 0c8.8 0 16-7.2 16-16l0-64-64 0c-8.8 0-16-7.2-16-16l0-16c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 16c0 8.8-7.2 16-16 16L0 288zM304 16l0 48c0 8.8 7.2 16 16 16l16 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-16 0c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l36 0c6.6 0 12 5.4 12 12l0 4c0 17.7 14.3 32 32 32s32-14.3 32-32l0-4c0-6.6 5.4-12 12-12l52 0c8.8 0 16-7.2 16-16l0-128c0-35.3-28.7-64-64-64L320 0c-8.8 0-16 7.2-16 16z"/><path class="fa-primary" d="M0 288l64 0c8.8 0 16-7.2 16-16l0-16c0-17.7 14.3-32 32-32s32 14.3 32 32l0 16c0 8.8 7.2 16 16 16l64 0 0-68c0-6.6 5.4-12 12-12l4 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-4 0c-6.6 0-12-5.4-12-12l0-52c0-8.8-7.2-16-16-16L64 64C28.7 64 0 92.7 0 128L0 288zm224 0l0 64c0 8.8-7.2 16-16 16l-16 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l16 0c8.8 0 16 7.2 16 16l0 64 160 0c35.3 0 64-28.7 64-64l0-144c0-8.8-7.2-16-16-16l-48 0c-8.8 0-16 7.2-16 16l0 16c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-16c0-8.8-7.2-16-16-16l-64 0z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M3.4 273.7c-7.9 15.8-1.5 35 14.3 42.9L152.4 384 17.7 451.4C1.9 459.3-4.5 478.5 3.4 494.3C9 505.5 20.3 512 32 512c4.8 0 9.7-1.1 14.3-3.4L224 419.8l177.7 88.8c4.6 2.3 9.5 3.4 14.3 3.4c11.7 0 23-6.5 28.6-17.7c7.9-15.8 1.5-35-14.3-42.9L295.6 384l134.8-67.4c15.8-7.9 22.2-27.1 14.3-42.9C439 262.5 427.7 256 416 256c-4.8 0-9.7 1.1-14.3 3.4L224 348.2 46.3 259.4c-4.6-2.3-9.5-3.4-14.3-3.4c-11.7 0-23 6.5-28.6 17.7z"/><path class="fa-primary" d="M304 234.4c38.6-23 64-62.1 64-106.4C368 57.3 303.5 0 224 0S80 57.3 80 128c0 44.4 25.4 83.5 64 106.4l0 21.6c0 17.7 14.3 32 32 32l96 0c17.7 0 32-14.3 32-32l0-21.6zM136 144a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm144-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1006 B |
1
docs/material/overrides/.icons/aetherx/axd/tv.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M0 64C0 28.7 28.7 0 64 0L576 0c35.3 0 64 28.7 64 64l0 288c0 35.3-28.7 64-64 64L64 416c-35.3 0-64-28.7-64-64L0 64zm64 0l0 288 512 0 0-288L64 64zM96 480c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-384 0c-17.7 0-32-14.3-32-32z"/><path class="fa-primary" d="M64 64H576V352H64V64z"/></svg>
|
||||||
|
After Width: | Height: | Size: 617 B |
1
docs/material/overrides/.icons/aetherx/axs/clock.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120c.1-13.4 10.8-24 24-24c6.6 0 12.6 2.7 17 7c2.2 2.2 3.9 4.8 5.1 7.6c.6 1.4 1.1 2.9 1.4 4.5c.2 .8 .3 1.6 .4 2.4s.1 1.6 .1 2.5c0 41 0 82.1 0 123.2L365.3 300c6.9 4.6 10.7 12.2 10.7 20c0 4.6-1.3 9.2-4 13.3c-4.6 6.9-12.2 10.7-20 10.7c-4.6 0-9.2-1.3-13.3-4c-32-21.3-64-42.7-96-64C236 271.5 232 264 232 256c0-45.3 0-90.7 0-136z"/><path class="fa-primary" d="M256 96c-13.3 0-24 10.7-24 24l0 136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2 280 120c0-13.3-10.7-24-24-24z"/></svg>
|
||||||
|
After Width: | Height: | Size: 870 B |
1
docs/material/overrides/.icons/aetherx/axs/code.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M225.2 471.2c-4.9 17 5 34.7 22 39.6c2.9 .8 5.9 1.2 8.8 1.2c13.9 0 26.7-9.2 30.7-23.2l128-448c.8-2.9 1.2-5.9 1.2-8.8c0-13.9-9.2-26.7-23.2-30.8c-17-4.9-34.7 5-39.6 22l-128 448z"/><path class="fa-primary" d="M473.4 121.4c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>
|
||||||
|
After Width: | Height: | Size: 879 B |
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. --><defs><style>.fa-secondary{opacity:.4}</style></defs><path class="fa-secondary" d="M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2l56.8 0c26.5 0 48 21.5 48 48l0 56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2L384 464c0 26.5-21.5 48-48 48l-56.8 0c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2L48 512c-26.5 0-48-21.5-48-48L0 343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8L0 176c0-26.5 21.5-48 48-48l120.8 0c12.8 0 23.2-10.4 23.2-23.2z"/><path class="fa-primary" d=""/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -71,9 +71,9 @@ class clr():
|
|||||||
MAGENTA = '\033[35m'
|
MAGENTA = '\033[35m'
|
||||||
CYAN = '\033[36m'
|
CYAN = '\033[36m'
|
||||||
WHITE = '\033[37m'
|
WHITE = '\033[37m'
|
||||||
|
GREY = '\033[90m'
|
||||||
UNDERLINE = '\033[4m'
|
UNDERLINE = '\033[4m'
|
||||||
RESET = '\033[0m'
|
RESET = '\033[0m'
|
||||||
GREY = '\033[90m'
|
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Pages
|
# Pages
|
||||||
@@ -87,6 +87,8 @@ PAGE_CONVENTIONS = "about/conventions.md"
|
|||||||
|
|
||||||
# #
|
# #
|
||||||
# Hooks > on_page_markdown
|
# Hooks > on_page_markdown
|
||||||
|
#
|
||||||
|
# do not change this function name
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files: Files):
|
def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files: Files):
|
||||||
@@ -99,28 +101,28 @@ def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files:
|
|||||||
args = args.strip()
|
args = args.strip()
|
||||||
|
|
||||||
if type == "version":
|
if type == "version":
|
||||||
if args.startswith( "beta-" ):
|
if args.startswith( "development-" ):
|
||||||
return Version_Beta(args, page, files)
|
return Version_Development(args, page, files)
|
||||||
elif args.startswith( "stable-" ):
|
elif args.startswith( "stable-" ):
|
||||||
return Version_Stable( args, page, files )
|
return Version_Stable( args, page, files )
|
||||||
else:
|
else:
|
||||||
return Version( args, page, files )
|
return Version( args, page, files )
|
||||||
|
|
||||||
elif type == "backers": return Badge_Backers(page, files)
|
elif type == "control": return badgeControl(args, page, files)
|
||||||
elif type == "control": return Create_Control(args, page, files)
|
elif type == "flag": return badgeFlag(args, page, files)
|
||||||
elif type == "flag": return Create_Flag(args, page, files)
|
elif type == "option": return badgeOption(args)
|
||||||
elif type == "option": return Create_Option(args)
|
elif type == "setting": return badgeSetting(args)
|
||||||
elif type == "setting": return Create_Setting(args)
|
elif type == "backers": return badgeBackers(page, files)
|
||||||
elif type == "command": return Badge_Command(args, page, files)
|
elif type == "command": return badgeCommand(args, page, files)
|
||||||
elif type == "feature": return Badge_Feature(args, page, files)
|
elif type == "feature": return badgeFeature(args, page, files)
|
||||||
elif type == "plugin": return Badge_Plugin(args, page, files)
|
elif type == "plugin": return badgePlugin(args, page, files)
|
||||||
elif type == "extension": return Badge_Extension(args, page, files)
|
elif type == "markdown": return badgeMarkdown(args, page, files)
|
||||||
elif type == "3rdparty": return Badge_3rdparty(args, page, files)
|
elif type == "3rdparty": return badge3rdParty(args, page, files)
|
||||||
elif type == "example": return Badge_Example(args, page, files)
|
elif type == "example": return badgeExample(args, page, files)
|
||||||
elif type == "default":
|
elif type == "default":
|
||||||
if args == "none": return Badge_DefaultValue_None(page, files)
|
if args == "none": return badgeDefaultNone(page, files)
|
||||||
elif args == "computed": return Badge_DefaultValue_Computed(page, files)
|
elif args == "computed": return badgeDefaultVal(page, files)
|
||||||
else: return Badge_DefaultValue_Custom(args, page, files)
|
else: return badgeDefaultCustom(args, page, files)
|
||||||
|
|
||||||
# Otherwise, raise an error
|
# Otherwise, raise an error
|
||||||
raise RuntimeError( f"Error in shortcodes.yp - Specified an unknown shortcode: {type}" )
|
raise RuntimeError( f"Error in shortcodes.yp - Specified an unknown shortcode: {type}" )
|
||||||
@@ -135,31 +137,35 @@ def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files:
|
|||||||
# Create > Flag
|
# Create > Flag
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Create_Flag(args: str, page: Page, files: Files):
|
def badgeFlag(args: str, page: Page, files: Files):
|
||||||
type, *_ = args.split(" ", 1)
|
type, *_ = args.split(" ", 1)
|
||||||
if type == "experimental": return Badge_Flag_Experimental(page, files)
|
if type == "experimental": return badgeFlagExperimental(page, files)
|
||||||
elif type == "required": return Badge_Flag_Required(page, files)
|
elif type == "required": return badgeFlagRequired(page, files)
|
||||||
elif type == "customization": return Badge_Flag_Customization(page, files)
|
elif type == "customization": return badgeFlagCustomization(page, files)
|
||||||
elif type == "metadata": return Badge_Flag_Metadata(page, files)
|
elif type == "metadata": return badgeFlagMetadata(page, files)
|
||||||
elif type == "multiple": return Badge_Flag_Multiple_Instances(page, files)
|
elif type == "dangerous": return badgeFlagDangerous(page, files)
|
||||||
elif type == "setting": return Badge_Flag_Setting(page, files)
|
elif type == "multiple": return badgeFlagMultiInstances(page, files)
|
||||||
|
elif type == "setting": return badgeFlagSetting(page, files)
|
||||||
|
else: return badgeFlagDefault( page, files )
|
||||||
|
|
||||||
raise RuntimeError(f"Unknown type: {type}")
|
raise RuntimeError(f"Unknown type: {type}")
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Create > Controls
|
# Create > Controls
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Create_Control( args: str, page: Page, files: Files ):
|
def badgeControl( args: str, page: Page, files: Files ):
|
||||||
type, *_ = args.split( " ", 2 )
|
type, *_ = args.split( " ", 2 )
|
||||||
if type == "toggle": return icon_control_toggle( page, files )
|
if type == "toggle": return newControlToggle( page, files )
|
||||||
elif type == "toggle_on": return icon_control_toggle_on( page, files )
|
elif type == "toggle_on": return newControlToggleOn( page, files )
|
||||||
elif type == "toggle_off": return icon_control_toggle_off( page, files )
|
elif type == "toggle_off": return newControlToggleOff( page, files )
|
||||||
elif type == "textbox": return icon_control_textbox( page, files )
|
elif type == "textbox": return newControlTextbox( page, files )
|
||||||
elif type == "dropdown": return icon_control_dropdown( page, files )
|
elif type == "dropdown": return newControlDropdown( page, files )
|
||||||
elif type == "button": return icon_control_button( page, files )
|
elif type == "button": return newControlButton( page, files )
|
||||||
elif type == "slider": return icon_control_slider( page, files )
|
elif type == "slider": return newControlSlider( page, files )
|
||||||
elif type == "color": return icon_control_color( args, page, files )
|
elif type == "env": return newControlEnvVar( page, files )
|
||||||
else: return icon_control_default( page, files )
|
elif type == "color": return newControlColor( args, page, files )
|
||||||
|
else: return newControlDefault( page, files )
|
||||||
|
|
||||||
raise RuntimeError(f"Unknown type: {type}")
|
raise RuntimeError(f"Unknown type: {type}")
|
||||||
|
|
||||||
@@ -167,15 +173,19 @@ def Create_Control( args: str, page: Page, files: Files ):
|
|||||||
# Create > Option
|
# Create > Option
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Create_Option(type: str):
|
def badgeOption(type: str):
|
||||||
_, *_, name = re.split(r"[.:]", type)
|
_, *_, name = re.split(r"[.:]", type)
|
||||||
return f"[`{name}`](#+{type}){{ #+{type} }}\n\n"
|
return f"[`{name}`](#+{type}){{ #+{type} }}\n\n"
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Create > Setting
|
# Create > Setting
|
||||||
|
#
|
||||||
|
# #### <!-- md:setting example.setting.enabled -->
|
||||||
|
# <!-- md:version 1.0.0 -->
|
||||||
|
# <!-- md:default `true` -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Create_Setting(type: str):
|
def badgeSetting(type: str):
|
||||||
_, *_, name = re.split(r"[.*]", type)
|
_, *_, name = re.split(r"[.*]", type)
|
||||||
return f"`{name}` {{ #{type} }}\n\n[{type}]: #{type}\n\n"
|
return f"`{name}` {{ #{type} }}\n\n[{type}]: #{type}\n\n"
|
||||||
|
|
||||||
@@ -202,7 +212,7 @@ def _resolve(file: File, page: Page):
|
|||||||
# Create > Badge
|
# Create > Badge
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Create_Badge(icon: str, text: str = "", type: str = ""):
|
def badgeCreate(icon: str, text: str = "", type: str = ""):
|
||||||
classes = f"mdx-badge mdx-badge--{type}" if type else "mdx-badge"
|
classes = f"mdx-badge mdx-badge--{type}" if type else "mdx-badge"
|
||||||
return "".join([
|
return "".join([
|
||||||
f"<span class=\"{classes}\">",
|
f"<span class=\"{classes}\">",
|
||||||
@@ -215,7 +225,7 @@ def Create_Badge(icon: str, text: str = "", type: str = ""):
|
|||||||
# Badge > Color Palette
|
# Badge > Color Palette
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_ColorPalette(icon: str, text: str = "", type: str = ""):
|
def badgeColorPalette(icon: str, text: str = "", type: str = ""):
|
||||||
args = type.split( " " )
|
args = type.split( " " )
|
||||||
|
|
||||||
bg1_clr = "#000000"
|
bg1_clr = "#000000"
|
||||||
@@ -252,10 +262,10 @@ def Badge_ColorPalette(icon: str, text: str = "", type: str = ""):
|
|||||||
# <!-- md:sponsors -->
|
# <!-- md:sponsors -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Backers(page: Page, files: Files):
|
def badgeBackers(page: Page, files: Files):
|
||||||
icon = "material-heart"
|
icon = "material-heart"
|
||||||
href = _resolve_path(PAGE_BACKERS, page, files)
|
href = _resolve_path(PAGE_BACKERS, page, files)
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Backers only')",
|
icon = f"[:{icon}:]({href} 'Backers only')",
|
||||||
type = "heart"
|
type = "heart"
|
||||||
)
|
)
|
||||||
@@ -280,8 +290,8 @@ def Version( text: str, page: Page, files: Files ):
|
|||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Mkdocs Release')",
|
icon = f"[:{icon}:]({href} 'TVApp2 Release')",
|
||||||
text = f"[{text}]({_resolve_path(path, page, files)})" if spec else ""
|
text = f"[{text}]({_resolve_path(path, page, files)})" if spec else ""
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -295,7 +305,7 @@ def Version_Stable( text: str, page: Page, files: Files ):
|
|||||||
|
|
||||||
# Return badge
|
# Return badge
|
||||||
icon = "aetherx-axs-tag"
|
icon = "aetherx-axs-tag"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#version-beta", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#version-stable", page, files )
|
||||||
output = ""
|
output = ""
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
@@ -306,22 +316,22 @@ def Version_Stable( text: str, page: Page, files: Files ):
|
|||||||
else:
|
else:
|
||||||
output = f"Stable Release"
|
output = f"Stable Release"
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} '{output}' )",
|
icon = f"[:{icon}:]({href} '{output}' )",
|
||||||
text = f"[{spec}]({_resolve_path(path, page, files)})" if spec else ""
|
text = f"[{spec}]({_resolve_path(path, page, files)})" if spec else ""
|
||||||
)
|
)
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Badge > Version > Beta
|
# Badge > Version > Development
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Version_Beta( text: str, page: Page, files: Files ):
|
def Version_Development( text: str, page: Page, files: Files ):
|
||||||
spec = text.replace( "beta-", "" )
|
spec = text.replace( "development-", "" )
|
||||||
path = f"{PAGE_CHANGELOG}#{spec}"
|
path = f"{PAGE_CHANGELOG}#{spec}"
|
||||||
|
|
||||||
# Return badge
|
# Return badge
|
||||||
icon = "aetherx-axs-b"
|
icon = "aetherx-axs-code"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#version-beta", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#version-development", page, files )
|
||||||
output = ""
|
output = ""
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
@@ -330,9 +340,9 @@ def Version_Beta( text: str, page: Page, files: Files ):
|
|||||||
if spec:
|
if spec:
|
||||||
output = f"Requires version {spec}"
|
output = f"Requires version {spec}"
|
||||||
else:
|
else:
|
||||||
output = f"Beta Release"
|
output = f"Development Release"
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} '{output}' )",
|
icon = f"[:{icon}:]({href} '{output}' )",
|
||||||
text = f"[{text}]({_resolve_path(path, page, files)})" if spec else ""
|
text = f"[{text}]({_resolve_path(path, page, files)})" if spec else ""
|
||||||
)
|
)
|
||||||
@@ -344,13 +354,13 @@ def Version_Beta( text: str, page: Page, files: Files ):
|
|||||||
# <!-- md:feature -->
|
# <!-- md:feature -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Feature(text: str, page: Page, files: Files):
|
def badgeFeature(text: str, page: Page, files: Files):
|
||||||
icon = "material-toggle-switch"
|
icon = "material-toggle-switch"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#feature", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#feature", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Optional feature')",
|
icon = f"[:{icon}:]({href} 'Optional feature')",
|
||||||
text = text
|
text = text
|
||||||
)
|
)
|
||||||
@@ -364,32 +374,32 @@ def Badge_Feature(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:plugin [typeset] – built-in -->
|
# <!-- md:plugin [typeset] – built-in -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Plugin(text: str, page: Page, files: Files):
|
def badgePlugin(text: str, page: Page, files: Files):
|
||||||
icon = "material-floppy"
|
icon = "material-floppy"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#plugin", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#plugin", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Plugin')",
|
icon = f"[:{icon}:]({href} 'Plugin')",
|
||||||
text = text
|
text = text
|
||||||
)
|
)
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Create badge for extension
|
# Create badge for Markdown
|
||||||
#
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:extension [admonition][Admonition] -->
|
# <!-- md:markdown [admonition][Admonition] -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Extension(text: str, page: Page, files: Files):
|
def badgeMarkdown(text: str, page: Page, files: Files):
|
||||||
icon = "material-language-markdown"
|
icon = "material-language-markdown"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#extension", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#markdown", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Markdown extension')",
|
icon = f"[:{icon}:]({href} 'Markdown functionality')",
|
||||||
text = text
|
text = text
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -403,13 +413,13 @@ def Badge_Extension(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:3rdparty [mike] -->
|
# <!-- md:3rdparty [mike] -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_3rdparty(text: str, page: Page, files: Files):
|
def badge3rdParty(text: str, page: Page, files: Files):
|
||||||
icon = "material-package-variant"
|
icon = "material-package-variant"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#3rdparty", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#3rdparty", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Third-party utility')",
|
icon = f"[:{icon}:]({href} 'Third-party utility')",
|
||||||
text = text
|
text = text
|
||||||
)
|
)
|
||||||
@@ -433,30 +443,30 @@ def Badge_3rdparty(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:example my-example-file -->
|
# <!-- md:example my-example-file -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Example(text: str, page: Page, files: Files):
|
def badgeExample(text: str, page: Page, files: Files):
|
||||||
return "\n".join([
|
return "\n".join([
|
||||||
Badge_Example_Download_Zip(text, page, files),
|
badgeExampleDownloadZip(text, page, files),
|
||||||
Badge_Example_View(text, page, files)
|
badgeExampleView(text, page, files)
|
||||||
])
|
])
|
||||||
|
|
||||||
def Badge_Example_View(text: str, page: Page, files: Files):
|
def badgeExampleView(text: str, page: Page, files: Files):
|
||||||
icon = "material-folder-eye"
|
icon = "material-folder-eye"
|
||||||
href = f"https://github.com/TheBinaryNinja/tvapp2/{text}/"
|
href = f"https://github.com/TheBinaryNinja/tvapp2/{text}/"
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'View example')",
|
icon = f"[:{icon}:]({href} 'View example')",
|
||||||
type = "right"
|
type = "right"
|
||||||
)
|
)
|
||||||
|
|
||||||
def Badge_Example_Download_Zip(text: str, page: Page, files: Files):
|
def badgeExampleDownloadZip(text: str, page: Page, files: Files):
|
||||||
icon = "material-folder-download"
|
icon = "material-folder-download"
|
||||||
href = f"https://github.com/TheBinaryNinja/tvapp2/{text}.zip"
|
href = f"https://github.com/TheBinaryNinja/tvapp2/{text}.zip"
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Download example')",
|
icon = f"[:{icon}:]({href} 'Download example')",
|
||||||
text = f"[`.zip`]({href})",
|
text = f"[`.zip`]({href})",
|
||||||
type = "right"
|
type = "right"
|
||||||
@@ -471,15 +481,16 @@ def Badge_Example_Download_Zip(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:command `-s, --start` -->
|
# <!-- md:command `-s, --start` -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Command(text: str, page: Page, files: Files):
|
def badgeCommand(text: str, page: Page, files: Files):
|
||||||
icon = "material-console-line"
|
icon = "material-console-line"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#command", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#command", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Terminal / Console Command')",
|
icon = f"[:{icon}:]({href} 'Terminal / Console Command')",
|
||||||
text = text
|
text = text,
|
||||||
|
type = "command"
|
||||||
)
|
)
|
||||||
|
|
||||||
# #
|
# #
|
||||||
@@ -494,13 +505,13 @@ def Badge_Command(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:default none -->
|
# <!-- md:default none -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_DefaultValue_Custom(text: str, page: Page, files: Files):
|
def badgeDefaultCustom(text: str, page: Page, files: Files):
|
||||||
icon = "material-water"
|
icon = "material-water"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Default value')",
|
icon = f"[:{icon}:]({href} 'Default value')",
|
||||||
text = text
|
text = text
|
||||||
)
|
)
|
||||||
@@ -517,13 +528,13 @@ def Badge_DefaultValue_Custom(text: str, page: Page, files: Files):
|
|||||||
# <!-- md:default none -->
|
# <!-- md:default none -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_DefaultValue_None(page: Page, files: Files):
|
def badgeDefaultNone(page: Page, files: Files):
|
||||||
icon = "material-water-outline"
|
icon = "material-water-outline"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Default value is empty')"
|
icon = f"[:{icon}:]({href} 'Default value is empty')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -539,53 +550,127 @@ def Badge_DefaultValue_None(page: Page, files: Files):
|
|||||||
# <!-- md:default none -->
|
# <!-- md:default none -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_DefaultValue_Computed(page: Page, files: Files):
|
def badgeDefaultVal(page: Page, files: Files):
|
||||||
icon = "material-water-check"
|
icon = "material-water-check"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#default", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Default value is computed')"
|
icon = f"[:{icon}:]({href} 'Default value is computed')"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Badge > Flag > Default
|
||||||
|
#
|
||||||
|
# This symbol denotes that the specified item is a customizable setting
|
||||||
|
#
|
||||||
|
# MUST add an entry in conventions.md
|
||||||
|
#
|
||||||
|
# use the following tag in your md file:
|
||||||
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
|
# #
|
||||||
|
|
||||||
|
def badgeFlagDefault(page: Page, files: Files):
|
||||||
|
icon = "material-flag"
|
||||||
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#setting", page, files)
|
||||||
|
|
||||||
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
|
return badgeCreate(
|
||||||
|
icon = f"[:{icon}:]({href} 'Configurable Setting')"
|
||||||
|
)
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Badge > Flag > Metadata Property
|
# Badge > Flag > Metadata Property
|
||||||
#
|
#
|
||||||
# This symbol denotes that the item described is a metadata property, which can
|
# This symbol denotes that the item described is a metadata property, which can
|
||||||
# be used in Markdown documents as part of the front matter definition.
|
# be used in Markdown documents as part of the front matter definition.
|
||||||
#
|
#
|
||||||
|
# MUST add an entry in conventions.md
|
||||||
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag metadata -->
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Metadata(page: Page, files: Files):
|
def badgeFlagMetadata(page: Page, files: Files):
|
||||||
icon = "material-list-box-outline"
|
icon = "material-list-box-outline"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#metadata", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#metadata", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Metadata property')"
|
icon = f"[:{icon}:]({href} 'Metadata property')"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Badge > Flag > Dangerous
|
||||||
|
#
|
||||||
|
# This symbol denotes that the item or setting specified may be dangerous to change.
|
||||||
|
#
|
||||||
|
# MUST add an entry in conventions.md
|
||||||
|
#
|
||||||
|
# use the following tag in your md file:
|
||||||
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
|
# #
|
||||||
|
|
||||||
|
def badgeFlagDangerous(page: Page, files: Files):
|
||||||
|
icon = "aetherx-axd-skull-crossbones"
|
||||||
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#dangerous", page, files)
|
||||||
|
|
||||||
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
|
return badgeCreate(
|
||||||
|
icon = f"[:{icon}:]({href} 'This setting is dangerous to change')",
|
||||||
|
type = "dangerous"
|
||||||
|
)
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# Badge > Flag > Required
|
# Badge > Flag > Required
|
||||||
#
|
#
|
||||||
# Specifies that a value is required.
|
# Specifies that a value is required.
|
||||||
#
|
#
|
||||||
|
# MUST add an entry in conventions.md
|
||||||
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag required -->
|
# : <!-- md:flag --> Default
|
||||||
# <!-- md:flag required --> This option enables the content tabs
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Required(page: Page, files: Files):
|
def badgeFlagRequired(page: Page, files: Files):
|
||||||
icon = "material-alert"
|
icon = "material-alert"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#required", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#required", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Required value')"
|
icon = f"[:{icon}:]({href} 'Required value')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -594,17 +679,26 @@ def Badge_Flag_Required(page: Page, files: Files):
|
|||||||
#
|
#
|
||||||
# This symbol denotes that the item described is a customization which affects the overall look of the app.
|
# This symbol denotes that the item described is a customization which affects the overall look of the app.
|
||||||
#
|
#
|
||||||
|
# MUST add an entry in conventions.md
|
||||||
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag customization -->
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Customization(page: Page, files: Files):
|
def badgeFlagCustomization(page: Page, files: Files):
|
||||||
icon = "material-brush-variant"
|
icon = "material-brush-variant"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#customization", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#customization", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Customization')"
|
icon = f"[:{icon}:]({href} 'Customization')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -616,16 +710,23 @@ def Badge_Flag_Customization(page: Page, files: Files):
|
|||||||
# MUST add an entry in conventions.md
|
# MUST add an entry in conventions.md
|
||||||
#
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag experimental -->
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Experimental(page: Page, files: Files):
|
def badgeFlagExperimental(page: Page, files: Files):
|
||||||
icon = "material-flask-outline"
|
icon = "material-flask-outline"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#experimental", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#experimental", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Experimental')"
|
icon = f"[:{icon}:]({href} 'Experimental')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -638,16 +739,23 @@ def Badge_Flag_Experimental(page: Page, files: Files):
|
|||||||
# MUST add an entry in conventions.md
|
# MUST add an entry in conventions.md
|
||||||
#
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag multiple -->
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Multiple_Instances(page: Page, files: Files):
|
def badgeFlagMultiInstances(page: Page, files: Files):
|
||||||
icon = "material-inbox-multiple"
|
icon = "material-inbox-multiple"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#multiple-instances", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#multiple-instances", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Multiple instances')"
|
icon = f"[:{icon}:]({href} 'Multiple instances')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -659,16 +767,23 @@ def Badge_Flag_Multiple_Instances(page: Page, files: Files):
|
|||||||
# MUST add an entry in conventions.md
|
# MUST add an entry in conventions.md
|
||||||
#
|
#
|
||||||
# use the following tag in your md file:
|
# use the following tag in your md file:
|
||||||
# <!-- md:flag setting -->
|
# : <!-- md:flag --> Default
|
||||||
|
# : <!-- md:flag experimental --> Experimental
|
||||||
|
# : <!-- md:flag required --> Required
|
||||||
|
# : <!-- md:flag customization --> Customization
|
||||||
|
# : <!-- md:flag metadata --> Metadata
|
||||||
|
# : <!-- md:flag dangerous --> Dangerous
|
||||||
|
# : <!-- md:flag multiple --> Multiple
|
||||||
|
# : <!-- md:flag setting --> Setting
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def Badge_Flag_Setting(page: Page, files: Files):
|
def badgeFlagSetting(page: Page, files: Files):
|
||||||
icon = "material-cog"
|
icon = "material-cog"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#setting", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#setting", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Configurable Setting')"
|
icon = f"[:{icon}:]({href} 'Configurable Setting')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -681,13 +796,13 @@ def Badge_Flag_Setting(page: Page, files: Files):
|
|||||||
# <!-- md:control -->
|
# <!-- md:control -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_default( page: Page, files: Files ):
|
def newControlDefault( page: Page, files: Files ):
|
||||||
icon = "aetherx-axs-hand-pointer"
|
icon = "aetherx-axs-hand-pointer"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Textbox')"
|
icon = f"[:{icon}:]({href} 'Type: Textbox')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -698,13 +813,13 @@ def icon_control_default( page: Page, files: Files ):
|
|||||||
# <!-- md:control textbox -->
|
# <!-- md:control textbox -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_textbox( page: Page, files: Files ):
|
def newControlTextbox( page: Page, files: Files ):
|
||||||
icon = "aetherx-axs-input-text"
|
icon = "aetherx-axs-input-text"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Textbox')"
|
icon = f"[:{icon}:]({href} 'Type: Textbox')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -717,33 +832,33 @@ def icon_control_textbox( page: Page, files: Files ):
|
|||||||
# <!-- md:control toggle_off --> `Disabled`
|
# <!-- md:control toggle_off --> `Disabled`
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_toggle( page: Page, files: Files ):
|
def newControlToggle( page: Page, files: Files ):
|
||||||
icon = "aetherx-axs-toggle-large-on"
|
icon = "aetherx-axs-toggle-large-on"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Toggle Switch')"
|
icon = f"[:{icon}:]({href} 'Type: Toggle Switch')"
|
||||||
)
|
)
|
||||||
|
|
||||||
def icon_control_toggle_on( page: Page, files: Files ):
|
def newControlToggleOn( page: Page, files: Files ):
|
||||||
icon = "aetherx-axd-toggle-on"
|
icon = "aetherx-axd-toggle-on"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Toggle: Enabled')"
|
icon = f"[:{icon}:]({href} 'Toggle: Enabled')"
|
||||||
)
|
)
|
||||||
|
|
||||||
def icon_control_toggle_off( page: Page, files: Files ):
|
def newControlToggleOff( page: Page, files: Files ):
|
||||||
icon = "aetherx-axd-toggle-off"
|
icon = "aetherx-axd-toggle-off"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Toggle: Disabled')"
|
icon = f"[:{icon}:]({href} 'Toggle: Disabled')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -754,13 +869,13 @@ def icon_control_toggle_off( page: Page, files: Files ):
|
|||||||
# <!-- md:control dropdown -->
|
# <!-- md:control dropdown -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_dropdown( page: Page, files: Files ):
|
def newControlDropdown( page: Page, files: Files ):
|
||||||
icon = "aetherx-axs-square-caret-down"
|
icon = "aetherx-axs-square-caret-down"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files)
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Dropdown')"
|
icon = f"[:{icon}:]({href} 'Type: Dropdown')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -771,13 +886,13 @@ def icon_control_dropdown( page: Page, files: Files ):
|
|||||||
# <!-- md:control button -->
|
# <!-- md:control button -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_button( page: Page, files: Files ):
|
def newControlButton( page: Page, files: Files ):
|
||||||
icon = "material-button-pointer"
|
icon = "material-button-pointer"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Button')"
|
icon = f"[:{icon}:]({href} 'Type: Button')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -788,13 +903,13 @@ def icon_control_button( page: Page, files: Files ):
|
|||||||
# <!-- md:control slider -->
|
# <!-- md:control slider -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_slider( page: Page, files: Files ):
|
def newControlSlider( page: Page, files: Files ):
|
||||||
icon = "aetherx-axd-sliders-simple"
|
icon = "aetherx-axd-sliders-simple"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Create_Badge(
|
return badgeCreate(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Slider')"
|
icon = f"[:{icon}:]({href} 'Type: Slider')"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -805,13 +920,31 @@ def icon_control_slider( page: Page, files: Files ):
|
|||||||
# <!-- md:control color #E5E5E5 #121315 -->
|
# <!-- md:control color #E5E5E5 #121315 -->
|
||||||
# #
|
# #
|
||||||
|
|
||||||
def icon_control_color( text: str, page: Page, files: Files ):
|
def newControlColor( text: str, page: Page, files: Files ):
|
||||||
icon = "aetherx-axs-palette"
|
icon = "aetherx-axs-palette"
|
||||||
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
return Badge_ColorPalette(
|
return badgeColorPalette(
|
||||||
icon = f"[:{icon}:]({href} 'Type: Color Wheel')",
|
icon = f"[:{icon}:]({href} 'Type: Color Wheel')",
|
||||||
type = text
|
type = text
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Icon : Control : Env Variable
|
||||||
|
#
|
||||||
|
# use the following tag in your md file:
|
||||||
|
# <!-- md:control slider -->
|
||||||
|
# #
|
||||||
|
|
||||||
|
def newControlEnvVar( page: Page, files: Files ):
|
||||||
|
icon = "aetherx-axd-puzzle-piece"
|
||||||
|
href = _resolve_path( f"{PAGE_CONVENTIONS}#control", page, files )
|
||||||
|
|
||||||
|
print(clr.MAGENTA + 'VERBOSE - ' + clr.WHITE + ' Running ' + clr.YELLOW + inspect.stack()[0][3] + clr.WHITE + ' for page ' + clr.GREY + str(href) + clr.WHITE )
|
||||||
|
|
||||||
|
return badgeCreate(
|
||||||
|
icon = f"[:{icon}:]({href} 'Type: Environment Variable')",
|
||||||
|
type = "env"
|
||||||
|
)
|
||||||
|
|||||||
120
docs/mkdocs.yml
@@ -1,8 +1,32 @@
|
|||||||
|
# #
|
||||||
|
# Mkdocs Config
|
||||||
|
#
|
||||||
|
# @notes this documentation requires the following plugins to be installed:
|
||||||
|
# pip install mkdocs
|
||||||
|
# pip install mkdocs-material
|
||||||
|
# pip install mike
|
||||||
|
# pip install mkdocs-git-committers-plugin-2
|
||||||
|
# pip install mkdocs-encryptcontent-plugin
|
||||||
|
# pip install mkdocs-embed-external-markdown
|
||||||
|
# pip install mkdocs-redirects mkdocs-glightbox pymdown-extensions mkdocs-git-revision-date-localized-plugin mkdocs-git-authors-plugin mkdocs-link-embeds-plugin
|
||||||
|
# cd docs
|
||||||
|
# mkdocs build
|
||||||
|
#
|
||||||
|
# @update use the following commands to update mkdocs and the mkdocs-material theme:
|
||||||
|
# pip install --upgrade mkdocs
|
||||||
|
# pip install --upgrade --force-reinstall mkdocs-material
|
||||||
|
# #
|
||||||
|
|
||||||
site_name: !!python/object/apply:os.getenv ["DOCS_NAME", "TVApp2"]
|
site_name: !!python/object/apply:os.getenv ["DOCS_NAME", "TVApp2"]
|
||||||
repo_url: https://github.com/TheBinaryNinja/tvapp2
|
repo_url: https://github.com/TheBinaryNinja/tvapp2
|
||||||
repo_name: TheBinaryNinja/tvapp2
|
repo_name: TheBinaryNinja/tvapp2
|
||||||
edit_uri: edit/main/docs/docs/
|
edit_uri: edit/main/docs/docs/
|
||||||
site_author: TheBinaryNinja
|
site_author: TheBinaryNinja
|
||||||
|
site_url: 'https://thebinaryninja.github.io/tvapp2/'
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Markdown Extensions
|
||||||
|
# #
|
||||||
|
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- markdown.extensions.extra
|
- markdown.extensions.extra
|
||||||
@@ -62,11 +86,15 @@ markdown_extensions:
|
|||||||
- pymdownx.keys
|
- pymdownx.keys
|
||||||
- pymdownx.snippets:
|
- pymdownx.snippets:
|
||||||
auto_append:
|
auto_append:
|
||||||
- includes/abbreviations.md
|
- docs/includes/abbreviations.md
|
||||||
url_download: true
|
url_download: true
|
||||||
- pymdownx.arithmatex:
|
- pymdownx.arithmatex:
|
||||||
generic: true
|
generic: true
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Theme
|
||||||
|
# #
|
||||||
|
|
||||||
theme:
|
theme:
|
||||||
highlightjs: true
|
highlightjs: true
|
||||||
hljs_languages:
|
hljs_languages:
|
||||||
@@ -74,6 +102,12 @@ theme:
|
|||||||
- yml
|
- yml
|
||||||
- rust
|
- rust
|
||||||
- markdown
|
- markdown
|
||||||
|
- json
|
||||||
|
- batch
|
||||||
|
- typescript
|
||||||
|
- javascript
|
||||||
|
- lua
|
||||||
|
- python
|
||||||
icon:
|
icon:
|
||||||
note: fontawesome/solid/note-sticky
|
note: fontawesome/solid/note-sticky
|
||||||
abstract: fontawesome/solid/book
|
abstract: fontawesome/solid/book
|
||||||
@@ -88,6 +122,7 @@ theme:
|
|||||||
example: fontawesome/solid/flask
|
example: fontawesome/solid/flask
|
||||||
quote: fontawesome/solid/quote-left
|
quote: fontawesome/solid/quote-left
|
||||||
annotation: material/arrow-right-circle
|
annotation: material/arrow-right-circle
|
||||||
|
hi: aetherx/axs/clock
|
||||||
tag:
|
tag:
|
||||||
html: fontawesome/brands/html5
|
html: fontawesome/brands/html5
|
||||||
js: fontawesome/brands/js
|
js: fontawesome/brands/js
|
||||||
@@ -116,8 +151,10 @@ theme:
|
|||||||
code: Roboto Mono
|
code: Roboto Mono
|
||||||
favicon: assets/favicon.png
|
favicon: assets/favicon.png
|
||||||
icon:
|
icon:
|
||||||
logo: logo
|
logo: /aetherx/axd/tv
|
||||||
features:
|
features:
|
||||||
|
- navigation.tabs
|
||||||
|
- navigation.sections
|
||||||
- announce.dismiss
|
- announce.dismiss
|
||||||
- toc.follow
|
- toc.follow
|
||||||
- content.action.edit
|
- content.action.edit
|
||||||
@@ -138,33 +175,82 @@ theme:
|
|||||||
- navigation.tracking
|
- navigation.tracking
|
||||||
- navigation.path
|
- navigation.path
|
||||||
- navigation.top
|
- navigation.top
|
||||||
|
# #
|
||||||
|
# Section › Hooks
|
||||||
|
# #
|
||||||
|
|
||||||
# Hooks
|
|
||||||
hooks:
|
hooks:
|
||||||
- material/overrides/hooks/shortcodes.py
|
- material/overrides/hooks/shortcodes.py
|
||||||
- material/overrides/hooks/translations.py
|
- material/overrides/hooks/translations.py
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Extra › CSS
|
||||||
|
# #
|
||||||
|
|
||||||
extra_css:
|
extra_css:
|
||||||
- stylesheets/extra.css?v1.000
|
- stylesheets/extra.css?v1.000
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Extra › Javascript
|
||||||
|
# #
|
||||||
|
|
||||||
extra_javascript:
|
extra_javascript:
|
||||||
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
|
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
|
||||||
- javascripts/tablesort.js
|
- javascripts/tablesort.js
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Extras
|
||||||
|
# #
|
||||||
|
|
||||||
|
extra:
|
||||||
|
social:
|
||||||
|
- icon: fontawesome/brands/github
|
||||||
|
link: https://github.com/TheBinaryNinja/tvapp2
|
||||||
|
- icon: fontawesome/brands/discord
|
||||||
|
link: https://discord.gg/gTze6hRe
|
||||||
|
tags:
|
||||||
|
HTML5: html
|
||||||
|
JavaScript: js
|
||||||
|
CSS: css
|
||||||
|
generator: false
|
||||||
|
version:
|
||||||
|
default: latest
|
||||||
|
provider: mike
|
||||||
|
alias: true
|
||||||
|
consent:
|
||||||
|
title: Cookie Consent
|
||||||
|
description: >-
|
||||||
|
We use cookies to recognize your repeated visits and preferences, as well
|
||||||
|
as to measure the effectiveness of our documentation and whether users
|
||||||
|
find what they're searching for. With your consent, you're helping us to
|
||||||
|
make our documentation better.
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Navigation
|
||||||
|
# #
|
||||||
|
|
||||||
nav:
|
nav:
|
||||||
- Home: 'home.md'
|
- Home: 'home.md'
|
||||||
- About TVApp2: 'about_tvapp2.md'
|
|
||||||
- About:
|
- About:
|
||||||
|
- What Is TVApp2: 'about/what_is_tvapp.md'
|
||||||
|
- Contributing: 'about/contributing.md'
|
||||||
- License: 'about/license.md'
|
- License: 'about/license.md'
|
||||||
|
- Wiki:
|
||||||
- Conventions: 'about/conventions.md'
|
- Conventions: 'about/conventions.md'
|
||||||
- Tags: 'about/tags.md'
|
- Tags: 'about/tags.md'
|
||||||
|
- Config:
|
||||||
|
- Environment Variables: 'config/env.md'
|
||||||
|
- Volumes: 'config/volumes.md'
|
||||||
- Changelog: 'about/changelog.md'
|
- Changelog: 'about/changelog.md'
|
||||||
- Backers: 'backers/index.md'
|
- Discord: 'https://discord.gg/gTze6hRe'
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Section › Plugins
|
||||||
|
# #
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- search:
|
- search:
|
||||||
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
|
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
|
||||||
- tags:
|
|
||||||
tags_file: about/tags.md
|
|
||||||
- group:
|
- group:
|
||||||
plugins:
|
plugins:
|
||||||
- optimize
|
- optimize
|
||||||
@@ -235,28 +321,12 @@ plugins:
|
|||||||
image_default: "https://github.com/Aetherinox/mkdocs-link-embeds/assets/118329232/c0298d98-0910-4235-a88f-0c3e2f704ba7"
|
image_default: "https://github.com/Aetherinox/mkdocs-link-embeds/assets/118329232/c0298d98-0910-4235-a88f-0c3e2f704ba7"
|
||||||
image_disabled: false
|
image_disabled: false
|
||||||
favicon_default: "https://github.com/Aetherinox/mkdocs-link-embeds/assets/118329232/b37da9c6-6f17-4c3f-9c94-c346a6f31bfa"
|
favicon_default: "https://github.com/Aetherinox/mkdocs-link-embeds/assets/118329232/b37da9c6-6f17-4c3f-9c94-c346a6f31bfa"
|
||||||
favicon_disabled: true
|
favicon_disabled: false
|
||||||
favicon_size: 25
|
favicon_size: 25
|
||||||
target: "blank"
|
target: "blank"
|
||||||
accent: "FFFFFF1A"
|
accent: "FFFFFF1A"
|
||||||
verbose: true
|
verbose: true
|
||||||
|
- external-markdown
|
||||||
extra:
|
|
||||||
tags:
|
|
||||||
HTML5: html
|
|
||||||
JavaScript: js
|
|
||||||
CSS: css
|
|
||||||
generator: false
|
|
||||||
version:
|
|
||||||
default: stable
|
|
||||||
provider: mike
|
|
||||||
consent:
|
|
||||||
title: Cookie Consent
|
|
||||||
description: >-
|
|
||||||
We use cookies to recognize your repeated visits and preferences, as well
|
|
||||||
as to measure the effectiveness of our documentation and whether users
|
|
||||||
find what they're searching for. With your consent, you're helping us to
|
|
||||||
make our documentation better.
|
|
||||||
|
|
||||||
copyright: >
|
copyright: >
|
||||||
Copyright © 2025 - BinaryNinja
|
Copyright © 2025 - BinaryNinja
|
||||||
|
|||||||
@@ -6,15 +6,19 @@ MODE con:cols=125 lines=120
|
|||||||
MODE 125,40
|
MODE 125,40
|
||||||
GOTO comment_end
|
GOTO comment_end
|
||||||
|
|
||||||
Starts up mkdocs from a windows system.
|
@usage Starts up mkdocs from a windows system.
|
||||||
Ensure you have defined `GH_TOKEN` or the git-committers plugin will rate limit you.
|
Ensure you have defined `GH_TOKEN` or the git-committers plugin will rate limit you.
|
||||||
|
|
||||||
setx /m GH_TOKEN "github_pat_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
setx /m GH_TOKEN "github_pat_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
||||||
|
|
||||||
If using a Github Workflow, create a new secret in the repo settings named `GH_TOKEN`
|
If using a Github Workflow, create a new secret in the repo settings named `GH_TOKEN`
|
||||||
and give it your Github fine-grained personal access token.
|
and give it your Github fine-grained personal access token.
|
||||||
|
|
||||||
The token variable is defined in mkdocs.yml
|
The token variable is defined in mkdocs.yml
|
||||||
|
|
||||||
|
@update use the following commands to update mkdocs and the mkdocs-material theme:
|
||||||
|
pip install --upgrade mkdocs
|
||||||
|
pip install --upgrade --force-reinstall mkdocs-material
|
||||||
|
|
||||||
:comment_end
|
:comment_end
|
||||||
|
|
||||||
@@ -30,28 +34,33 @@ set dir_home=%~dp0
|
|||||||
:: define: env variable
|
:: define: env variable
|
||||||
:: #
|
:: #
|
||||||
|
|
||||||
set TOKEN=%GH_TOKEN2%
|
echo ------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
echo --------------------------------------------------------------------------------
|
|
||||||
echo Mkdocs Launcher
|
echo Mkdocs Launcher
|
||||||
echo --------------------------------------------------------------------------------
|
echo ------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
IF [!TOKEN!]==[] (
|
|
||||||
echo --------------------------------------------------------------------------------
|
|
||||||
echo GH_TOKEN not defined. Open %0%
|
|
||||||
echo Create a new one at https://github.com/settings/personal-access-tokens
|
|
||||||
echo --------------------------------------------------------------------------------
|
|
||||||
set /P TOKEN= Enter Github Personal Access Token (fine-grained):
|
|
||||||
|
|
||||||
|
IF "!GH_TOKEN!"=="" (
|
||||||
|
echo GH_TOKEN not defined.
|
||||||
|
echo Open %0%
|
||||||
|
echo Create a new one at:
|
||||||
|
echo https://github.com/settings/personal-access-tokens
|
||||||
|
echo ------------------------------------------------------------------------------------------------
|
||||||
|
set /p TOKEN=" Enter Github Personal Access Token (fine-grained): "
|
||||||
)
|
)
|
||||||
|
|
||||||
echo GH_TOKEN: !TOKEN!
|
echo GH_TOKEN: !GH_TOKEN!
|
||||||
echo.
|
echo.
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
echo Creating environment variable GH_TOKEN
|
||||||
|
setx GH_TOKEN "!GH_TOKEN!"
|
||||||
|
|
||||||
|
timeout 2 > NUL
|
||||||
|
|
||||||
:: #
|
:: #
|
||||||
:: start mkdocs
|
:: start mkdocs
|
||||||
:: #
|
:: #
|
||||||
|
|
||||||
echo Starting mkdocs ...
|
echo Starting mkdocs ...
|
||||||
start cmd /k "mkdocs serve --clean"
|
start cmd /k "mkdocs serve --clean"
|
||||||
|
|
||||||
|
timeout 5 > NUL
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
#!/usr/bin/with-contenv sh
|
#!/usr/bin/with-contenv sh
|
||||||
|
|
||||||
|
# #
|
||||||
|
# Store env variables in s6
|
||||||
|
# #
|
||||||
|
|
||||||
|
ip_gateway=$(/sbin/ip route|awk '/default/ { print $3 }')
|
||||||
|
ip_container=$(ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1')
|
||||||
|
|
||||||
|
printf "$ip_gateway" > /var/run/s6/container_environment/IP_GATEWAY
|
||||||
|
printf "$ip_container" > /var/run/s6/container_environment/IP_CONTAINER
|
||||||
|
|
||||||
|
export IP_GATEWAY=$ip_gateway
|
||||||
|
export IP_GATEWAY=$ip_container
|
||||||
|
|
||||||
# #
|
# #
|
||||||
# install and startup for tvapp2
|
# install and startup for tvapp2
|
||||||
# #
|
# #
|
||||||
@@ -9,4 +22,3 @@ rm -rf ${DIR_BUILD}/*
|
|||||||
cd ${DIR_RUN}
|
cd ${DIR_RUN}
|
||||||
npm install --omit=dev
|
npm install --omit=dev
|
||||||
npm start
|
npm start
|
||||||
|
|
||||||
|
|||||||
@@ -58,17 +58,20 @@ const compat = new FlatCompat({
|
|||||||
|
|
||||||
export default
|
export default
|
||||||
[
|
[
|
||||||
...compat.extends('eslint:recommended'),
|
|
||||||
{
|
{
|
||||||
ignores: [
|
ignores: [
|
||||||
'coverage/**',
|
'coverage/**',
|
||||||
'node_modules/**',
|
'node_modules/**',
|
||||||
'**/node_modules/**',
|
|
||||||
'**/dist/**/*',
|
'**/dist/**/*',
|
||||||
'**/__tmp__/**/*',
|
'**/__tmp__/**/*',
|
||||||
'eslint.config.cjs'
|
'eslint.config.mjs',
|
||||||
],
|
'eslint.config.cjs',
|
||||||
files: ['index.js'],
|
"root.js",
|
||||||
|
"www/**/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
...compat.extends('eslint:recommended'),
|
||||||
|
{
|
||||||
plugins: {
|
plugins: {
|
||||||
'n': pluginNode,
|
'n': pluginNode,
|
||||||
'import': pluginImport,
|
'import': pluginImport,
|
||||||
@@ -266,17 +269,5 @@ export default
|
|||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
},
|
|
||||||
{
|
|
||||||
files: ['root.js'],
|
|
||||||
languageOptions: {
|
|
||||||
sourceType: 'module',
|
|
||||||
ecmaVersion: 'latest',
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
'no-console': 'off',
|
|
||||||
'no-undef': 'off',
|
|
||||||
'no-var': 'off'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
335
tvapp2/index.js
@@ -54,13 +54,13 @@ chalk.level = 3;
|
|||||||
let FILE_URL;
|
let FILE_URL;
|
||||||
let FILE_M3U;
|
let FILE_M3U;
|
||||||
let FILE_XML;
|
let FILE_XML;
|
||||||
let FILE_TAR;
|
let FILE_GZP;
|
||||||
let FILE_M3U_SIZE = 0;
|
let FILE_M3U_SIZE = 0;
|
||||||
let FILE_XML_SIZE = 0;
|
let FILE_XML_SIZE = 0;
|
||||||
let FILE_TAR_SIZE = 0;
|
let FILE_GZP_SIZE = 0;
|
||||||
let FILE_M3U_MODIFIED = 0;
|
let FILE_M3U_MODIFIED = 0;
|
||||||
let FILE_XML_MODIFIED = 0;
|
let FILE_XML_MODIFIED = 0;
|
||||||
let FILE_TAR_MODIFIED = 0;
|
let FILE_GZP_MODIFIED = 0;
|
||||||
const FOLDER_WWW = 'www';
|
const FOLDER_WWW = 'www';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -69,9 +69,11 @@ const FOLDER_WWW = 'www';
|
|||||||
|
|
||||||
const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja';
|
const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja';
|
||||||
const envStreamQuality = process.env.STREAM_QUALITY || 'hd';
|
const envStreamQuality = process.env.STREAM_QUALITY || 'hd';
|
||||||
const envFileM3U = process.env.FILE_PLAYLIST || 'playlist.m3u8';
|
const envFileURL = process.env.FILE_URL || 'urls.txt';
|
||||||
|
const envFileM3U = process.env.FILE_M3U || 'playlist.m3u8';
|
||||||
const envFileXML = process.env.FILE_EPG || 'xmltv.xml';
|
const envFileXML = process.env.FILE_EPG || 'xmltv.xml';
|
||||||
const envFileTAR = process.env.FILE_TAR || 'xmltv.xml.gz';
|
const envFileGZP = process.env.FILE_GZP || 'xmltv.xml.gz';
|
||||||
|
const envWebEncoding = process.env.WEB_ENCODING || 'deflate, br';
|
||||||
const LOG_LEVEL = process.env.LOG_LEVEL || 10;
|
const LOG_LEVEL = process.env.LOG_LEVEL || 10;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -102,11 +104,24 @@ const USERAGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
|
|||||||
http://127.0.0.1:4124/channel
|
http://127.0.0.1:4124/channel
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const subdomainGZ = [ 'gzip', 'gz' ];
|
const subdomainRestart = [ 'restart', 'sync', 'resync' ];
|
||||||
|
const subdomainGZP = [ 'gzip', 'gz' ];
|
||||||
const subdomainM3U = [ 'playlist', 'm3u', 'm3u8' ];
|
const subdomainM3U = [ 'playlist', 'm3u', 'm3u8' ];
|
||||||
const subdomainEPG = [ 'guide', 'epg', 'xml' ];
|
const subdomainEPG = [ 'guide', 'epg', 'xml' ];
|
||||||
const subdomainKey = [ 'key', 'keys' ];
|
const subdomainKey = [ 'key', 'keys' ];
|
||||||
const subdomainChan = [ 'channels', 'channel' ];
|
const subdomainChan = [ 'channels', 'channel' ];
|
||||||
|
const subdomainHealth = [ 'api/status', 'api/health' ];
|
||||||
|
|
||||||
|
/*
|
||||||
|
Container Information
|
||||||
|
|
||||||
|
these environment variables are defined from the s6-overlay layer of the docker image
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fileIpGateway = '/var/run/s6/container_environment/IP_GATEWAY';
|
||||||
|
const fileIpContainer = '/var/run/s6/container_environment/IP_CONTAINER';
|
||||||
|
const envIpGateway = fs.existsSync( fileIpGateway ) ? fs.readFileSync( fileIpGateway, 'utf8' ) : `0.0.0.0`;
|
||||||
|
const envIpContainer = fs.existsSync( fileIpContainer ) ? fs.readFileSync( fileIpContainer, 'utf8' ) : `0.0.0.0`;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Define > Logs
|
Define > Logs
|
||||||
@@ -179,13 +194,13 @@ class Log
|
|||||||
static warn( ...msg )
|
static warn( ...msg )
|
||||||
{
|
{
|
||||||
if ( LOG_LEVEL >= 2 )
|
if ( LOG_LEVEL >= 2 )
|
||||||
console.warn( chalk.white.bgYellow.bold( ` ${ name } ` ), chalk.white( `→` ), this.now(), chalk.yellow( msg.join( ' ' ) ) );
|
console.warn( chalk.white.bgYellow.bold( ` ${ name } ` ), chalk.white( `→` ), this.now(), chalk.yellowBright( msg.join( ' ' ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
static error( ...msg )
|
static error( ...msg )
|
||||||
{
|
{
|
||||||
if ( LOG_LEVEL >= 1 )
|
if ( LOG_LEVEL >= 1 )
|
||||||
console.error( chalk.white.bgRedBright.bold( ` ${ name } ` ), chalk.white( `→` ), this.now(), chalk.red( msg.join( ' ' ) ) );
|
console.error( chalk.white.bgRedBright.bold( ` ${ name } ` ), chalk.white( `→` ), this.now(), chalk.redBright( msg.join( ' ' ) ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,19 +212,21 @@ if ( process.pkg )
|
|||||||
{
|
{
|
||||||
Log.info( `Processing Package` );
|
Log.info( `Processing Package` );
|
||||||
const basePath = path.dirname( process.execPath );
|
const basePath = path.dirname( process.execPath );
|
||||||
FILE_URL = path.join( basePath, 'urls.txt' );
|
|
||||||
FILE_M3U = path.join( basePath, 'formatted.dat' );
|
FILE_URL = path.join( basePath, FOLDER_WWW, `${ envFileURL }` );
|
||||||
FILE_XML = path.join( basePath, `${ envFileXML }` );
|
FILE_M3U = path.join( basePath, FOLDER_WWW, `${ envFileM3U }` );
|
||||||
|
FILE_XML = path.join( basePath, FOLDER_WWW, `${ envFileXML }` );
|
||||||
FILE_XML.length;
|
FILE_XML.length;
|
||||||
FILE_TAR = path.join( basePath, `${ envFileTAR }` );
|
FILE_GZP = path.join( basePath, FOLDER_WWW, `${ envFileGZP }` );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Log.info( `Processing Locals` );
|
Log.info( `Processing Locals` );
|
||||||
FILE_URL = path.resolve( __dirname, 'urls.txt' );
|
|
||||||
FILE_M3U = path.resolve( __dirname, 'formatted.dat' );
|
FILE_URL = path.resolve( __dirname, FOLDER_WWW, `${ envFileURL }` );
|
||||||
FILE_XML = path.resolve( __dirname, `${ envFileXML }` );
|
FILE_M3U = path.resolve( __dirname, FOLDER_WWW, `${ envFileM3U }` );
|
||||||
FILE_TAR = path.resolve( __dirname, `${ envFileTAR }` );
|
FILE_XML = path.resolve( __dirname, FOLDER_WWW, `${ envFileXML }` );
|
||||||
|
FILE_GZP = path.resolve( __dirname, FOLDER_WWW, `${ envFileGZP }` );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -265,7 +282,7 @@ const semaphore = new Semaphore( 5 );
|
|||||||
|
|
||||||
async function downloadFile( url, filePath )
|
async function downloadFile( url, filePath )
|
||||||
{
|
{
|
||||||
Log.info( `Fetching`, chalk.white( `→` ), chalk.grey( `${ url }` ) );
|
Log.info( `Fetching`, chalk.white( `→` ), chalk.grey( `Downloading external file` ), chalk.blueBright( `${ url }` ), chalk.grey( `to` ), chalk.blueBright( `${ filePath }` ) );
|
||||||
|
|
||||||
return new Promise( ( resolve, reject ) =>
|
return new Promise( ( resolve, reject ) =>
|
||||||
{
|
{
|
||||||
@@ -283,7 +300,7 @@ async function downloadFile( url, filePath )
|
|||||||
response.pipe( file );
|
response.pipe( file );
|
||||||
file.on( 'finish', () =>
|
file.on( 'finish', () =>
|
||||||
{
|
{
|
||||||
Log.ok( `Received`, chalk.white( `→` ), `${ filePath }` );
|
Log.ok( `Received`, chalk.white( `→` ), chalk.grey( `Successfully wrote data to file` ), chalk.blueBright( `${ filePath }` ) );
|
||||||
file.close( () => resolve( true ) );
|
file.close( () => resolve( true ) );
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
@@ -412,23 +429,23 @@ async function createGzip( )
|
|||||||
|
|
||||||
zlib.gzip( buf, ( err, buf ) =>
|
zlib.gzip( buf, ( err, buf ) =>
|
||||||
{
|
{
|
||||||
Log.debug( `createGzip[zlib.gzip]`, chalk.white( `→` ), chalk.grey( `${ envFileXML }` ), chalk.white( `→` ), chalk.grey( `${ envFileTAR }` ) );
|
Log.debug( `createGzip[zlib.gzip]`, chalk.white( `→` ), chalk.grey( `${ envFileXML }` ), chalk.white( `→` ), chalk.grey( `${ envFileGZP }` ) );
|
||||||
if ( err )
|
if ( err )
|
||||||
{
|
{
|
||||||
Log.error( `Could not write to archive. Error: `, chalk.white( `→` ), chalk.grey( `${ err }` ) );
|
Log.error( `Could not write to archive. Error: `, chalk.white( `→` ), chalk.grey( `${ err }` ) );
|
||||||
return reject( new Error( `Could not create ${ envFileTAR }. Error: ${ err }` ) );
|
return reject( new Error( `Could not create ${ envFileGZP }. Error: ${ err }` ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.info( `Compressing`, chalk.white( `→` ), `${ envFileXML }`, chalk.white( `→` ), `${ FILE_TAR }` );
|
Log.info( `Compressing`, chalk.white( `→` ), `${ envFileXML }`, chalk.white( `→` ), `${ FILE_GZP }` );
|
||||||
fs.writeFile( `${ FILE_TAR }`, buf, ( err ) =>
|
fs.writeFile( `${ FILE_GZP }`, buf, ( err ) =>
|
||||||
{
|
{
|
||||||
if ( err )
|
if ( err )
|
||||||
{
|
{
|
||||||
Log.error( `Could not write XML file to archive. Error: `, chalk.white( `→` ), chalk.grey( `${ err }` ) );
|
Log.error( `Could not write XML file to archive. Error: `, chalk.white( `→` ), chalk.grey( `${ err }` ) );
|
||||||
return reject( new Error( `Could not write XML file ${ envFileXML } to ${ envFileTAR }. Error: ${ err }` ) );
|
return reject( new Error( `Could not write XML file ${ envFileXML } to ${ envFileGZP }. Error: ${ err }` ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.ok( `Compressed`, chalk.white( `→` ), `${ envFileXML }`, chalk.white( `→` ), `${ FILE_TAR }` );
|
Log.ok( `Compressed`, chalk.white( `→` ), `${ envFileXML }`, chalk.white( `→` ), `${ FILE_GZP }` );
|
||||||
resolve( true );
|
resolve( true );
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -469,6 +486,27 @@ async function prepareGzip( )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
@note Jellyfin Users
|
||||||
|
Originally, this node webserver enabled gzip compression for the value `Accept-Encoding`. Doing this
|
||||||
|
may cause an error to appear in Jellyfin logs / console when attempting to fetch the latest guide data
|
||||||
|
from the tvapp2 xml file.
|
||||||
|
|
||||||
|
[ERR] [27] Jellyfin.LiveTv.Guide.GuideManager: Error getting programs for channel XXXXXXXXXXXXXXX (Source 2)
|
||||||
|
System.Xml.XmlException: '', hexadecimal value 0x1F, is an invalid character. Line 1, position 1.
|
||||||
|
|
||||||
|
To fix the error, we create a customizable env variable that allows the user to override the encoding header.
|
||||||
|
We change the following:
|
||||||
|
'Accept-Encoding': 'gzip, deflate, br'
|
||||||
|
to
|
||||||
|
'Accept-Encoding': 'deflate, br'
|
||||||
|
|
||||||
|
This error does not appear if you load the xml guide data into Cabernet, and then use a tuner to fetch the data from
|
||||||
|
cabernet to jellyfin
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
async function fetchRemote( url )
|
async function fetchRemote( url )
|
||||||
{
|
{
|
||||||
return new Promise( ( resolve, reject ) =>
|
return new Promise( ( resolve, reject ) =>
|
||||||
@@ -477,7 +515,7 @@ async function fetchRemote( url )
|
|||||||
mod
|
mod
|
||||||
.get( url, {
|
.get( url, {
|
||||||
headers: {
|
headers: {
|
||||||
'Accept-Encoding': 'gzip, deflate, br'
|
'Accept-Encoding': envWebEncoding
|
||||||
}
|
}
|
||||||
}, ( resp ) =>
|
}, ( resp ) =>
|
||||||
{
|
{
|
||||||
@@ -536,13 +574,23 @@ async function serveKey( req, res )
|
|||||||
const uriParam = new URL( req.url, `http://${ req.headers.host }` ).searchParams.get( 'uri' );
|
const uriParam = new URL( req.url, `http://${ req.headers.host }` ).searchParams.get( 'uri' );
|
||||||
if ( !uriParam )
|
if ( !uriParam )
|
||||||
{
|
{
|
||||||
res.writeHead( 400, {
|
|
||||||
'Content-Type': 'text/plain'
|
|
||||||
});
|
|
||||||
|
|
||||||
Log.error( `Missing "uri" parameter for key download`, chalk.white( `→` ), chalk.grey( `${ req.url }` ) );
|
Log.error( `Missing "uri" parameter for key download`, chalk.white( `→` ), chalk.grey( `${ req.url }` ) );
|
||||||
|
|
||||||
return res.end( 'Error: Missing "uri" parameter for key download.' );
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Error: Missing "uri" parameter for key download.',
|
||||||
|
code: 400,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
|
res.writeHead( 400, {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
});
|
||||||
|
|
||||||
|
return res.end( JSON.stringify( statusCheck ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
const keyData = await fetchRemote( uriParam );
|
const keyData = await fetchRemote( uriParam );
|
||||||
@@ -556,11 +604,21 @@ async function serveKey( req, res )
|
|||||||
{
|
{
|
||||||
Log.error( `ServeKey Error:`, chalk.white( `→` ), chalk.grey( `${ err.message }` ) );
|
Log.error( `ServeKey Error:`, chalk.white( `→` ), chalk.grey( `${ err.message }` ) );
|
||||||
|
|
||||||
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Error fetching key',
|
||||||
|
code: 500,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
res.writeHead( 500, {
|
res.writeHead( 500, {
|
||||||
'Content-Type': 'text/plain'
|
'Content-Type': 'application/json'
|
||||||
});
|
});
|
||||||
|
|
||||||
res.end( 'Error fetching key.' );
|
res.end( JSON.stringify( statusCheck ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -703,13 +761,26 @@ async function serveM3UPlaylist( req, res )
|
|||||||
if ( !urlParam )
|
if ( !urlParam )
|
||||||
{
|
{
|
||||||
Log.error( `Missing parameter`, chalk.white( `→` ), chalk.grey( `URL` ) );
|
Log.error( `Missing parameter`, chalk.white( `→` ), chalk.grey( `URL` ) );
|
||||||
|
|
||||||
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Missing URL parameter',
|
||||||
|
code: 404,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
res.writeHead( 400, {
|
res.writeHead( 400, {
|
||||||
'Content-Type': 'text/plain'
|
'Content-Type': 'application/json'
|
||||||
});
|
});
|
||||||
res.end( 'Error: Missing URL parameter.' );
|
|
||||||
|
res.end( JSON.stringify( statusCheck ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const decodedUrl = decodeURIComponent( urlParam );
|
const decodedUrl = decodeURIComponent( urlParam );
|
||||||
if ( decodedUrl.endsWith( '.ts' ) )
|
if ( decodedUrl.endsWith( '.ts' ) )
|
||||||
{
|
{
|
||||||
@@ -741,11 +812,22 @@ async function serveM3UPlaylist( req, res )
|
|||||||
{
|
{
|
||||||
Log.error( `Failed to retrieve tokenized URL` );
|
Log.error( `Failed to retrieve tokenized URL` );
|
||||||
|
|
||||||
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Error: Failed to retrieve tokenized URL.',
|
||||||
|
code: 500,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
res.writeHead( 500, {
|
res.writeHead( 500, {
|
||||||
'Content-Type': 'text/plain'
|
'Content-Type': 'application/json'
|
||||||
});
|
});
|
||||||
|
|
||||||
res.end( 'Error: Failed to retrieve tokenized URL.' );
|
res.end( JSON.stringify( statusCheck ) );
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -766,11 +848,78 @@ async function serveM3UPlaylist( req, res )
|
|||||||
|
|
||||||
if ( !res.headersSent )
|
if ( !res.headersSent )
|
||||||
{
|
{
|
||||||
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Error: Cannot process request.',
|
||||||
|
code: 500,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
res.writeHead( 500, {
|
res.writeHead( 500, {
|
||||||
'Content-Type': 'text/plain'
|
'Content-Type': 'application/json'
|
||||||
});
|
});
|
||||||
|
|
||||||
res.end( 'Error processing request.' );
|
res.end( JSON.stringify( statusCheck ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
semaphore.release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function serveHealthCheck( req, res )
|
||||||
|
{
|
||||||
|
await semaphore.acquire();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
const urlParam = new URL( req.url, `http://${ req.headers.host }` ).searchParams.get( 'url' );
|
||||||
|
if ( !urlParam )
|
||||||
|
{
|
||||||
|
Log.debug( `No parameters passed to healthcheck`, chalk.white( `→` ), chalk.grey( `URL` ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
const healthcheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Healthy',
|
||||||
|
code: 200,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
|
res.writeHead( 200, {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
});
|
||||||
|
|
||||||
|
res.end( JSON.stringify( healthcheck ) );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch ( err )
|
||||||
|
{
|
||||||
|
Log.error( `Error getting healthcheck:`, chalk.white( `→` ), chalk.grey( `${ err.message }` ) );
|
||||||
|
|
||||||
|
if ( !res.headersSent )
|
||||||
|
{
|
||||||
|
const healthcheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Unhealthy',
|
||||||
|
code: 503,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
|
res.writeHead( 503, {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
});
|
||||||
|
|
||||||
|
res.end( JSON.stringify( healthcheck ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
@@ -885,25 +1034,25 @@ async function serveXML( response, req )
|
|||||||
Serves IPTV .gz guide data
|
Serves IPTV .gz guide data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
async function serveTAR( response, req )
|
async function serveGZP( response, req )
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
const protocol = req.headers['x-forwarded-proto']?.split( ',' )[0] || ( req.socket.encrypted ? 'https' : 'http' );
|
const protocol = req.headers['x-forwarded-proto']?.split( ',' )[0] || ( req.socket.encrypted ? 'https' : 'http' );
|
||||||
const host = req.headers.host;
|
const host = req.headers.host;
|
||||||
const baseUrl = `${ protocol }://${ host }`;
|
const baseUrl = `${ protocol }://${ host }`;
|
||||||
const formattedContent = fs.readFileSync( FILE_TAR );
|
const formattedContent = fs.readFileSync( FILE_GZP );
|
||||||
|
|
||||||
response.writeHead( 200, {
|
response.writeHead( 200, {
|
||||||
'Content-Type': 'application/gzip',
|
'Content-Type': 'application/gzip',
|
||||||
'Content-Disposition': 'inline; filename="' + envFileTAR
|
'Content-Disposition': 'inline; filename="' + envFileGZP
|
||||||
});
|
});
|
||||||
|
|
||||||
response.end( formattedContent );
|
response.end( formattedContent );
|
||||||
}
|
}
|
||||||
catch ( err )
|
catch ( err )
|
||||||
{
|
{
|
||||||
Log.error( `Error in serveTAR:`, chalk.white( `→` ), chalk.grey( `${ err.message }` ) );
|
Log.error( `Error in serveGZP:`, chalk.white( `→` ), chalk.grey( `${ err.message }` ) );
|
||||||
|
|
||||||
response.writeHead( 500, {
|
response.writeHead( 500, {
|
||||||
'Content-Type': 'text/plain'
|
'Content-Type': 'text/plain'
|
||||||
@@ -968,13 +1117,13 @@ async function initialize()
|
|||||||
|
|
||||||
FILE_M3U_SIZE = getFileSizeHuman( FILE_M3U );
|
FILE_M3U_SIZE = getFileSizeHuman( FILE_M3U );
|
||||||
FILE_XML_SIZE = getFileSizeHuman( FILE_XML );
|
FILE_XML_SIZE = getFileSizeHuman( FILE_XML );
|
||||||
FILE_TAR_SIZE = getFileSizeHuman( FILE_TAR );
|
FILE_GZP_SIZE = getFileSizeHuman( FILE_GZP );
|
||||||
|
|
||||||
FILE_M3U_MODIFIED = getFileModified( FILE_M3U );
|
FILE_M3U_MODIFIED = getFileModified( FILE_M3U );
|
||||||
FILE_XML_MODIFIED = getFileModified( FILE_XML );
|
FILE_XML_MODIFIED = getFileModified( FILE_XML );
|
||||||
FILE_TAR_MODIFIED = getFileModified( FILE_TAR );
|
FILE_GZP_MODIFIED = getFileModified( FILE_GZP );
|
||||||
|
|
||||||
Log.info( `Initialization Complete` );
|
Log.ok( `Initialization Complete` );
|
||||||
}
|
}
|
||||||
catch ( err )
|
catch ( err )
|
||||||
{
|
{
|
||||||
@@ -1020,16 +1169,39 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
|
|
||||||
const loadFile = reqUrl.replace( /^\/+/, '' );
|
const loadFile = reqUrl.replace( /^\/+/, '' );
|
||||||
|
|
||||||
Log.debug( `www`, chalk.yellow( ` [GET] ` ), chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.debug( `www`, chalk.blueBright( `[REQUEST]` ), chalk.white( `→` ), chalk.grey( `asset>` ), chalk.greenBright( `${ loadFile }` ), chalk.grey( `<method>` ), chalk.greenBright( `${ method }` ) );
|
||||||
|
|
||||||
const handleRequest = async() =>
|
const handleRequest = async() =>
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Define the different routes.
|
Define the different routes.
|
||||||
Place the template system last. Getting TVApp data should take priority.
|
Place the template system last. Getting TVApp data should take priority.
|
||||||
|
|
||||||
|
subdomainM3U array []
|
||||||
|
loadFile channel?url=https%3A%2F%2Ftvpass.org%2Fchannel%2Fabc-wabc-new-york-ny%2F
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( subdomainM3U.includes( `${ loadFile }` ) && method === 'GET' )
|
if ( subdomainRestart.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) )
|
||||||
|
{
|
||||||
|
Log.info( `Toggled restart`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_URL` ), chalk.blueBright( `${ FILE_URL }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_M3U` ), chalk.blueBright( `${ FILE_M3U }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_XML` ), chalk.blueBright( `${ FILE_XML }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_GZP` ), chalk.blueBright( `${ FILE_GZP }` ) );
|
||||||
|
|
||||||
|
await initialize();
|
||||||
|
|
||||||
|
response.writeHead( 200, {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
});
|
||||||
|
|
||||||
|
response.end( `{ "status": "ok" }` );
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( subdomainM3U.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
{
|
{
|
||||||
Log.info( `Received request for m3u playlist data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.info( `Received request for m3u playlist data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
@@ -1037,7 +1209,7 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( subdomainChan.includes( `${ loadFile }` ) && method === 'GET' )
|
if ( subdomainChan.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
{
|
{
|
||||||
Log.info( `Received request for channel data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.info( `Received request for channel data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
@@ -1045,7 +1217,7 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( subdomainKey.includes( `${ loadFile }` ) && method === 'GET' )
|
if ( subdomainKey.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
{
|
{
|
||||||
Log.info( `Received request for key data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.info( `Received request for key data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
@@ -1053,19 +1225,27 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( subdomainEPG.includes( `${ loadFile }` ) && method === 'GET' )
|
if ( subdomainEPG.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
{
|
{
|
||||||
Log.info( `Received request for raw EPG data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.info( `Received request for raw uncompressed EPG data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
await serveXML( response, request );
|
await serveXML( response, request );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( subdomainGZ.includes( `${ loadFile }` ) && method === 'GET' )
|
if ( subdomainGZP.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
{
|
{
|
||||||
Log.info( `Received request for compressed EPG data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
Log.info( `Received request for compressed EPG data`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
await serveTAR( response, request );
|
await serveGZP( response, request );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( subdomainHealth.some( ( urlKeyword ) => loadFile.startsWith( urlKeyword ) ) && method === 'GET' )
|
||||||
|
{
|
||||||
|
Log.info( `Received healthcheck`, chalk.white( `→` ), chalk.grey( `${ loadFile }` ) );
|
||||||
|
|
||||||
|
await serveHealthCheck( request, response );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1084,9 +1264,9 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
sizeXML: FILE_XML_SIZE,
|
sizeXML: FILE_XML_SIZE,
|
||||||
dateXML: FILE_XML_MODIFIED,
|
dateXML: FILE_XML_MODIFIED,
|
||||||
|
|
||||||
fileTAR: envFileTAR,
|
fileGZP: envFileGZP,
|
||||||
sizeTAR: FILE_TAR_SIZE,
|
sizeGZP: FILE_GZP_SIZE,
|
||||||
dateTAR: FILE_TAR_MODIFIED,
|
dateGZP: FILE_GZP_MODIFIED,
|
||||||
|
|
||||||
appName: name,
|
appName: name,
|
||||||
appVersion: version,
|
appVersion: version,
|
||||||
@@ -1107,13 +1287,18 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
? 'text/plain'
|
? 'text/plain'
|
||||||
: {
|
: {
|
||||||
'.html' : 'text/html',
|
'.html' : 'text/html',
|
||||||
|
'.htm' : 'text/html',
|
||||||
'.ico' : 'image/x-icon',
|
'.ico' : 'image/x-icon',
|
||||||
'.jpg' : 'image/jpeg',
|
'.jpg' : 'image/jpeg',
|
||||||
'.png' : 'image/png',
|
'.png' : 'image/png',
|
||||||
'.gif' : 'image/gif',
|
'.gif' : 'image/gif',
|
||||||
'.css' : 'text/css',
|
'.css' : 'text/css',
|
||||||
'.gz' : 'application/gzip',
|
'.gz' : 'application/gzip',
|
||||||
'.js' : 'text/javascript'
|
'.js' : 'text/javascript',
|
||||||
|
'.txt' : 'text/plain',
|
||||||
|
'.xml' : 'application/xml',
|
||||||
|
'.m3u' : 'text/plain',
|
||||||
|
'.m3u8' : 'text/plain'
|
||||||
}[loadFile.substring( fileExt )];
|
}[loadFile.substring( fileExt )];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -1126,13 +1311,34 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
response.setHeader( 'Content-type', fileMime );
|
response.setHeader( 'Content-type', fileMime );
|
||||||
response.end( data );
|
response.end( data );
|
||||||
|
|
||||||
Log.debug( `www`, chalk.green( ` [LOAD] ` ), chalk.white( `→` ), chalk.grey( `asset:${ loadFile } mime:${ fileMime }` ) );
|
Log.ok( `www`, chalk.greenBright( ` [LOAD] ` ), chalk.white( `→` ), chalk.grey( `<asset>` ), chalk.greenBright( `${ loadFile }` ), chalk.grey( `<mime>` ), chalk.greenBright( `${ fileMime }` ) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Log.error( `www file not found:`, chalk.white( `→` ), chalk.grey( `${ request.url }` ) );
|
if ( loadFile === 'discovery.json' )
|
||||||
response.writeHead( 404, 'Not Found' );
|
{
|
||||||
response.end();
|
Log.notice( `www`, chalk.yellowBright( ` [NOTICE] ` ), chalk.white( `→` ), chalk.grey( `If you are attempting to load TVApp2 using an HDHomeRun tuner, please switch to the` ), chalk.yellowBright( `M3U Tuner` ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
Log.error( `www`, chalk.redBright( ` [ERROR] ` ), chalk.white( `→` ), chalk.grey( `File not found:` ), chalk.redBright( `${ loadFile }` ) );
|
||||||
|
|
||||||
|
const statusCheck =
|
||||||
|
{
|
||||||
|
ip: envIpContainer,
|
||||||
|
gateway: envIpGateway,
|
||||||
|
uptime: process.uptime(),
|
||||||
|
message: 'Page not found',
|
||||||
|
ref: request.url,
|
||||||
|
method: method,
|
||||||
|
code: 404,
|
||||||
|
timestamp: Date.now()
|
||||||
|
};
|
||||||
|
|
||||||
|
response.writeHead( 404, {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
});
|
||||||
|
|
||||||
|
response.end( JSON.stringify( statusCheck ) );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -1157,9 +1363,14 @@ const server = http.createServer( ( request, response ) =>
|
|||||||
const envWebIP = process.env.WEB_IP || '0.0.0.0';
|
const envWebIP = process.env.WEB_IP || '0.0.0.0';
|
||||||
const envWebPort = process.env.WEB_PORT || `4124`;
|
const envWebPort = process.env.WEB_PORT || `4124`;
|
||||||
|
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_URL` ), chalk.blueBright( `${ FILE_URL }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_M3U` ), chalk.blueBright( `${ FILE_M3U }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_XML` ), chalk.blueBright( `${ FILE_XML }` ) );
|
||||||
|
Log.debug( `env`, chalk.blueBright( `[SET]` ), chalk.white( `→` ), chalk.grey( `FILE_GZP` ), chalk.blueBright( `${ FILE_GZP }` ) );
|
||||||
|
|
||||||
await initialize();
|
await initialize();
|
||||||
server.listen( envWebPort, envWebIP, () =>
|
server.listen( envWebPort, envWebIP, () =>
|
||||||
{
|
{
|
||||||
Log.info( `Server is running on ${ envWebIP }:${ envWebPort }` );
|
Log.info( `Server now running on`, chalk.white( `→` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ) );
|
||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
|
|||||||
3775
tvapp2/node_modules/.package-lock.json
generated
vendored
32
tvapp2/node_modules/playwright-core/browsers.json
generated
vendored
@@ -3,31 +3,43 @@
|
|||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"revision": "1155",
|
"revision": "1161",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"browserVersion": "133.0.6943.16"
|
"browserVersion": "134.0.6998.35"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "chromium-headless-shell",
|
||||||
|
"revision": "1161",
|
||||||
|
"installByDefault": true,
|
||||||
|
"browserVersion": "134.0.6998.35"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "chromium-tip-of-tree",
|
"name": "chromium-tip-of-tree",
|
||||||
"revision": "1293",
|
"revision": "1304",
|
||||||
"installByDefault": false,
|
"installByDefault": false,
|
||||||
"browserVersion": "133.0.6943.0"
|
"browserVersion": "135.0.7021.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "chromium-tip-of-tree-headless-shell",
|
||||||
|
"revision": "1304",
|
||||||
|
"installByDefault": false,
|
||||||
|
"browserVersion": "135.0.7021.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox",
|
"name": "firefox",
|
||||||
"revision": "1471",
|
"revision": "1475",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"browserVersion": "134.0"
|
"browserVersion": "135.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox-beta",
|
"name": "firefox-beta",
|
||||||
"revision": "1467",
|
"revision": "1471",
|
||||||
"installByDefault": false,
|
"installByDefault": false,
|
||||||
"browserVersion": "133.0b9"
|
"browserVersion": "136.0b4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "2123",
|
"revision": "2140",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"debian11-x64": "2105",
|
"debian11-x64": "2105",
|
||||||
@@ -41,7 +53,7 @@
|
|||||||
"ubuntu20.04-x64": "2092",
|
"ubuntu20.04-x64": "2092",
|
||||||
"ubuntu20.04-arm64": "2092"
|
"ubuntu20.04-arm64": "2092"
|
||||||
},
|
},
|
||||||
"browserVersion": "18.2"
|
"browserVersion": "18.4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ffmpeg",
|
"name": "ffmpeg",
|
||||||
|
|||||||
1
tvapp2/node_modules/playwright-core/index.js
generated
vendored
@@ -19,7 +19,6 @@ const semver = currentNodeVersion.split('.');
|
|||||||
const [major] = [+semver[0]];
|
const [major] = [+semver[0]];
|
||||||
|
|
||||||
if (major < minimumMajorNodeVersion) {
|
if (major < minimumMajorNodeVersion) {
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.error(
|
console.error(
|
||||||
'You are running Node.js ' +
|
'You are running Node.js ' +
|
||||||
currentNodeVersion +
|
currentNodeVersion +
|
||||||
|
|||||||
8
tvapp2/node_modules/playwright-core/lib/androidServerImpl.js
generated
vendored
@@ -4,10 +4,10 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.AndroidServerLauncherImpl = void 0;
|
exports.AndroidServerLauncherImpl = void 0;
|
||||||
var _utilsBundle = require("./utilsBundle");
|
|
||||||
var _utils = require("./utils");
|
|
||||||
var _playwright = require("./server/playwright");
|
|
||||||
var _playwrightServer = require("./remote/playwrightServer");
|
var _playwrightServer = require("./remote/playwrightServer");
|
||||||
|
var _playwright = require("./server/playwright");
|
||||||
|
var _crypto = require("./server/utils/crypto");
|
||||||
|
var _utilsBundle = require("./utilsBundle");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -43,7 +43,7 @@ class AndroidServerLauncherImpl {
|
|||||||
}
|
}
|
||||||
if (devices.length > 1) throw new Error(`More than one device found. Please specify deviceSerialNumber`);
|
if (devices.length > 1) throw new Error(`More than one device found. Please specify deviceSerialNumber`);
|
||||||
const device = devices[0];
|
const device = devices[0];
|
||||||
const path = options.wsPath ? options.wsPath.startsWith('/') ? options.wsPath : `/${options.wsPath}` : `/${(0, _utils.createGuid)()}`;
|
const path = options.wsPath ? options.wsPath.startsWith('/') ? options.wsPath : `/${options.wsPath}` : `/${(0, _crypto.createGuid)()}`;
|
||||||
|
|
||||||
// 2. Start the server
|
// 2. Start the server
|
||||||
const server = new _playwrightServer.PlaywrightServer({
|
const server = new _playwrightServer.PlaywrightServer({
|
||||||
|
|||||||
27
tvapp2/node_modules/playwright-core/lib/browserServerImpl.js
generated
vendored
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.BrowserServerLauncherImpl = void 0;
|
exports.BrowserServerLauncherImpl = void 0;
|
||||||
var _utilsBundle = require("./utilsBundle");
|
var _socksProxy = require("./server/utils/socksProxy");
|
||||||
var _clientHelper = require("./client/clientHelper");
|
|
||||||
var _utils = require("./utils");
|
|
||||||
var _instrumentation = require("./server/instrumentation");
|
|
||||||
var _playwright = require("./server/playwright");
|
|
||||||
var _playwrightServer = require("./remote/playwrightServer");
|
var _playwrightServer = require("./remote/playwrightServer");
|
||||||
var _helper = require("./server/helper");
|
var _helper = require("./server/helper");
|
||||||
var _stackTrace = require("./utils/stackTrace");
|
var _instrumentation = require("./server/instrumentation");
|
||||||
var _socksProxy = require("./common/socksProxy");
|
var _playwright = require("./server/playwright");
|
||||||
|
var _crypto = require("./server/utils/crypto");
|
||||||
|
var _stackTrace = require("./utils/isomorphic/stackTrace");
|
||||||
|
var _utilsBundle = require("./utilsBundle");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -49,13 +48,13 @@ class BrowserServerLauncherImpl {
|
|||||||
...options,
|
...options,
|
||||||
ignoreDefaultArgs: Array.isArray(options.ignoreDefaultArgs) ? options.ignoreDefaultArgs : undefined,
|
ignoreDefaultArgs: Array.isArray(options.ignoreDefaultArgs) ? options.ignoreDefaultArgs : undefined,
|
||||||
ignoreAllDefaultArgs: !!options.ignoreDefaultArgs && !Array.isArray(options.ignoreDefaultArgs),
|
ignoreAllDefaultArgs: !!options.ignoreDefaultArgs && !Array.isArray(options.ignoreDefaultArgs),
|
||||||
env: options.env ? (0, _clientHelper.envObjectToArray)(options.env) : undefined
|
env: options.env ? envObjectToArray(options.env) : undefined
|
||||||
}, toProtocolLogger(options.logger)).catch(e => {
|
}, toProtocolLogger(options.logger)).catch(e => {
|
||||||
const log = _helper.helper.formatBrowserLogs(metadata.log);
|
const log = _helper.helper.formatBrowserLogs(metadata.log);
|
||||||
(0, _stackTrace.rewriteErrorMessage)(e, `${e.message} Failed to launch browser.${log}`);
|
(0, _stackTrace.rewriteErrorMessage)(e, `${e.message} Failed to launch browser.${log}`);
|
||||||
throw e;
|
throw e;
|
||||||
});
|
});
|
||||||
const path = options.wsPath ? options.wsPath.startsWith('/') ? options.wsPath : `/${options.wsPath}` : `/${(0, _utils.createGuid)()}`;
|
const path = options.wsPath ? options.wsPath.startsWith('/') ? options.wsPath : `/${options.wsPath}` : `/${(0, _crypto.createGuid)()}`;
|
||||||
|
|
||||||
// 2. Start the server
|
// 2. Start the server
|
||||||
const server = new _playwrightServer.PlaywrightServer({
|
const server = new _playwrightServer.PlaywrightServer({
|
||||||
@@ -90,3 +89,13 @@ function toProtocolLogger(logger) {
|
|||||||
if (logger.isEnabled('protocol', 'verbose')) logger.log('protocol', 'verbose', (direction === 'send' ? 'SEND ► ' : '◀ RECV ') + JSON.stringify(message), [], {});
|
if (logger.isEnabled('protocol', 'verbose')) logger.log('protocol', 'verbose', (direction === 'send' ? 'SEND ► ' : '◀ RECV ') + JSON.stringify(message), [], {});
|
||||||
} : undefined;
|
} : undefined;
|
||||||
}
|
}
|
||||||
|
function envObjectToArray(env) {
|
||||||
|
const result = [];
|
||||||
|
for (const name in env) {
|
||||||
|
if (!Object.is(env[name], undefined)) result.push({
|
||||||
|
name,
|
||||||
|
value: String(env[name])
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
12
tvapp2/node_modules/playwright-core/lib/cli/driver.js
generated
vendored
@@ -9,13 +9,13 @@ exports.runDriver = runDriver;
|
|||||||
exports.runServer = runServer;
|
exports.runServer = runServer;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _fs = _interopRequireDefault(require("fs"));
|
||||||
var playwright = _interopRequireWildcard(require("../.."));
|
var playwright = _interopRequireWildcard(require("../.."));
|
||||||
var _server = require("../server");
|
var _pipeTransport = require("../server/utils/pipeTransport");
|
||||||
var _transport = require("../protocol/transport");
|
|
||||||
var _playwrightServer = require("../remote/playwrightServer");
|
var _playwrightServer = require("../remote/playwrightServer");
|
||||||
var _processLauncher = require("../utils/processLauncher");
|
var _server = require("../server");
|
||||||
|
var _processLauncher = require("../server/utils/processLauncher");
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -48,7 +48,7 @@ function runDriver() {
|
|||||||
});
|
});
|
||||||
return new _server.PlaywrightDispatcher(rootScope, playwright);
|
return new _server.PlaywrightDispatcher(rootScope, playwright);
|
||||||
});
|
});
|
||||||
const transport = new _transport.PipeTransport(process.stdout, process.stdin);
|
const transport = new _pipeTransport.PipeTransport(process.stdout, process.stdin);
|
||||||
transport.onmessage = message => dispatcherConnection.dispatch(JSON.parse(message));
|
transport.onmessage = message => dispatcherConnection.dispatch(JSON.parse(message));
|
||||||
// Certain Language Binding JSON parsers (e.g. .NET) do not like strings with lone surrogates.
|
// Certain Language Binding JSON parsers (e.g. .NET) do not like strings with lone surrogates.
|
||||||
const isJavaScriptLanguageBinding = !process.env.PW_LANG_NAME || process.env.PW_LANG_NAME === 'javascript';
|
const isJavaScriptLanguageBinding = !process.env.PW_LANG_NAME || process.env.PW_LANG_NAME === 'javascript';
|
||||||
|
|||||||
18
tvapp2/node_modules/playwright-core/lib/cli/program.js
generated
vendored
@@ -12,16 +12,16 @@ Object.defineProperty(exports, "program", {
|
|||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _fs = _interopRequireDefault(require("fs"));
|
||||||
var _os = _interopRequireDefault(require("os"));
|
var _os = _interopRequireDefault(require("os"));
|
||||||
var _path = _interopRequireDefault(require("path"));
|
var _path = _interopRequireDefault(require("path"));
|
||||||
var _utilsBundle = require("../utilsBundle");
|
|
||||||
var _driver = require("./driver");
|
|
||||||
var _traceViewer = require("../server/trace/viewer/traceViewer");
|
|
||||||
var playwright = _interopRequireWildcard(require("../.."));
|
var playwright = _interopRequireWildcard(require("../.."));
|
||||||
var _utils = require("../utils");
|
var _driver = require("./driver");
|
||||||
var _server = require("../server");
|
var _server = require("../server");
|
||||||
var _errors = require("../client/errors");
|
var _utils = require("../utils");
|
||||||
|
var _traceViewer = require("../server/trace/viewer/traceViewer");
|
||||||
|
var _ascii = require("../server/utils/ascii");
|
||||||
|
var _utilsBundle = require("../utilsBundle");
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -97,7 +97,7 @@ _utilsBundle.program.command('install [browser...]').description('ensure browser
|
|||||||
// For '--no-shell' option, commander sets `shell: false` instead.
|
// For '--no-shell' option, commander sets `shell: false` instead.
|
||||||
if (options.shell === false) options.noShell = true;
|
if (options.shell === false) options.noShell = true;
|
||||||
if ((0, _utils.isLikelyNpxGlobal)()) {
|
if ((0, _utils.isLikelyNpxGlobal)()) {
|
||||||
console.error((0, _utils.wrapInASCIIBox)([`WARNING: It looks like you are running 'npx playwright install' without first`, `installing your project's dependencies.`, ``, `To avoid unexpected behavior, please install your dependencies first, and`, `then run Playwright's install command:`, ``, ` npm install`, ` npx playwright install`, ``, `If your project does not yet depend on Playwright, first install the`, `applicable npm package (most commonly @playwright/test), and`, `then run Playwright's install command to download the browsers:`, ``, ` npm install @playwright/test`, ` npx playwright install`, ``].join('\n'), 1));
|
console.error((0, _ascii.wrapInASCIIBox)([`WARNING: It looks like you are running 'npx playwright install' without first`, `installing your project's dependencies.`, ``, `To avoid unexpected behavior, please install your dependencies first, and`, `then run Playwright's install command:`, ``, ` npm install`, ` npx playwright install`, ``, `If your project does not yet depend on Playwright, first install the`, `applicable npm package (most commonly @playwright/test), and`, `then run Playwright's install command to download the browsers:`, ``, ` npm install @playwright/test`, ` npx playwright install`, ``].join('\n'), 1));
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const hasNoArguments = !args.length;
|
const hasNoArguments = !args.length;
|
||||||
@@ -408,7 +408,7 @@ async function openPage(context, url) {
|
|||||||
if (url) {
|
if (url) {
|
||||||
if (_fs.default.existsSync(url)) url = 'file://' + _path.default.resolve(url);else if (!url.startsWith('http') && !url.startsWith('file://') && !url.startsWith('about:') && !url.startsWith('data:')) url = 'http://' + url;
|
if (_fs.default.existsSync(url)) url = 'file://' + _path.default.resolve(url);else if (!url.startsWith('http') && !url.startsWith('file://') && !url.startsWith('about:') && !url.startsWith('data:')) url = 'http://' + url;
|
||||||
await page.goto(url).catch(error => {
|
await page.goto(url).catch(error => {
|
||||||
if (process.env.PWTEST_CLI_AUTO_EXIT_WHEN && (0, _errors.isTargetClosedError)(error)) {
|
if (process.env.PWTEST_CLI_AUTO_EXIT_WHEN) {
|
||||||
// Tests with PWTEST_CLI_AUTO_EXIT_WHEN might close page too fast, resulting
|
// Tests with PWTEST_CLI_AUTO_EXIT_WHEN might close page too fast, resulting
|
||||||
// in a stray navigation aborted error. We should ignore it.
|
// in a stray navigation aborted error. We should ignore it.
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
3
tvapp2/node_modules/playwright-core/lib/cli/programWithTestStub.js
generated
vendored
@@ -9,6 +9,7 @@ Object.defineProperty(exports, "program", {
|
|||||||
return _program.program;
|
return _program.program;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
var _processLauncher = require("../server/utils/processLauncher");
|
||||||
var _utils = require("../utils");
|
var _utils = require("../utils");
|
||||||
var _program = require("./program");
|
var _program = require("./program");
|
||||||
/**
|
/**
|
||||||
@@ -60,7 +61,7 @@ function addExternalPlaywrightTestCommands() {
|
|||||||
playwrightTest.description(`${description} Available in @playwright/test package.`);
|
playwrightTest.description(`${description} Available in @playwright/test package.`);
|
||||||
playwrightTest.action(async () => {
|
playwrightTest.action(async () => {
|
||||||
printPlaywrightTestError(command);
|
printPlaywrightTestError(command);
|
||||||
(0, _utils.gracefullyProcessExitDoNotHang)(1);
|
(0, _processLauncher.gracefullyProcessExitDoNotHang)(1);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
87
tvapp2/node_modules/playwright-core/lib/client/android.js
generated
vendored
@@ -4,18 +4,17 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.AndroidWebView = exports.AndroidSocket = exports.AndroidInput = exports.AndroidDevice = exports.Android = void 0;
|
exports.AndroidWebView = exports.AndroidSocket = exports.AndroidInput = exports.AndroidDevice = exports.Android = void 0;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _eventEmitter = require("./eventEmitter");
|
||||||
var _utils = require("../utils");
|
|
||||||
var _events = require("./events");
|
|
||||||
var _browserContext = require("./browserContext");
|
var _browserContext = require("./browserContext");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _timeoutSettings = require("../common/timeoutSettings");
|
|
||||||
var _waiter = require("./waiter");
|
|
||||||
var _events2 = require("events");
|
|
||||||
var _connection = require("./connection");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
var _timeoutRunner = require("../utils/timeoutRunner");
|
var _events = require("./events");
|
||||||
let _Symbol$asyncDispose;
|
var _waiter = require("./waiter");
|
||||||
|
var _timeoutSettings = require("./timeoutSettings");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
|
var _time = require("../utils/isomorphic/time");
|
||||||
|
var _timeoutRunner = require("../utils/isomorphic/timeoutRunner");
|
||||||
|
var _webSocket = require("./webSocket");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -31,7 +30,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
class Android extends _channelOwner.ChannelOwner {
|
class Android extends _channelOwner.ChannelOwner {
|
||||||
static from(android) {
|
static from(android) {
|
||||||
return android._object;
|
return android._object;
|
||||||
@@ -40,13 +39,15 @@ class Android extends _channelOwner.ChannelOwner {
|
|||||||
super(parent, type, guid, initializer);
|
super(parent, type, guid, initializer);
|
||||||
this._timeoutSettings = void 0;
|
this._timeoutSettings = void 0;
|
||||||
this._serverLauncher = void 0;
|
this._serverLauncher = void 0;
|
||||||
this._timeoutSettings = new _timeoutSettings.TimeoutSettings();
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._platform);
|
||||||
}
|
}
|
||||||
setDefaultTimeout(timeout) {
|
setDefaultTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultTimeout(timeout);
|
this._timeoutSettings.setDefaultTimeout(timeout);
|
||||||
this._channel.setDefaultTimeoutNoReply({
|
this._wrapApiCall(async () => {
|
||||||
|
await this._channel.setDefaultTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
});
|
});
|
||||||
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
async devices(options = {}) {
|
async devices(options = {}) {
|
||||||
const {
|
const {
|
||||||
@@ -60,68 +61,44 @@ class Android extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async connect(wsEndpoint, options = {}) {
|
async connect(wsEndpoint, options = {}) {
|
||||||
return await this._wrapApiCall(async () => {
|
return await this._wrapApiCall(async () => {
|
||||||
const deadline = options.timeout ? (0, _utils.monotonicTime)() + options.timeout : 0;
|
const deadline = options.timeout ? (0, _time.monotonicTime)() + options.timeout : 0;
|
||||||
const headers = {
|
const headers = {
|
||||||
'x-playwright-browser': 'android',
|
'x-playwright-browser': 'android',
|
||||||
...options.headers
|
...options.headers
|
||||||
};
|
};
|
||||||
const localUtils = this._connection.localUtils();
|
|
||||||
const connectParams = {
|
const connectParams = {
|
||||||
wsEndpoint,
|
wsEndpoint,
|
||||||
headers,
|
headers,
|
||||||
slowMo: options.slowMo,
|
slowMo: options.slowMo,
|
||||||
timeout: options.timeout
|
timeout: options.timeout
|
||||||
};
|
};
|
||||||
const {
|
const connection = await (0, _webSocket.connectOverWebSocket)(this._connection, connectParams);
|
||||||
pipe
|
|
||||||
} = await localUtils._channel.connect(connectParams);
|
|
||||||
const closePipe = () => pipe.close().catch(() => {});
|
|
||||||
const connection = new _connection.Connection(localUtils, this._instrumentation);
|
|
||||||
connection.markAsRemote();
|
|
||||||
connection.on('close', closePipe);
|
|
||||||
let device;
|
let device;
|
||||||
let closeError;
|
connection.on('close', () => {
|
||||||
const onPipeClosed = () => {
|
|
||||||
var _device;
|
var _device;
|
||||||
(_device = device) === null || _device === void 0 || _device._didClose();
|
(_device = device) === null || _device === void 0 || _device._didClose();
|
||||||
connection.close(closeError);
|
|
||||||
};
|
|
||||||
pipe.on('closed', onPipeClosed);
|
|
||||||
connection.onmessage = message => pipe.send({
|
|
||||||
message
|
|
||||||
}).catch(onPipeClosed);
|
|
||||||
pipe.on('message', ({
|
|
||||||
message
|
|
||||||
}) => {
|
|
||||||
try {
|
|
||||||
connection.dispatch(message);
|
|
||||||
} catch (e) {
|
|
||||||
closeError = String(e);
|
|
||||||
closePipe();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
const result = await (0, _timeoutRunner.raceAgainstDeadline)(async () => {
|
const result = await (0, _timeoutRunner.raceAgainstDeadline)(async () => {
|
||||||
const playwright = await connection.initializePlaywright();
|
const playwright = await connection.initializePlaywright();
|
||||||
if (!playwright._initializer.preConnectedAndroidDevice) {
|
if (!playwright._initializer.preConnectedAndroidDevice) {
|
||||||
closePipe();
|
connection.close();
|
||||||
throw new Error('Malformed endpoint. Did you use Android.launchServer method?');
|
throw new Error('Malformed endpoint. Did you use Android.launchServer method?');
|
||||||
}
|
}
|
||||||
device = AndroidDevice.from(playwright._initializer.preConnectedAndroidDevice);
|
device = AndroidDevice.from(playwright._initializer.preConnectedAndroidDevice);
|
||||||
device._shouldCloseConnectionOnClose = true;
|
device._shouldCloseConnectionOnClose = true;
|
||||||
device.on(_events.Events.AndroidDevice.Close, closePipe);
|
device.on(_events.Events.AndroidDevice.Close, () => connection.close());
|
||||||
return device;
|
return device;
|
||||||
}, deadline);
|
}, deadline);
|
||||||
if (!result.timedOut) {
|
if (!result.timedOut) {
|
||||||
return result.result;
|
return result.result;
|
||||||
} else {
|
} else {
|
||||||
closePipe();
|
connection.close();
|
||||||
throw new Error(`Timeout ${options.timeout}ms exceeded`);
|
throw new Error(`Timeout ${options.timeout}ms exceeded`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Android = Android;
|
exports.Android = Android;
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class AndroidDevice extends _channelOwner.ChannelOwner {
|
class AndroidDevice extends _channelOwner.ChannelOwner {
|
||||||
static from(androidDevice) {
|
static from(androidDevice) {
|
||||||
return androidDevice._object;
|
return androidDevice._object;
|
||||||
@@ -133,7 +110,7 @@ class AndroidDevice extends _channelOwner.ChannelOwner {
|
|||||||
this._shouldCloseConnectionOnClose = false;
|
this._shouldCloseConnectionOnClose = false;
|
||||||
this.input = void 0;
|
this.input = void 0;
|
||||||
this.input = new AndroidInput(this);
|
this.input = new AndroidInput(this);
|
||||||
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(parent._timeoutSettings);
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._platform, parent._timeoutSettings);
|
||||||
this._channel.on('webViewAdded', ({
|
this._channel.on('webViewAdded', ({
|
||||||
webView
|
webView
|
||||||
}) => this._onWebViewAdded(webView));
|
}) => this._onWebViewAdded(webView));
|
||||||
@@ -154,9 +131,11 @@ class AndroidDevice extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
setDefaultTimeout(timeout) {
|
setDefaultTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultTimeout(timeout);
|
this._timeoutSettings.setDefaultTimeout(timeout);
|
||||||
this._channel.setDefaultTimeoutNoReply({
|
this._wrapApiCall(async () => {
|
||||||
|
await this._channel.setDefaultTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
});
|
});
|
||||||
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
serial() {
|
serial() {
|
||||||
return this._initializer.serial;
|
return this._initializer.serial;
|
||||||
@@ -262,10 +241,10 @@ class AndroidDevice extends _channelOwner.ChannelOwner {
|
|||||||
const {
|
const {
|
||||||
binary
|
binary
|
||||||
} = await this._channel.screenshot();
|
} = await this._channel.screenshot();
|
||||||
if (options.path) await _fs.default.promises.writeFile(options.path, binary);
|
if (options.path) await this._platform.fs().promises.writeFile(options.path, binary);
|
||||||
return binary;
|
return binary;
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async close() {
|
async close() {
|
||||||
@@ -294,19 +273,19 @@ class AndroidDevice extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async installApk(file, options) {
|
async installApk(file, options) {
|
||||||
await this._channel.installApk({
|
await this._channel.installApk({
|
||||||
file: await loadFile(file),
|
file: await loadFile(this._platform, file),
|
||||||
args: options && options.args
|
args: options && options.args
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async push(file, path, options) {
|
async push(file, path, options) {
|
||||||
await this._channel.push({
|
await this._channel.push({
|
||||||
file: await loadFile(file),
|
file: await loadFile(this._platform, file),
|
||||||
path,
|
path,
|
||||||
mode: options ? options.mode : undefined
|
mode: options ? options.mode : undefined
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async launchBrowser(options = {}) {
|
async launchBrowser(options = {}) {
|
||||||
const contextOptions = await (0, _browserContext.prepareBrowserContextParams)(options);
|
const contextOptions = await (0, _browserContext.prepareBrowserContextParams)(this._platform, options);
|
||||||
const result = await this._channel.launchBrowser(contextOptions);
|
const result = await this._channel.launchBrowser(contextOptions);
|
||||||
const context = _browserContext.BrowserContext.from(result.context);
|
const context = _browserContext.BrowserContext.from(result.context);
|
||||||
context._setOptions(contextOptions, {});
|
context._setOptions(contextOptions, {});
|
||||||
@@ -350,8 +329,8 @@ class AndroidSocket extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.AndroidSocket = AndroidSocket;
|
exports.AndroidSocket = AndroidSocket;
|
||||||
async function loadFile(file) {
|
async function loadFile(platform, file) {
|
||||||
if ((0, _utils.isString)(file)) return await _fs.default.promises.readFile(file);
|
if ((0, _rtti.isString)(file)) return await platform.fs().promises.readFile(file);
|
||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
class AndroidInput {
|
class AndroidInput {
|
||||||
@@ -411,7 +390,7 @@ function toSelectorChannel(selector) {
|
|||||||
} = selector;
|
} = selector;
|
||||||
const toRegex = value => {
|
const toRegex = value => {
|
||||||
if (value === undefined) return undefined;
|
if (value === undefined) return undefined;
|
||||||
if ((0, _utils.isRegExp)(value)) return value.source;
|
if ((0, _rtti.isRegExp)(value)) return value.source;
|
||||||
return '^' + value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d') + '$';
|
return '^' + value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d') + '$';
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
@@ -439,9 +418,9 @@ function toSelectorChannel(selector) {
|
|||||||
selected
|
selected
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
class AndroidWebView extends _events2.EventEmitter {
|
class AndroidWebView extends _eventEmitter.EventEmitter {
|
||||||
constructor(device, data) {
|
constructor(device, data) {
|
||||||
super();
|
super(device._platform);
|
||||||
this._device = void 0;
|
this._device = void 0;
|
||||||
this._data = void 0;
|
this._data = void 0;
|
||||||
this._pagePromise = void 0;
|
this._pagePromise = void 0;
|
||||||
|
|||||||
11
tvapp2/node_modules/playwright-core/lib/client/artifact.js
generated
vendored
@@ -4,12 +4,9 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Artifact = void 0;
|
exports.Artifact = void 0;
|
||||||
var fs = _interopRequireWildcard(require("fs"));
|
|
||||||
var _stream = require("./stream");
|
|
||||||
var _fileUtils = require("../utils/fileUtils");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
var _stream = require("./stream");
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
var _fileUtils = require("./fileUtils");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -43,9 +40,9 @@ class Artifact extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
const result = await this._channel.saveAsStream();
|
const result = await this._channel.saveAsStream();
|
||||||
const stream = _stream.Stream.from(result.stream);
|
const stream = _stream.Stream.from(result.stream);
|
||||||
await (0, _fileUtils.mkdirIfNeeded)(path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, path);
|
||||||
await new Promise((resolve, reject) => {
|
await new Promise((resolve, reject) => {
|
||||||
stream.stream().pipe(fs.createWriteStream(path)).on('finish', resolve).on('error', reject);
|
stream.stream().pipe(this._platform.fs().createWriteStream(path)).on('finish', resolve).on('error', reject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async failure() {
|
async failure() {
|
||||||
|
|||||||
29
tvapp2/node_modules/playwright-core/lib/client/browser.js
generated
vendored
@@ -4,15 +4,13 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Browser = void 0;
|
exports.Browser = void 0;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
|
||||||
var _browserContext = require("./browserContext");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
|
||||||
var _events = require("./events");
|
|
||||||
var _errors = require("./errors");
|
|
||||||
var _cdpSession = require("./cdpSession");
|
|
||||||
var _artifact = require("./artifact");
|
var _artifact = require("./artifact");
|
||||||
var _utils = require("../utils");
|
var _browserContext = require("./browserContext");
|
||||||
let _Symbol$asyncDispose;
|
var _cdpSession = require("./cdpSession");
|
||||||
|
var _channelOwner = require("./channelOwner");
|
||||||
|
var _errors = require("./errors");
|
||||||
|
var _events = require("./events");
|
||||||
|
var _fileUtils = require("./fileUtils");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -28,8 +26,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class Browser extends _channelOwner.ChannelOwner {
|
class Browser extends _channelOwner.ChannelOwner {
|
||||||
static from(browser) {
|
static from(browser) {
|
||||||
return browser._object;
|
return browser._object;
|
||||||
@@ -44,8 +41,6 @@ class Browser extends _channelOwner.ChannelOwner {
|
|||||||
this._options = {};
|
this._options = {};
|
||||||
this._name = void 0;
|
this._name = void 0;
|
||||||
this._path = void 0;
|
this._path = void 0;
|
||||||
// Used from @playwright/test fixtures.
|
|
||||||
this._connectHeaders = void 0;
|
|
||||||
this._closeReason = void 0;
|
this._closeReason = void 0;
|
||||||
this._name = initializer.name;
|
this._name = initializer.name;
|
||||||
this._channel.on('close', () => this._didClose());
|
this._channel.on('close', () => this._didClose());
|
||||||
@@ -76,10 +71,10 @@ class Browser extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async _innerNewContext(options = {}, forReuse) {
|
async _innerNewContext(options = {}, forReuse) {
|
||||||
options = {
|
options = {
|
||||||
...this._browserType._defaultContextOptions,
|
...this._browserType._playwright._defaultContextOptions,
|
||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
const contextOptions = await (0, _browserContext.prepareBrowserContextParams)(options);
|
const contextOptions = await (0, _browserContext.prepareBrowserContextParams)(this._platform, options);
|
||||||
const response = forReuse ? await this._channel.newContextForReuse(contextOptions) : await this._channel.newContext(contextOptions);
|
const response = forReuse ? await this._channel.newContextForReuse(contextOptions) : await this._channel.newContext(contextOptions);
|
||||||
const context = _browserContext.BrowserContext.from(response.context);
|
const context = _browserContext.BrowserContext.from(response.context);
|
||||||
await this._browserType._didCreateContext(context, contextOptions, this._options, options.logger || this._logger);
|
await this._browserType._didCreateContext(context, contextOptions, this._options, options.logger || this._logger);
|
||||||
@@ -118,13 +113,13 @@ class Browser extends _channelOwner.ChannelOwner {
|
|||||||
const buffer = await artifact.readIntoBuffer();
|
const buffer = await artifact.readIntoBuffer();
|
||||||
await artifact.delete();
|
await artifact.delete();
|
||||||
if (this._path) {
|
if (this._path) {
|
||||||
await (0, _utils.mkdirIfNeeded)(this._path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, this._path);
|
||||||
await _fs.default.promises.writeFile(this._path, buffer);
|
await this._platform.fs().promises.writeFile(this._path, buffer);
|
||||||
this._path = undefined;
|
this._path = undefined;
|
||||||
}
|
}
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async close(options = {}) {
|
async close(options = {}) {
|
||||||
|
|||||||
133
tvapp2/node_modules/playwright-core/lib/client/browserContext.js
generated
vendored
@@ -6,31 +6,33 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.BrowserContext = void 0;
|
exports.BrowserContext = void 0;
|
||||||
exports.prepareBrowserContextParams = prepareBrowserContextParams;
|
exports.prepareBrowserContextParams = prepareBrowserContextParams;
|
||||||
exports.toClientCertificatesProtocol = toClientCertificatesProtocol;
|
exports.toClientCertificatesProtocol = toClientCertificatesProtocol;
|
||||||
var _page = require("./page");
|
var _artifact = require("./artifact");
|
||||||
var _frame = require("./frame");
|
var _browser = require("./browser");
|
||||||
var network = _interopRequireWildcard(require("./network"));
|
var _cdpSession = require("./cdpSession");
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
|
||||||
var _path = _interopRequireDefault(require("path"));
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _clientHelper = require("./clientHelper");
|
var _clientHelper = require("./clientHelper");
|
||||||
var _browser = require("./browser");
|
var _clock = require("./clock");
|
||||||
var _worker = require("./worker");
|
|
||||||
var _events = require("./events");
|
|
||||||
var _timeoutSettings = require("../common/timeoutSettings");
|
|
||||||
var _waiter = require("./waiter");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _cdpSession = require("./cdpSession");
|
|
||||||
var _tracing = require("./tracing");
|
|
||||||
var _artifact = require("./artifact");
|
|
||||||
var _fetch = require("./fetch");
|
|
||||||
var _stackTrace = require("../utils/stackTrace");
|
|
||||||
var _harRouter = require("./harRouter");
|
|
||||||
var _consoleMessage = require("./consoleMessage");
|
var _consoleMessage = require("./consoleMessage");
|
||||||
var _dialog = require("./dialog");
|
var _dialog = require("./dialog");
|
||||||
var _webError = require("./webError");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
var _clock = require("./clock");
|
var _events = require("./events");
|
||||||
let _Symbol$asyncDispose;
|
var _fetch = require("./fetch");
|
||||||
|
var _frame = require("./frame");
|
||||||
|
var _harRouter = require("./harRouter");
|
||||||
|
var network = _interopRequireWildcard(require("./network"));
|
||||||
|
var _page = require("./page");
|
||||||
|
var _tracing = require("./tracing");
|
||||||
|
var _waiter = require("./waiter");
|
||||||
|
var _webError = require("./webError");
|
||||||
|
var _worker = require("./worker");
|
||||||
|
var _timeoutSettings = require("./timeoutSettings");
|
||||||
|
var _fileUtils = require("./fileUtils");
|
||||||
|
var _headers = require("../utils/isomorphic/headers");
|
||||||
|
var _urlMatch = require("../utils/isomorphic/urlMatch");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
|
var _stackTrace = require("../utils/isomorphic/stackTrace");
|
||||||
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
/**
|
/**
|
||||||
* Copyright 2017 Google Inc. All rights reserved.
|
* Copyright 2017 Google Inc. All rights reserved.
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
* Modifications copyright (c) Microsoft Corporation.
|
||||||
@@ -47,10 +49,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class BrowserContext extends _channelOwner.ChannelOwner {
|
class BrowserContext extends _channelOwner.ChannelOwner {
|
||||||
static from(context) {
|
static from(context) {
|
||||||
return context._object;
|
return context._object;
|
||||||
@@ -67,7 +66,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
this._browser = null;
|
this._browser = null;
|
||||||
this._browserType = void 0;
|
this._browserType = void 0;
|
||||||
this._bindings = new Map();
|
this._bindings = new Map();
|
||||||
this._timeoutSettings = new _timeoutSettings.TimeoutSettings();
|
this._timeoutSettings = void 0;
|
||||||
this._ownerPage = void 0;
|
this._ownerPage = void 0;
|
||||||
this._closedPromise = void 0;
|
this._closedPromise = void 0;
|
||||||
this._options = {};
|
this._options = {};
|
||||||
@@ -81,6 +80,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
this._closeWasCalled = false;
|
this._closeWasCalled = false;
|
||||||
this._closeReason = void 0;
|
this._closeReason = void 0;
|
||||||
this._harRouters = [];
|
this._harRouters = [];
|
||||||
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._platform);
|
||||||
if (parent instanceof _browser.Browser) this._browser = parent;
|
if (parent instanceof _browser.Browser) this._browser = parent;
|
||||||
(_this$_browser = this._browser) === null || _this$_browser === void 0 || _this$_browser._contexts.add(this);
|
(_this$_browser = this._browser) === null || _this$_browser === void 0 || _this$_browser._contexts.add(this);
|
||||||
this._isChromium = ((_this$_browser2 = this._browser) === null || _this$_browser2 === void 0 ? void 0 : _this$_browser2._name) === 'chromium';
|
this._isChromium = ((_this$_browser2 = this._browser) === null || _this$_browser2 === void 0 ? void 0 : _this$_browser2._name) === 'chromium';
|
||||||
@@ -116,7 +116,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
this.emit(_events.Events.BrowserContext.ServiceWorker, serviceWorker);
|
this.emit(_events.Events.BrowserContext.ServiceWorker, serviceWorker);
|
||||||
});
|
});
|
||||||
this._channel.on('console', event => {
|
this._channel.on('console', event => {
|
||||||
const consoleMessage = new _consoleMessage.ConsoleMessage(event);
|
const consoleMessage = new _consoleMessage.ConsoleMessage(this._platform, event);
|
||||||
this.emit(_events.Events.BrowserContext.Console, consoleMessage);
|
this.emit(_events.Events.BrowserContext.Console, consoleMessage);
|
||||||
const page = consoleMessage.page();
|
const page = consoleMessage.page();
|
||||||
if (page) page.emit(_events.Events.Page.Console, consoleMessage);
|
if (page) page.emit(_events.Events.Page.Console, consoleMessage);
|
||||||
@@ -233,18 +233,18 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
setDefaultNavigationTimeout(timeout) {
|
setDefaultNavigationTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultNavigationTimeout(timeout);
|
this._timeoutSettings.setDefaultNavigationTimeout(timeout);
|
||||||
this._wrapApiCall(async () => {
|
this._wrapApiCall(async () => {
|
||||||
this._channel.setDefaultNavigationTimeoutNoReply({
|
await this._channel.setDefaultNavigationTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
}).catch(() => {});
|
});
|
||||||
}, true);
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
setDefaultTimeout(timeout) {
|
setDefaultTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultTimeout(timeout);
|
this._timeoutSettings.setDefaultTimeout(timeout);
|
||||||
this._wrapApiCall(async () => {
|
this._wrapApiCall(async () => {
|
||||||
this._channel.setDefaultTimeoutNoReply({
|
await this._channel.setDefaultTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
}).catch(() => {});
|
});
|
||||||
}, true);
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
browser() {
|
browser() {
|
||||||
return this._browser;
|
return this._browser;
|
||||||
@@ -270,15 +270,15 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async clearCookies(options = {}) {
|
async clearCookies(options = {}) {
|
||||||
await this._channel.clearCookies({
|
await this._channel.clearCookies({
|
||||||
name: (0, _utils.isString)(options.name) ? options.name : undefined,
|
name: (0, _rtti.isString)(options.name) ? options.name : undefined,
|
||||||
nameRegexSource: (0, _utils.isRegExp)(options.name) ? options.name.source : undefined,
|
nameRegexSource: (0, _rtti.isRegExp)(options.name) ? options.name.source : undefined,
|
||||||
nameRegexFlags: (0, _utils.isRegExp)(options.name) ? options.name.flags : undefined,
|
nameRegexFlags: (0, _rtti.isRegExp)(options.name) ? options.name.flags : undefined,
|
||||||
domain: (0, _utils.isString)(options.domain) ? options.domain : undefined,
|
domain: (0, _rtti.isString)(options.domain) ? options.domain : undefined,
|
||||||
domainRegexSource: (0, _utils.isRegExp)(options.domain) ? options.domain.source : undefined,
|
domainRegexSource: (0, _rtti.isRegExp)(options.domain) ? options.domain.source : undefined,
|
||||||
domainRegexFlags: (0, _utils.isRegExp)(options.domain) ? options.domain.flags : undefined,
|
domainRegexFlags: (0, _rtti.isRegExp)(options.domain) ? options.domain.flags : undefined,
|
||||||
path: (0, _utils.isString)(options.path) ? options.path : undefined,
|
path: (0, _rtti.isString)(options.path) ? options.path : undefined,
|
||||||
pathRegexSource: (0, _utils.isRegExp)(options.path) ? options.path.source : undefined,
|
pathRegexSource: (0, _rtti.isRegExp)(options.path) ? options.path.source : undefined,
|
||||||
pathRegexFlags: (0, _utils.isRegExp)(options.path) ? options.path.flags : undefined
|
pathRegexFlags: (0, _rtti.isRegExp)(options.path) ? options.path.flags : undefined
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async grantPermissions(permissions, options) {
|
async grantPermissions(permissions, options) {
|
||||||
@@ -298,7 +298,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
async setExtraHTTPHeaders(headers) {
|
async setExtraHTTPHeaders(headers) {
|
||||||
network.validateHeaders(headers);
|
network.validateHeaders(headers);
|
||||||
await this._channel.setExtraHTTPHeaders({
|
await this._channel.setExtraHTTPHeaders({
|
||||||
headers: (0, _utils.headersObjectToArray)(headers)
|
headers: (0, _headers.headersObjectToArray)(headers)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async setOffline(offline) {
|
async setOffline(offline) {
|
||||||
@@ -312,7 +312,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async addInitScript(script, arg) {
|
async addInitScript(script, arg) {
|
||||||
const source = await (0, _clientHelper.evaluationScript)(script, arg);
|
const source = await (0, _clientHelper.evaluationScript)(this._platform, script, arg);
|
||||||
await this._channel.addInitScript({
|
await this._channel.addInitScript({
|
||||||
source
|
source
|
||||||
});
|
});
|
||||||
@@ -332,7 +332,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
this._bindings.set(name, binding);
|
this._bindings.set(name, binding);
|
||||||
}
|
}
|
||||||
async route(url, handler, options = {}) {
|
async route(url, handler, options = {}) {
|
||||||
this._routes.unshift(new network.RouteHandler(this._options.baseURL, url, handler, options.times));
|
this._routes.unshift(new network.RouteHandler(this._platform, this._options.baseURL, url, handler, options.times));
|
||||||
await this._updateInterceptionPatterns();
|
await this._updateInterceptionPatterns();
|
||||||
}
|
}
|
||||||
async routeWebSocket(url, handler) {
|
async routeWebSocket(url, handler) {
|
||||||
@@ -358,11 +358,13 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async routeFromHAR(har, options = {}) {
|
async routeFromHAR(har, options = {}) {
|
||||||
|
const localUtils = this._connection.localUtils();
|
||||||
|
if (!localUtils) throw new Error('Route from har is not supported in thin clients');
|
||||||
if (options.update) {
|
if (options.update) {
|
||||||
await this._recordIntoHAR(har, null, options);
|
await this._recordIntoHAR(har, null, options);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const harRouter = await _harRouter.HarRouter.create(this._connection.localUtils(), har, options.notFound || 'abort', {
|
const harRouter = await _harRouter.HarRouter.create(localUtils, har, options.notFound || 'abort', {
|
||||||
urlMatch: options.url
|
urlMatch: options.url
|
||||||
});
|
});
|
||||||
this._harRouters.push(harRouter);
|
this._harRouters.push(harRouter);
|
||||||
@@ -380,7 +382,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
const removed = [];
|
const removed = [];
|
||||||
const remaining = [];
|
const remaining = [];
|
||||||
for (const route of this._routes) {
|
for (const route of this._routes) {
|
||||||
if ((0, _utils.urlMatchesEqual)(route.url, url) && (!handler || route.handler === handler)) removed.push(route);else remaining.push(route);
|
if ((0, _urlMatch.urlMatchesEqual)(route.url, url) && (!handler || route.handler === handler)) removed.push(route);else remaining.push(route);
|
||||||
}
|
}
|
||||||
await this._unrouteInternal(removed, remaining, 'default');
|
await this._unrouteInternal(removed, remaining, 'default');
|
||||||
}
|
}
|
||||||
@@ -420,10 +422,12 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async storageState(options = {}) {
|
async storageState(options = {}) {
|
||||||
const state = await this._channel.storageState();
|
const state = await this._channel.storageState({
|
||||||
|
indexedDB: options.indexedDB
|
||||||
|
});
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
await (0, _utils.mkdirIfNeeded)(options.path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, options.path);
|
||||||
await _fs.default.promises.writeFile(options.path, JSON.stringify(state, undefined, 2), 'utf8');
|
await this._platform.fs().promises.writeFile(options.path, JSON.stringify(state, undefined, 2), 'utf8');
|
||||||
}
|
}
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
@@ -451,7 +455,7 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
this.tracing._resetStackCounter();
|
this.tracing._resetStackCounter();
|
||||||
this.emit(_events.Events.BrowserContext.Close, this);
|
this.emit(_events.Events.BrowserContext.Close, this);
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async close(options = {}) {
|
async close(options = {}) {
|
||||||
@@ -473,8 +477,10 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
const isCompressed = harParams.content === 'attach' || harParams.path.endsWith('.zip');
|
const isCompressed = harParams.content === 'attach' || harParams.path.endsWith('.zip');
|
||||||
const needCompressed = harParams.path.endsWith('.zip');
|
const needCompressed = harParams.path.endsWith('.zip');
|
||||||
if (isCompressed && !needCompressed) {
|
if (isCompressed && !needCompressed) {
|
||||||
|
const localUtils = this._connection.localUtils();
|
||||||
|
if (!localUtils) throw new Error('Uncompressed har is not supported in thin clients');
|
||||||
await artifact.saveAs(harParams.path + '.tmp');
|
await artifact.saveAs(harParams.path + '.tmp');
|
||||||
await this._connection.localUtils()._channel.harUnzip({
|
await localUtils.harUnzip({
|
||||||
zipFile: harParams.path + '.tmp',
|
zipFile: harParams.path + '.tmp',
|
||||||
harFile: harParams.path
|
harFile: harParams.path
|
||||||
});
|
});
|
||||||
@@ -492,10 +498,10 @@ class BrowserContext extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.BrowserContext = BrowserContext;
|
exports.BrowserContext = BrowserContext;
|
||||||
async function prepareStorageState(options) {
|
async function prepareStorageState(platform, options) {
|
||||||
if (typeof options.storageState !== 'string') return options.storageState;
|
if (typeof options.storageState !== 'string') return options.storageState;
|
||||||
try {
|
try {
|
||||||
return JSON.parse(await _fs.default.promises.readFile(options.storageState, 'utf8'));
|
return JSON.parse(await platform.fs().promises.readFile(options.storageState, 'utf8'));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
(0, _stackTrace.rewriteErrorMessage)(e, `Error reading storage state from ${options.storageState}:\n` + e.message);
|
(0, _stackTrace.rewriteErrorMessage)(e, `Error reading storage state from ${options.storageState}:\n` + e.message);
|
||||||
throw e;
|
throw e;
|
||||||
@@ -506,28 +512,29 @@ function prepareRecordHarOptions(options) {
|
|||||||
return {
|
return {
|
||||||
path: options.path,
|
path: options.path,
|
||||||
content: options.content || (options.omitContent ? 'omit' : undefined),
|
content: options.content || (options.omitContent ? 'omit' : undefined),
|
||||||
urlGlob: (0, _utils.isString)(options.urlFilter) ? options.urlFilter : undefined,
|
urlGlob: (0, _rtti.isString)(options.urlFilter) ? options.urlFilter : undefined,
|
||||||
urlRegexSource: (0, _utils.isRegExp)(options.urlFilter) ? options.urlFilter.source : undefined,
|
urlRegexSource: (0, _rtti.isRegExp)(options.urlFilter) ? options.urlFilter.source : undefined,
|
||||||
urlRegexFlags: (0, _utils.isRegExp)(options.urlFilter) ? options.urlFilter.flags : undefined,
|
urlRegexFlags: (0, _rtti.isRegExp)(options.urlFilter) ? options.urlFilter.flags : undefined,
|
||||||
mode: options.mode
|
mode: options.mode
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
async function prepareBrowserContextParams(options) {
|
async function prepareBrowserContextParams(platform, options) {
|
||||||
if (options.videoSize && !options.videosPath) throw new Error(`"videoSize" option requires "videosPath" to be specified`);
|
if (options.videoSize && !options.videosPath) throw new Error(`"videoSize" option requires "videosPath" to be specified`);
|
||||||
if (options.extraHTTPHeaders) network.validateHeaders(options.extraHTTPHeaders);
|
if (options.extraHTTPHeaders) network.validateHeaders(options.extraHTTPHeaders);
|
||||||
const contextParams = {
|
const contextParams = {
|
||||||
...options,
|
...options,
|
||||||
viewport: options.viewport === null ? undefined : options.viewport,
|
viewport: options.viewport === null ? undefined : options.viewport,
|
||||||
noDefaultViewport: options.viewport === null,
|
noDefaultViewport: options.viewport === null,
|
||||||
extraHTTPHeaders: options.extraHTTPHeaders ? (0, _utils.headersObjectToArray)(options.extraHTTPHeaders) : undefined,
|
extraHTTPHeaders: options.extraHTTPHeaders ? (0, _headers.headersObjectToArray)(options.extraHTTPHeaders) : undefined,
|
||||||
storageState: await prepareStorageState(options),
|
storageState: await prepareStorageState(platform, options),
|
||||||
serviceWorkers: options.serviceWorkers,
|
serviceWorkers: options.serviceWorkers,
|
||||||
recordHar: prepareRecordHarOptions(options.recordHar),
|
recordHar: prepareRecordHarOptions(options.recordHar),
|
||||||
colorScheme: options.colorScheme === null ? 'no-override' : options.colorScheme,
|
colorScheme: options.colorScheme === null ? 'no-override' : options.colorScheme,
|
||||||
reducedMotion: options.reducedMotion === null ? 'no-override' : options.reducedMotion,
|
reducedMotion: options.reducedMotion === null ? 'no-override' : options.reducedMotion,
|
||||||
forcedColors: options.forcedColors === null ? 'no-override' : options.forcedColors,
|
forcedColors: options.forcedColors === null ? 'no-override' : options.forcedColors,
|
||||||
|
contrast: options.contrast === null ? 'no-override' : options.contrast,
|
||||||
acceptDownloads: toAcceptDownloadsProtocol(options.acceptDownloads),
|
acceptDownloads: toAcceptDownloadsProtocol(options.acceptDownloads),
|
||||||
clientCertificates: await toClientCertificatesProtocol(options.clientCertificates)
|
clientCertificates: await toClientCertificatesProtocol(platform, options.clientCertificates)
|
||||||
};
|
};
|
||||||
if (!contextParams.recordVideo && options.videosPath) {
|
if (!contextParams.recordVideo && options.videosPath) {
|
||||||
contextParams.recordVideo = {
|
contextParams.recordVideo = {
|
||||||
@@ -535,7 +542,7 @@ async function prepareBrowserContextParams(options) {
|
|||||||
size: options.videoSize
|
size: options.videoSize
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if (contextParams.recordVideo && contextParams.recordVideo.dir) contextParams.recordVideo.dir = _path.default.resolve(process.cwd(), contextParams.recordVideo.dir);
|
if (contextParams.recordVideo && contextParams.recordVideo.dir) contextParams.recordVideo.dir = platform.path().resolve(contextParams.recordVideo.dir);
|
||||||
return contextParams;
|
return contextParams;
|
||||||
}
|
}
|
||||||
function toAcceptDownloadsProtocol(acceptDownloads) {
|
function toAcceptDownloadsProtocol(acceptDownloads) {
|
||||||
@@ -543,11 +550,11 @@ function toAcceptDownloadsProtocol(acceptDownloads) {
|
|||||||
if (acceptDownloads) return 'accept';
|
if (acceptDownloads) return 'accept';
|
||||||
return 'deny';
|
return 'deny';
|
||||||
}
|
}
|
||||||
async function toClientCertificatesProtocol(certs) {
|
async function toClientCertificatesProtocol(platform, certs) {
|
||||||
if (!certs) return undefined;
|
if (!certs) return undefined;
|
||||||
const bufferizeContent = async (value, path) => {
|
const bufferizeContent = async (value, path) => {
|
||||||
if (value) return value;
|
if (value) return value;
|
||||||
if (path) return await _fs.default.promises.readFile(path);
|
if (path) return await platform.fs().promises.readFile(path);
|
||||||
};
|
};
|
||||||
return await Promise.all(certs.map(async cert => ({
|
return await Promise.all(certs.map(async cert => ({
|
||||||
origin: cert.origin,
|
origin: cert.origin,
|
||||||
|
|||||||
94
tvapp2/node_modules/playwright-core/lib/client/browserType.js
generated
vendored
@@ -7,11 +7,13 @@ exports.BrowserType = void 0;
|
|||||||
var _browser3 = require("./browser");
|
var _browser3 = require("./browser");
|
||||||
var _browserContext = require("./browserContext");
|
var _browserContext = require("./browserContext");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _connection = require("./connection");
|
|
||||||
var _events = require("./events");
|
|
||||||
var _clientHelper = require("./clientHelper");
|
var _clientHelper = require("./clientHelper");
|
||||||
var _utils = require("../utils");
|
var _events = require("./events");
|
||||||
var _timeoutRunner = require("../utils/timeoutRunner");
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
|
var _headers = require("../utils/isomorphic/headers");
|
||||||
|
var _time = require("../utils/isomorphic/time");
|
||||||
|
var _timeoutRunner = require("../utils/isomorphic/timeoutRunner");
|
||||||
|
var _webSocket = require("./webSocket");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -36,11 +38,6 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
this._serverLauncher = void 0;
|
this._serverLauncher = void 0;
|
||||||
this._contexts = new Set();
|
this._contexts = new Set();
|
||||||
this._playwright = void 0;
|
this._playwright = void 0;
|
||||||
// Instrumentation.
|
|
||||||
this._defaultContextOptions = void 0;
|
|
||||||
this._defaultContextTimeout = void 0;
|
|
||||||
this._defaultContextNavigationTimeout = void 0;
|
|
||||||
this._defaultLaunchOptions = void 0;
|
|
||||||
}
|
}
|
||||||
static from(browserType) {
|
static from(browserType) {
|
||||||
return browserType._object;
|
return browserType._object;
|
||||||
@@ -53,12 +50,12 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
return this._initializer.name;
|
return this._initializer.name;
|
||||||
}
|
}
|
||||||
async launch(options = {}) {
|
async launch(options = {}) {
|
||||||
var _this$_defaultLaunchO;
|
var _this$_playwright$_de;
|
||||||
(0, _utils.assert)(!options.userDataDir, 'userDataDir option is not supported in `browserType.launch`. Use `browserType.launchPersistentContext` instead');
|
(0, _assert.assert)(!options.userDataDir, 'userDataDir option is not supported in `browserType.launch`. Use `browserType.launchPersistentContext` instead');
|
||||||
(0, _utils.assert)(!options.port, 'Cannot specify a port without launching as a server.');
|
(0, _assert.assert)(!options.port, 'Cannot specify a port without launching as a server.');
|
||||||
const logger = options.logger || ((_this$_defaultLaunchO = this._defaultLaunchOptions) === null || _this$_defaultLaunchO === void 0 ? void 0 : _this$_defaultLaunchO.logger);
|
const logger = options.logger || ((_this$_playwright$_de = this._playwright._defaultLaunchOptions) === null || _this$_playwright$_de === void 0 ? void 0 : _this$_playwright$_de.logger);
|
||||||
options = {
|
options = {
|
||||||
...this._defaultLaunchOptions,
|
...this._playwright._defaultLaunchOptions,
|
||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
const launchOptions = {
|
const launchOptions = {
|
||||||
@@ -76,28 +73,28 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
async launchServer(options = {}) {
|
async launchServer(options = {}) {
|
||||||
if (!this._serverLauncher) throw new Error('Launching server is not supported');
|
if (!this._serverLauncher) throw new Error('Launching server is not supported');
|
||||||
options = {
|
options = {
|
||||||
...this._defaultLaunchOptions,
|
...this._playwright._defaultLaunchOptions,
|
||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
return await this._serverLauncher.launchServer(options);
|
return await this._serverLauncher.launchServer(options);
|
||||||
}
|
}
|
||||||
async launchPersistentContext(userDataDir, options = {}) {
|
async launchPersistentContext(userDataDir, options = {}) {
|
||||||
var _this$_defaultLaunchO2;
|
var _this$_playwright$_de2;
|
||||||
const logger = options.logger || ((_this$_defaultLaunchO2 = this._defaultLaunchOptions) === null || _this$_defaultLaunchO2 === void 0 ? void 0 : _this$_defaultLaunchO2.logger);
|
const logger = options.logger || ((_this$_playwright$_de2 = this._playwright._defaultLaunchOptions) === null || _this$_playwright$_de2 === void 0 ? void 0 : _this$_playwright$_de2.logger);
|
||||||
(0, _utils.assert)(!options.port, 'Cannot specify a port without launching as a server.');
|
(0, _assert.assert)(!options.port, 'Cannot specify a port without launching as a server.');
|
||||||
options = {
|
options = {
|
||||||
...this._defaultLaunchOptions,
|
...this._playwright._defaultLaunchOptions,
|
||||||
...this._defaultContextOptions,
|
...this._playwright._defaultContextOptions,
|
||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
const contextParams = await (0, _browserContext.prepareBrowserContextParams)(options);
|
const contextParams = await (0, _browserContext.prepareBrowserContextParams)(this._platform, options);
|
||||||
const persistentParams = {
|
const persistentParams = {
|
||||||
...contextParams,
|
...contextParams,
|
||||||
ignoreDefaultArgs: Array.isArray(options.ignoreDefaultArgs) ? options.ignoreDefaultArgs : undefined,
|
ignoreDefaultArgs: Array.isArray(options.ignoreDefaultArgs) ? options.ignoreDefaultArgs : undefined,
|
||||||
ignoreAllDefaultArgs: !!options.ignoreDefaultArgs && !Array.isArray(options.ignoreDefaultArgs),
|
ignoreAllDefaultArgs: !!options.ignoreDefaultArgs && !Array.isArray(options.ignoreDefaultArgs),
|
||||||
env: options.env ? (0, _clientHelper.envObjectToArray)(options.env) : undefined,
|
env: options.env ? (0, _clientHelper.envObjectToArray)(options.env) : undefined,
|
||||||
channel: options.channel,
|
channel: options.channel,
|
||||||
userDataDir
|
userDataDir: this._platform.path().isAbsolute(userDataDir) || !userDataDir ? userDataDir : this._platform.path().resolve(userDataDir)
|
||||||
};
|
};
|
||||||
return await this._wrapApiCall(async () => {
|
return await this._wrapApiCall(async () => {
|
||||||
const result = await this._channel.launchPersistentContext(persistentParams);
|
const result = await this._channel.launchPersistentContext(persistentParams);
|
||||||
@@ -111,19 +108,18 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
...options,
|
...options,
|
||||||
wsEndpoint: optionsOrWsEndpoint
|
wsEndpoint: optionsOrWsEndpoint
|
||||||
});
|
});
|
||||||
(0, _utils.assert)(optionsOrWsEndpoint.wsEndpoint, 'options.wsEndpoint is required');
|
(0, _assert.assert)(optionsOrWsEndpoint.wsEndpoint, 'options.wsEndpoint is required');
|
||||||
return await this._connect(optionsOrWsEndpoint);
|
return await this._connect(optionsOrWsEndpoint);
|
||||||
}
|
}
|
||||||
async _connect(params) {
|
async _connect(params) {
|
||||||
const logger = params.logger;
|
const logger = params.logger;
|
||||||
return await this._wrapApiCall(async () => {
|
return await this._wrapApiCall(async () => {
|
||||||
var _params$exposeNetwork;
|
var _params$exposeNetwork;
|
||||||
const deadline = params.timeout ? (0, _utils.monotonicTime)() + params.timeout : 0;
|
const deadline = params.timeout ? (0, _time.monotonicTime)() + params.timeout : 0;
|
||||||
const headers = {
|
const headers = {
|
||||||
'x-playwright-browser': this.name(),
|
'x-playwright-browser': this.name(),
|
||||||
...params.headers
|
...params.headers
|
||||||
};
|
};
|
||||||
const localUtils = this._connection.localUtils();
|
|
||||||
const connectParams = {
|
const connectParams = {
|
||||||
wsEndpoint: params.wsEndpoint,
|
wsEndpoint: params.wsEndpoint,
|
||||||
headers,
|
headers,
|
||||||
@@ -132,69 +128,39 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
timeout: params.timeout
|
timeout: params.timeout
|
||||||
};
|
};
|
||||||
if (params.__testHookRedirectPortForwarding) connectParams.socksProxyRedirectPortForTest = params.__testHookRedirectPortForwarding;
|
if (params.__testHookRedirectPortForwarding) connectParams.socksProxyRedirectPortForTest = params.__testHookRedirectPortForwarding;
|
||||||
const {
|
const connection = await (0, _webSocket.connectOverWebSocket)(this._connection, connectParams);
|
||||||
pipe,
|
|
||||||
headers: connectHeaders
|
|
||||||
} = await localUtils._channel.connect(connectParams);
|
|
||||||
const closePipe = () => pipe.close().catch(() => {});
|
|
||||||
const connection = new _connection.Connection(localUtils, this._instrumentation);
|
|
||||||
connection.markAsRemote();
|
|
||||||
connection.on('close', closePipe);
|
|
||||||
let browser;
|
let browser;
|
||||||
let closeError;
|
connection.on('close', () => {
|
||||||
const onPipeClosed = reason => {
|
|
||||||
// Emulate all pages, contexts and the browser closing upon disconnect.
|
// Emulate all pages, contexts and the browser closing upon disconnect.
|
||||||
for (const context of ((_browser = browser) === null || _browser === void 0 ? void 0 : _browser.contexts()) || []) {
|
for (const context of ((_browser = browser) === null || _browser === void 0 ? void 0 : _browser.contexts()) || []) {
|
||||||
var _browser;
|
var _browser;
|
||||||
for (const page of context.pages()) page._onClose();
|
for (const page of context.pages()) page._onClose();
|
||||||
context._onClose();
|
context._onClose();
|
||||||
}
|
}
|
||||||
connection.close(reason || closeError);
|
|
||||||
// Give a chance to any API call promises to reject upon page/context closure.
|
|
||||||
// This happens naturally when we receive page.onClose and browser.onClose from the server
|
|
||||||
// in separate tasks. However, upon pipe closure we used to dispatch them all synchronously
|
|
||||||
// here and promises did not have a chance to reject.
|
|
||||||
// The order of rejects vs closure is a part of the API contract and our test runner
|
|
||||||
// relies on it to attribute rejections to the right test.
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
var _browser2;
|
var _browser2;
|
||||||
return (_browser2 = browser) === null || _browser2 === void 0 ? void 0 : _browser2._didClose();
|
return (_browser2 = browser) === null || _browser2 === void 0 ? void 0 : _browser2._didClose();
|
||||||
}, 0);
|
}, 0);
|
||||||
};
|
|
||||||
pipe.on('closed', params => onPipeClosed(params.reason));
|
|
||||||
connection.onmessage = message => this._wrapApiCall(() => pipe.send({
|
|
||||||
message
|
|
||||||
}).catch(() => onPipeClosed()), /* isInternal */true);
|
|
||||||
pipe.on('message', ({
|
|
||||||
message
|
|
||||||
}) => {
|
|
||||||
try {
|
|
||||||
connection.dispatch(message);
|
|
||||||
} catch (e) {
|
|
||||||
closeError = String(e);
|
|
||||||
closePipe();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
const result = await (0, _timeoutRunner.raceAgainstDeadline)(async () => {
|
const result = await (0, _timeoutRunner.raceAgainstDeadline)(async () => {
|
||||||
// For tests.
|
// For tests.
|
||||||
if (params.__testHookBeforeCreateBrowser) await params.__testHookBeforeCreateBrowser();
|
if (params.__testHookBeforeCreateBrowser) await params.__testHookBeforeCreateBrowser();
|
||||||
const playwright = await connection.initializePlaywright();
|
const playwright = await connection.initializePlaywright();
|
||||||
if (!playwright._initializer.preLaunchedBrowser) {
|
if (!playwright._initializer.preLaunchedBrowser) {
|
||||||
closePipe();
|
connection.close();
|
||||||
throw new Error('Malformed endpoint. Did you use BrowserType.launchServer method?');
|
throw new Error('Malformed endpoint. Did you use BrowserType.launchServer method?');
|
||||||
}
|
}
|
||||||
playwright._setSelectors(this._playwright.selectors);
|
playwright._setSelectors(this._playwright.selectors);
|
||||||
browser = _browser3.Browser.from(playwright._initializer.preLaunchedBrowser);
|
browser = _browser3.Browser.from(playwright._initializer.preLaunchedBrowser);
|
||||||
this._didLaunchBrowser(browser, {}, logger);
|
this._didLaunchBrowser(browser, {}, logger);
|
||||||
browser._shouldCloseConnectionOnClose = true;
|
browser._shouldCloseConnectionOnClose = true;
|
||||||
browser._connectHeaders = connectHeaders;
|
browser.on(_events.Events.Browser.Disconnected, () => connection.close());
|
||||||
browser.on(_events.Events.Browser.Disconnected, () => this._wrapApiCall(() => closePipe(), /* isInternal */true));
|
|
||||||
return browser;
|
return browser;
|
||||||
}, deadline);
|
}, deadline);
|
||||||
if (!result.timedOut) {
|
if (!result.timedOut) {
|
||||||
return result.result;
|
return result.result;
|
||||||
} else {
|
} else {
|
||||||
closePipe();
|
connection.close();
|
||||||
throw new Error(`Timeout ${params.timeout}ms exceeded`);
|
throw new Error(`Timeout ${params.timeout}ms exceeded`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -202,12 +168,12 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
async connectOverCDP(endpointURLOrOptions, options) {
|
async connectOverCDP(endpointURLOrOptions, options) {
|
||||||
if (typeof endpointURLOrOptions === 'string') return await this._connectOverCDP(endpointURLOrOptions, options);
|
if (typeof endpointURLOrOptions === 'string') return await this._connectOverCDP(endpointURLOrOptions, options);
|
||||||
const endpointURL = 'endpointURL' in endpointURLOrOptions ? endpointURLOrOptions.endpointURL : endpointURLOrOptions.wsEndpoint;
|
const endpointURL = 'endpointURL' in endpointURLOrOptions ? endpointURLOrOptions.endpointURL : endpointURLOrOptions.wsEndpoint;
|
||||||
(0, _utils.assert)(endpointURL, 'Cannot connect over CDP without wsEndpoint.');
|
(0, _assert.assert)(endpointURL, 'Cannot connect over CDP without wsEndpoint.');
|
||||||
return await this.connectOverCDP(endpointURL, endpointURLOrOptions);
|
return await this.connectOverCDP(endpointURL, endpointURLOrOptions);
|
||||||
}
|
}
|
||||||
async _connectOverCDP(endpointURL, params = {}) {
|
async _connectOverCDP(endpointURL, params = {}) {
|
||||||
if (this.name() !== 'chromium') throw new Error('Connecting over CDP is only supported in Chromium.');
|
if (this.name() !== 'chromium') throw new Error('Connecting over CDP is only supported in Chromium.');
|
||||||
const headers = params.headers ? (0, _utils.headersObjectToArray)(params.headers) : undefined;
|
const headers = params.headers ? (0, _headers.headersObjectToArray)(params.headers) : undefined;
|
||||||
const result = await this._channel.connectOverCDP({
|
const result = await this._channel.connectOverCDP({
|
||||||
endpointURL,
|
endpointURL,
|
||||||
headers,
|
headers,
|
||||||
@@ -229,8 +195,8 @@ class BrowserType extends _channelOwner.ChannelOwner {
|
|||||||
context._browserType = this;
|
context._browserType = this;
|
||||||
this._contexts.add(context);
|
this._contexts.add(context);
|
||||||
context._setOptions(contextOptions, browserOptions);
|
context._setOptions(contextOptions, browserOptions);
|
||||||
if (this._defaultContextTimeout !== undefined) context.setDefaultTimeout(this._defaultContextTimeout);
|
if (this._playwright._defaultContextTimeout !== undefined) context.setDefaultTimeout(this._playwright._defaultContextTimeout);
|
||||||
if (this._defaultContextNavigationTimeout !== undefined) context.setDefaultNavigationTimeout(this._defaultContextNavigationTimeout);
|
if (this._playwright._defaultContextNavigationTimeout !== undefined) context.setDefaultNavigationTimeout(this._playwright._defaultContextNavigationTimeout);
|
||||||
await this._instrumentation.runAfterCreateBrowserContext(context);
|
await this._instrumentation.runAfterCreateBrowserContext(context);
|
||||||
}
|
}
|
||||||
async _willCloseContext(context) {
|
async _willCloseContext(context) {
|
||||||
|
|||||||
43
tvapp2/node_modules/playwright-core/lib/client/channelOwner.js
generated
vendored
@@ -6,10 +6,8 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.ChannelOwner = void 0;
|
exports.ChannelOwner = void 0;
|
||||||
var _eventEmitter = require("./eventEmitter");
|
var _eventEmitter = require("./eventEmitter");
|
||||||
var _validator = require("../protocol/validator");
|
var _validator = require("../protocol/validator");
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
var _clientStackTrace = require("./clientStackTrace");
|
||||||
var _stackTrace = require("../utils/stackTrace");
|
var _stackTrace = require("../utils/isomorphic/stackTrace");
|
||||||
var _utils = require("../utils");
|
|
||||||
var _zones = require("../utils/zones");
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -28,7 +26,8 @@ var _zones = require("../utils/zones");
|
|||||||
|
|
||||||
class ChannelOwner extends _eventEmitter.EventEmitter {
|
class ChannelOwner extends _eventEmitter.EventEmitter {
|
||||||
constructor(parent, type, guid, initializer) {
|
constructor(parent, type, guid, initializer) {
|
||||||
super();
|
const connection = parent instanceof ChannelOwner ? parent._connection : parent;
|
||||||
|
super(connection._platform);
|
||||||
this._connection = void 0;
|
this._connection = void 0;
|
||||||
this._parent = void 0;
|
this._parent = void 0;
|
||||||
this._objects = new Map();
|
this._objects = new Map();
|
||||||
@@ -42,7 +41,7 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
this._isInternalType = false;
|
this._isInternalType = false;
|
||||||
this._wasCollected = false;
|
this._wasCollected = false;
|
||||||
this.setMaxListeners(0);
|
this.setMaxListeners(0);
|
||||||
this._connection = parent instanceof ChannelOwner ? parent._connection : parent;
|
this._connection = connection;
|
||||||
this._type = type;
|
this._type = type;
|
||||||
this._guid = guid;
|
this._guid = guid;
|
||||||
this._parent = parent instanceof ChannelOwner ? parent : undefined;
|
this._parent = parent instanceof ChannelOwner ? parent : undefined;
|
||||||
@@ -52,7 +51,7 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
this._parent._objects.set(guid, this);
|
this._parent._objects.set(guid, this);
|
||||||
this._logger = this._parent._logger;
|
this._logger = this._parent._logger;
|
||||||
}
|
}
|
||||||
this._channel = this._createChannel(new _eventEmitter.EventEmitter());
|
this._channel = this._createChannel(new _eventEmitter.EventEmitter(connection._platform));
|
||||||
this._initializer = initializer;
|
this._initializer = initializer;
|
||||||
}
|
}
|
||||||
markAsInternalType() {
|
markAsInternalType() {
|
||||||
@@ -118,6 +117,13 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
objects: Array.from(this._objects.values()).map(o => o._debugScopeState())
|
objects: Array.from(this._objects.values()).map(o => o._debugScopeState())
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
_validatorToWireContext() {
|
||||||
|
return {
|
||||||
|
tChannelImpl: tChannelImplToWire,
|
||||||
|
binary: this._connection.rawBuffers() ? 'buffer' : 'toBase64',
|
||||||
|
isUnderTest: () => this._platform.isUnderTest()
|
||||||
|
};
|
||||||
|
}
|
||||||
_createChannel(base) {
|
_createChannel(base) {
|
||||||
const channel = new Proxy(base, {
|
const channel = new Proxy(base, {
|
||||||
get: (obj, prop) => {
|
get: (obj, prop) => {
|
||||||
@@ -126,16 +132,13 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
if (validator) {
|
if (validator) {
|
||||||
return async params => {
|
return async params => {
|
||||||
return await this._wrapApiCall(async apiZone => {
|
return await this._wrapApiCall(async apiZone => {
|
||||||
const validatedParams = validator(params, '', {
|
const validatedParams = validator(params, '', this._validatorToWireContext());
|
||||||
tChannelImpl: tChannelImplToWire,
|
|
||||||
binary: this._connection.rawBuffers() ? 'buffer' : 'toBase64'
|
|
||||||
});
|
|
||||||
if (!apiZone.isInternal && !apiZone.reported) {
|
if (!apiZone.isInternal && !apiZone.reported) {
|
||||||
// Reporting/tracing/logging this api call for the first time.
|
// Reporting/tracing/logging this api call for the first time.
|
||||||
apiZone.params = params;
|
apiZone.params = params;
|
||||||
apiZone.reported = true;
|
apiZone.reported = true;
|
||||||
this._instrumentation.onApiCallBegin(apiZone);
|
this._instrumentation.onApiCallBegin(apiZone);
|
||||||
logApiCall(this._logger, `=> ${apiZone.apiName} started`);
|
logApiCall(this._platform, this._logger, `=> ${apiZone.apiName} started`);
|
||||||
return await this._connection.sendMessageToServer(this, prop, validatedParams, apiZone.apiName, apiZone.frames, apiZone.stepId);
|
return await this._connection.sendMessageToServer(this, prop, validatedParams, apiZone.apiName, apiZone.frames, apiZone.stepId);
|
||||||
}
|
}
|
||||||
// Since this api call is either internal, or has already been reported/traced once,
|
// Since this api call is either internal, or has already been reported/traced once,
|
||||||
@@ -153,10 +156,10 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
}
|
}
|
||||||
async _wrapApiCall(func, isInternal) {
|
async _wrapApiCall(func, isInternal) {
|
||||||
const logger = this._logger;
|
const logger = this._logger;
|
||||||
const existingApiZone = _zones.zones.zoneData('apiZone');
|
const existingApiZone = this._platform.zones.current().data();
|
||||||
if (existingApiZone) return await func(existingApiZone);
|
if (existingApiZone) return await func(existingApiZone);
|
||||||
if (isInternal === undefined) isInternal = this._isInternalType;
|
if (isInternal === undefined) isInternal = this._isInternalType;
|
||||||
const stackTrace = (0, _stackTrace.captureLibraryStackTrace)();
|
const stackTrace = (0, _clientStackTrace.captureLibraryStackTrace)(this._platform);
|
||||||
const apiZone = {
|
const apiZone = {
|
||||||
apiName: stackTrace.apiName,
|
apiName: stackTrace.apiName,
|
||||||
frames: stackTrace.frames,
|
frames: stackTrace.frames,
|
||||||
@@ -166,20 +169,20 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
stepId: undefined
|
stepId: undefined
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const result = await _zones.zones.run('apiZone', apiZone, async () => await func(apiZone));
|
const result = await this._platform.zones.current().push(apiZone).run(async () => await func(apiZone));
|
||||||
if (!isInternal) {
|
if (!isInternal) {
|
||||||
logApiCall(logger, `<= ${apiZone.apiName} succeeded`);
|
logApiCall(this._platform, logger, `<= ${apiZone.apiName} succeeded`);
|
||||||
this._instrumentation.onApiCallEnd(apiZone);
|
this._instrumentation.onApiCallEnd(apiZone);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const innerError = (process.env.PWDEBUGIMPL || (0, _utils.isUnderTest)()) && e.stack ? '\n<inner error>\n' + e.stack : '';
|
const innerError = (this._platform.showInternalStackFrames() || this._platform.isUnderTest()) && e.stack ? '\n<inner error>\n' + e.stack : '';
|
||||||
if (apiZone.apiName && !apiZone.apiName.includes('<anonymous>')) e.message = apiZone.apiName + ': ' + e.message;
|
if (apiZone.apiName && !apiZone.apiName.includes('<anonymous>')) e.message = apiZone.apiName + ': ' + e.message;
|
||||||
const stackFrames = '\n' + (0, _stackTrace.stringifyStackFrames)(stackTrace.frames).join('\n') + innerError;
|
const stackFrames = '\n' + (0, _stackTrace.stringifyStackFrames)(stackTrace.frames).join('\n') + innerError;
|
||||||
if (stackFrames.trim()) e.stack = e.message + stackFrames;else e.stack = '';
|
if (stackFrames.trim()) e.stack = e.message + stackFrames;else e.stack = '';
|
||||||
if (!isInternal) {
|
if (!isInternal) {
|
||||||
apiZone.error = e;
|
apiZone.error = e;
|
||||||
logApiCall(logger, `<= ${apiZone.apiName} failed`);
|
logApiCall(this._platform, logger, `<= ${apiZone.apiName} failed`);
|
||||||
this._instrumentation.onApiCallEnd(apiZone);
|
this._instrumentation.onApiCallEnd(apiZone);
|
||||||
}
|
}
|
||||||
throw e;
|
throw e;
|
||||||
@@ -201,11 +204,11 @@ class ChannelOwner extends _eventEmitter.EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.ChannelOwner = ChannelOwner;
|
exports.ChannelOwner = ChannelOwner;
|
||||||
function logApiCall(logger, message) {
|
function logApiCall(platform, logger, message) {
|
||||||
if (logger && logger.isEnabled('api', 'info')) logger.log('api', 'info', message, [], {
|
if (logger && logger.isEnabled('api', 'info')) logger.log('api', 'info', message, [], {
|
||||||
color: 'cyan'
|
color: 'cyan'
|
||||||
});
|
});
|
||||||
_debugLogger.debugLogger.log('api', message);
|
platform.log('api', message);
|
||||||
}
|
}
|
||||||
function tChannelImplToWire(names, arg, path, context) {
|
function tChannelImplToWire(names, arg, path, context) {
|
||||||
if (arg._object instanceof ChannelOwner && (names === '*' || names.includes(arg._object._type))) return {
|
if (arg._object instanceof ChannelOwner && (names === '*' || names.includes(arg._object._type))) return {
|
||||||
|
|||||||
10
tvapp2/node_modules/playwright-core/lib/client/clientHelper.js
generated
vendored
@@ -6,9 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.addSourceUrlToScript = addSourceUrlToScript;
|
exports.addSourceUrlToScript = addSourceUrlToScript;
|
||||||
exports.envObjectToArray = envObjectToArray;
|
exports.envObjectToArray = envObjectToArray;
|
||||||
exports.evaluationScript = evaluationScript;
|
exports.evaluationScript = evaluationScript;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
var _utils = require("../utils");
|
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
/**
|
/**
|
||||||
* Copyright 2017 Google Inc. All rights reserved.
|
* Copyright 2017 Google Inc. All rights reserved.
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
* Modifications copyright (c) Microsoft Corporation.
|
||||||
@@ -36,17 +34,17 @@ function envObjectToArray(env) {
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
async function evaluationScript(fun, arg, addSourceUrl = true) {
|
async function evaluationScript(platform, fun, arg, addSourceUrl = true) {
|
||||||
if (typeof fun === 'function') {
|
if (typeof fun === 'function') {
|
||||||
const source = fun.toString();
|
const source = fun.toString();
|
||||||
const argString = Object.is(arg, undefined) ? 'undefined' : JSON.stringify(arg);
|
const argString = Object.is(arg, undefined) ? 'undefined' : JSON.stringify(arg);
|
||||||
return `(${source})(${argString})`;
|
return `(${source})(${argString})`;
|
||||||
}
|
}
|
||||||
if (arg !== undefined) throw new Error('Cannot evaluate a string with arguments');
|
if (arg !== undefined) throw new Error('Cannot evaluate a string with arguments');
|
||||||
if ((0, _utils.isString)(fun)) return fun;
|
if ((0, _rtti.isString)(fun)) return fun;
|
||||||
if (fun.content !== undefined) return fun.content;
|
if (fun.content !== undefined) return fun.content;
|
||||||
if (fun.path !== undefined) {
|
if (fun.path !== undefined) {
|
||||||
let source = await _fs.default.promises.readFile(fun.path, 'utf8');
|
let source = await platform.fs().promises.readFile(fun.path, 'utf8');
|
||||||
if (addSourceUrl) source = addSourceUrlToScript(source, fun.path);
|
if (addSourceUrl) source = addSourceUrlToScript(source, fun.path);
|
||||||
return source;
|
return source;
|
||||||
}
|
}
|
||||||
|
|||||||
83
tvapp2/node_modules/playwright-core/lib/client/connection.js
generated
vendored
@@ -4,35 +4,34 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Connection = void 0;
|
exports.Connection = void 0;
|
||||||
|
var _eventEmitter = require("./eventEmitter");
|
||||||
|
var _android = require("./android");
|
||||||
|
var _artifact = require("./artifact");
|
||||||
var _browser = require("./browser");
|
var _browser = require("./browser");
|
||||||
var _browserContext = require("./browserContext");
|
var _browserContext = require("./browserContext");
|
||||||
var _browserType = require("./browserType");
|
var _browserType = require("./browserType");
|
||||||
|
var _cdpSession = require("./cdpSession");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
|
var _clientInstrumentation = require("./clientInstrumentation");
|
||||||
|
var _dialog = require("./dialog");
|
||||||
|
var _electron = require("./electron");
|
||||||
var _elementHandle = require("./elementHandle");
|
var _elementHandle = require("./elementHandle");
|
||||||
|
var _errors = require("./errors");
|
||||||
|
var _fetch = require("./fetch");
|
||||||
var _frame = require("./frame");
|
var _frame = require("./frame");
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
|
var _jsonPipe = require("./jsonPipe");
|
||||||
|
var _localUtils = require("./localUtils");
|
||||||
var _network = require("./network");
|
var _network = require("./network");
|
||||||
var _page = require("./page");
|
var _page = require("./page");
|
||||||
var _worker = require("./worker");
|
|
||||||
var _dialog = require("./dialog");
|
|
||||||
var _errors = require("./errors");
|
|
||||||
var _cdpSession = require("./cdpSession");
|
|
||||||
var _playwright = require("./playwright");
|
var _playwright = require("./playwright");
|
||||||
var _electron = require("./electron");
|
|
||||||
var _stream = require("./stream");
|
|
||||||
var _writableStream = require("./writableStream");
|
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
|
||||||
var _selectors = require("./selectors");
|
var _selectors = require("./selectors");
|
||||||
var _android = require("./android");
|
var _stream = require("./stream");
|
||||||
var _artifact = require("./artifact");
|
|
||||||
var _events = require("events");
|
|
||||||
var _jsonPipe = require("./jsonPipe");
|
|
||||||
var _fetch = require("./fetch");
|
|
||||||
var _localUtils = require("./localUtils");
|
|
||||||
var _tracing = require("./tracing");
|
var _tracing = require("./tracing");
|
||||||
|
var _worker = require("./worker");
|
||||||
|
var _writableStream = require("./writableStream");
|
||||||
var _validator = require("../protocol/validator");
|
var _validator = require("../protocol/validator");
|
||||||
var _clientInstrumentation = require("./clientInstrumentation");
|
var _stackTrace = require("../utils/isomorphic/stackTrace");
|
||||||
var _utils = require("../utils");
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -60,9 +59,9 @@ class Root extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
class DummyChannelOwner extends _channelOwner.ChannelOwner {}
|
class DummyChannelOwner extends _channelOwner.ChannelOwner {}
|
||||||
class Connection extends _events.EventEmitter {
|
class Connection extends _eventEmitter.EventEmitter {
|
||||||
constructor(localUtils, instrumentation) {
|
constructor(platform, localUtils, instrumentation, headers = []) {
|
||||||
super();
|
super(platform);
|
||||||
this._objects = new Map();
|
this._objects = new Map();
|
||||||
this.onmessage = message => {};
|
this.onmessage = message => {};
|
||||||
this._lastId = 0;
|
this._lastId = 0;
|
||||||
@@ -76,9 +75,12 @@ class Connection extends _events.EventEmitter {
|
|||||||
this.toImpl = void 0;
|
this.toImpl = void 0;
|
||||||
this._tracingCount = 0;
|
this._tracingCount = 0;
|
||||||
this._instrumentation = void 0;
|
this._instrumentation = void 0;
|
||||||
|
// Used from @playwright/test fixtures -> TODO remove?
|
||||||
|
this.headers = void 0;
|
||||||
this._instrumentation = instrumentation || (0, _clientInstrumentation.createInstrumentation)();
|
this._instrumentation = instrumentation || (0, _clientInstrumentation.createInstrumentation)();
|
||||||
this._localUtils = localUtils;
|
this._localUtils = localUtils;
|
||||||
this._rootObject = new Root(this);
|
this._rootObject = new Root(this);
|
||||||
|
this.headers = headers;
|
||||||
}
|
}
|
||||||
markAsRemote() {
|
markAsRemote() {
|
||||||
this._isRemote = true;
|
this._isRemote = true;
|
||||||
@@ -117,9 +119,9 @@ class Connection extends _events.EventEmitter {
|
|||||||
method,
|
method,
|
||||||
params
|
params
|
||||||
};
|
};
|
||||||
if (_debugLogger.debugLogger.isEnabled('channel')) {
|
if (this._platform.isLogEnabled('channel')) {
|
||||||
// Do not include metadata in debug logs to avoid noise.
|
// Do not include metadata in debug logs to avoid noise.
|
||||||
_debugLogger.debugLogger.log('channel', 'SEND> ' + JSON.stringify(message));
|
this._platform.log('channel', 'SEND> ' + JSON.stringify(message));
|
||||||
}
|
}
|
||||||
const location = frames[0] ? {
|
const location = frames[0] ? {
|
||||||
file: frames[0].file,
|
file: frames[0].file,
|
||||||
@@ -132,7 +134,7 @@ class Connection extends _events.EventEmitter {
|
|||||||
internal: !apiName,
|
internal: !apiName,
|
||||||
stepId
|
stepId
|
||||||
};
|
};
|
||||||
if (this._tracingCount && frames && type !== 'LocalUtils') (_this$_localUtils = this._localUtils) === null || _this$_localUtils === void 0 || _this$_localUtils._channel.addStackToTracingNoReply({
|
if (this._tracingCount && frames && type !== 'LocalUtils') (_this$_localUtils = this._localUtils) === null || _this$_localUtils === void 0 || _this$_localUtils.addStackToTracingNoReply({
|
||||||
callData: {
|
callData: {
|
||||||
stack: frames,
|
stack: frames,
|
||||||
id
|
id
|
||||||
@@ -140,7 +142,7 @@ class Connection extends _events.EventEmitter {
|
|||||||
}).catch(() => {});
|
}).catch(() => {});
|
||||||
// We need to exit zones before calling into the server, otherwise
|
// We need to exit zones before calling into the server, otherwise
|
||||||
// when we receive events from the server, we would be in an API zone.
|
// when we receive events from the server, we would be in an API zone.
|
||||||
_utils.zones.empty().run(() => this.onmessage({
|
this._platform.zones.empty.run(() => this.onmessage({
|
||||||
...message,
|
...message,
|
||||||
metadata
|
metadata
|
||||||
}));
|
}));
|
||||||
@@ -152,6 +154,13 @@ class Connection extends _events.EventEmitter {
|
|||||||
method
|
method
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
_validatorFromWireContext() {
|
||||||
|
return {
|
||||||
|
tChannelImpl: this._tChannelImplFromWire.bind(this),
|
||||||
|
binary: this._rawBuffers ? 'buffer' : 'fromBase64',
|
||||||
|
isUnderTest: () => this._platform.isUnderTest()
|
||||||
|
};
|
||||||
|
}
|
||||||
dispatch(message) {
|
dispatch(message) {
|
||||||
if (this._closedError) return;
|
if (this._closedError) return;
|
||||||
const {
|
const {
|
||||||
@@ -164,24 +173,21 @@ class Connection extends _events.EventEmitter {
|
|||||||
log
|
log
|
||||||
} = message;
|
} = message;
|
||||||
if (id) {
|
if (id) {
|
||||||
if (_debugLogger.debugLogger.isEnabled('channel')) _debugLogger.debugLogger.log('channel', '<RECV ' + JSON.stringify(message));
|
if (this._platform.isLogEnabled('channel')) this._platform.log('channel', '<RECV ' + JSON.stringify(message));
|
||||||
const callback = this._callbacks.get(id);
|
const callback = this._callbacks.get(id);
|
||||||
if (!callback) throw new Error(`Cannot find command to respond: ${id}`);
|
if (!callback) throw new Error(`Cannot find command to respond: ${id}`);
|
||||||
this._callbacks.delete(id);
|
this._callbacks.delete(id);
|
||||||
if (error && !result) {
|
if (error && !result) {
|
||||||
const parsedError = (0, _errors.parseError)(error);
|
const parsedError = (0, _errors.parseError)(error);
|
||||||
(0, _utils.rewriteErrorMessage)(parsedError, parsedError.message + (0, _utils.formatCallLog)(log));
|
(0, _stackTrace.rewriteErrorMessage)(parsedError, parsedError.message + formatCallLog(this._platform, log));
|
||||||
callback.reject(parsedError);
|
callback.reject(parsedError);
|
||||||
} else {
|
} else {
|
||||||
const validator = (0, _validator.findValidator)(callback.type, callback.method, 'Result');
|
const validator = (0, _validator.findValidator)(callback.type, callback.method, 'Result');
|
||||||
callback.resolve(validator(result, '', {
|
callback.resolve(validator(result, '', this._validatorFromWireContext()));
|
||||||
tChannelImpl: this._tChannelImplFromWire.bind(this),
|
|
||||||
binary: this._rawBuffers ? 'buffer' : 'fromBase64'
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (_debugLogger.debugLogger.isEnabled('channel')) _debugLogger.debugLogger.log('channel', '<EVENT ' + JSON.stringify(message));
|
if (this._platform.isLogEnabled('channel')) this._platform.log('channel', '<EVENT ' + JSON.stringify(message));
|
||||||
if (method === '__create__') {
|
if (method === '__create__') {
|
||||||
this._createRemoteObject(guid, params.type, params.guid, params.initializer);
|
this._createRemoteObject(guid, params.type, params.guid, params.initializer);
|
||||||
return;
|
return;
|
||||||
@@ -199,10 +205,7 @@ class Connection extends _events.EventEmitter {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const validator = (0, _validator.findValidator)(object._type, method, 'Event');
|
const validator = (0, _validator.findValidator)(object._type, method, 'Event');
|
||||||
object._channel.emit(method, validator(params, '', {
|
object._channel.emit(method, validator(params, '', this._validatorFromWireContext()));
|
||||||
tChannelImpl: this._tChannelImplFromWire.bind(this),
|
|
||||||
binary: this._rawBuffers ? 'buffer' : 'fromBase64'
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
close(cause) {
|
close(cause) {
|
||||||
if (this._closedError) return;
|
if (this._closedError) return;
|
||||||
@@ -225,10 +228,7 @@ class Connection extends _events.EventEmitter {
|
|||||||
if (!parent) throw new Error(`Cannot find parent object ${parentGuid} to create ${guid}`);
|
if (!parent) throw new Error(`Cannot find parent object ${parentGuid} to create ${guid}`);
|
||||||
let result;
|
let result;
|
||||||
const validator = (0, _validator.findValidator)(type, '', 'Initializer');
|
const validator = (0, _validator.findValidator)(type, '', 'Initializer');
|
||||||
initializer = validator(initializer, '', {
|
initializer = validator(initializer, '', this._validatorFromWireContext());
|
||||||
tChannelImpl: this._tChannelImplFromWire.bind(this),
|
|
||||||
binary: this._rawBuffers ? 'buffer' : 'fromBase64'
|
|
||||||
});
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'Android':
|
case 'Android':
|
||||||
result = new _android.Android(parent, type, guid, initializer);
|
result = new _android.Android(parent, type, guid, initializer);
|
||||||
@@ -331,3 +331,10 @@ class Connection extends _events.EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Connection = Connection;
|
exports.Connection = Connection;
|
||||||
|
function formatCallLog(platform, log) {
|
||||||
|
if (!log || !log.some(l => !!l)) return '';
|
||||||
|
return `
|
||||||
|
Call log:
|
||||||
|
${platform.colors.dim(log.join('\n'))}
|
||||||
|
`;
|
||||||
|
}
|
||||||
11
tvapp2/node_modules/playwright-core/lib/client/consoleMessage.js
generated
vendored
@@ -4,10 +4,8 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.ConsoleMessage = void 0;
|
exports.ConsoleMessage = void 0;
|
||||||
var util = _interopRequireWildcard(require("util"));
|
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
var _page = require("./page");
|
var _page = require("./page");
|
||||||
let _util$inspect$custom;
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -23,15 +21,14 @@ let _util$inspect$custom;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
||||||
_util$inspect$custom = util.inspect.custom;
|
|
||||||
class ConsoleMessage {
|
class ConsoleMessage {
|
||||||
constructor(event) {
|
constructor(platform, event) {
|
||||||
this._page = void 0;
|
this._page = void 0;
|
||||||
this._event = void 0;
|
this._event = void 0;
|
||||||
this._page = 'page' in event && event.page ? _page.Page.from(event.page) : null;
|
this._page = 'page' in event && event.page ? _page.Page.from(event.page) : null;
|
||||||
this._event = event;
|
this._event = event;
|
||||||
|
if (platform.inspectCustom) this[platform.inspectCustom] = () => this._inspect();
|
||||||
}
|
}
|
||||||
page() {
|
page() {
|
||||||
return this._page;
|
return this._page;
|
||||||
@@ -48,7 +45,7 @@ class ConsoleMessage {
|
|||||||
location() {
|
location() {
|
||||||
return this._event.location;
|
return this._event.location;
|
||||||
}
|
}
|
||||||
[_util$inspect$custom]() {
|
_inspect() {
|
||||||
return this.text();
|
return this.text();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
20
tvapp2/node_modules/playwright-core/lib/client/electron.js
generated
vendored
@@ -4,16 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.ElectronApplication = exports.Electron = void 0;
|
exports.ElectronApplication = exports.Electron = void 0;
|
||||||
var _timeoutSettings = require("../common/timeoutSettings");
|
|
||||||
var _browserContext = require("./browserContext");
|
var _browserContext = require("./browserContext");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _clientHelper = require("./clientHelper");
|
var _clientHelper = require("./clientHelper");
|
||||||
|
var _consoleMessage = require("./consoleMessage");
|
||||||
|
var _errors = require("./errors");
|
||||||
var _events = require("./events");
|
var _events = require("./events");
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
var _consoleMessage = require("./consoleMessage");
|
|
||||||
var _waiter = require("./waiter");
|
var _waiter = require("./waiter");
|
||||||
var _errors = require("./errors");
|
var _timeoutSettings = require("./timeoutSettings");
|
||||||
let _Symbol$asyncDispose;
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -29,6 +28,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class Electron extends _channelOwner.ChannelOwner {
|
class Electron extends _channelOwner.ChannelOwner {
|
||||||
static from(electron) {
|
static from(electron) {
|
||||||
return electron._object;
|
return electron._object;
|
||||||
@@ -38,8 +38,8 @@ class Electron extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async launch(options = {}) {
|
async launch(options = {}) {
|
||||||
const params = {
|
const params = {
|
||||||
...(await (0, _browserContext.prepareBrowserContextParams)(options)),
|
...(await (0, _browserContext.prepareBrowserContextParams)(this._platform, options)),
|
||||||
env: (0, _clientHelper.envObjectToArray)(options.env ? options.env : process.env),
|
env: (0, _clientHelper.envObjectToArray)(options.env ? options.env : this._platform.env),
|
||||||
tracesDir: options.tracesDir
|
tracesDir: options.tracesDir
|
||||||
};
|
};
|
||||||
const app = ElectronApplication.from((await this._channel.launch(params)).electronApplication);
|
const app = ElectronApplication.from((await this._channel.launch(params)).electronApplication);
|
||||||
@@ -48,7 +48,6 @@ class Electron extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Electron = Electron;
|
exports.Electron = Electron;
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class ElectronApplication extends _channelOwner.ChannelOwner {
|
class ElectronApplication extends _channelOwner.ChannelOwner {
|
||||||
static from(electronApplication) {
|
static from(electronApplication) {
|
||||||
return electronApplication._object;
|
return electronApplication._object;
|
||||||
@@ -57,14 +56,15 @@ class ElectronApplication extends _channelOwner.ChannelOwner {
|
|||||||
super(parent, type, guid, initializer);
|
super(parent, type, guid, initializer);
|
||||||
this._context = void 0;
|
this._context = void 0;
|
||||||
this._windows = new Set();
|
this._windows = new Set();
|
||||||
this._timeoutSettings = new _timeoutSettings.TimeoutSettings();
|
this._timeoutSettings = void 0;
|
||||||
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._platform);
|
||||||
this._context = _browserContext.BrowserContext.from(initializer.context);
|
this._context = _browserContext.BrowserContext.from(initializer.context);
|
||||||
for (const page of this._context._pages) this._onPage(page);
|
for (const page of this._context._pages) this._onPage(page);
|
||||||
this._context.on(_events.Events.BrowserContext.Page, page => this._onPage(page));
|
this._context.on(_events.Events.BrowserContext.Page, page => this._onPage(page));
|
||||||
this._channel.on('close', () => {
|
this._channel.on('close', () => {
|
||||||
this.emit(_events.Events.ElectronApplication.Close);
|
this.emit(_events.Events.ElectronApplication.Close);
|
||||||
});
|
});
|
||||||
this._channel.on('console', event => this.emit(_events.Events.ElectronApplication.Console, new _consoleMessage.ConsoleMessage(event)));
|
this._channel.on('console', event => this.emit(_events.Events.ElectronApplication.Console, new _consoleMessage.ConsoleMessage(this._platform, event)));
|
||||||
this._setEventToSubscriptionMapping(new Map([[_events.Events.ElectronApplication.Console, 'console']]));
|
this._setEventToSubscriptionMapping(new Map([[_events.Events.ElectronApplication.Console, 'console']]));
|
||||||
}
|
}
|
||||||
process() {
|
process() {
|
||||||
@@ -86,7 +86,7 @@ class ElectronApplication extends _channelOwner.ChannelOwner {
|
|||||||
context() {
|
context() {
|
||||||
return this._context;
|
return this._context;
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async close() {
|
async close() {
|
||||||
|
|||||||
65
tvapp2/node_modules/playwright-core/lib/client/elementHandle.js
generated
vendored
@@ -9,15 +9,11 @@ exports.convertSelectOptionValues = convertSelectOptionValues;
|
|||||||
exports.determineScreenshotType = determineScreenshotType;
|
exports.determineScreenshotType = determineScreenshotType;
|
||||||
var _frame = require("./frame");
|
var _frame = require("./frame");
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
var _utilsBundle = require("../utilsBundle");
|
var _fileUtils = require("./fileUtils");
|
||||||
var _path = _interopRequireDefault(require("path"));
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
var _utils = require("../utils");
|
|
||||||
var _fileUtils = require("../utils/fileUtils");
|
|
||||||
var _writableStream = require("./writableStream");
|
var _writableStream = require("./writableStream");
|
||||||
var _stream = require("stream");
|
var _mimeType = require("../utils/isomorphic/mimeType");
|
||||||
var _util = require("util");
|
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -34,7 +30,6 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const pipelineAsync = (0, _util.promisify)(_stream.pipeline);
|
|
||||||
class ElementHandle extends _jsHandle.JSHandle {
|
class ElementHandle extends _jsHandle.JSHandle {
|
||||||
static from(handle) {
|
static from(handle) {
|
||||||
return handle._object;
|
return handle._object;
|
||||||
@@ -56,6 +51,10 @@ class ElementHandle extends _jsHandle.JSHandle {
|
|||||||
async contentFrame() {
|
async contentFrame() {
|
||||||
return _frame.Frame.fromNullable((await this._elementChannel.contentFrame()).frame);
|
return _frame.Frame.fromNullable((await this._elementChannel.contentFrame()).frame);
|
||||||
}
|
}
|
||||||
|
async _generateLocatorString() {
|
||||||
|
const value = (await this._elementChannel.generateLocatorString()).value;
|
||||||
|
return value === undefined ? null : value;
|
||||||
|
}
|
||||||
async getAttribute(name) {
|
async getAttribute(name) {
|
||||||
const value = (await this._elementChannel.getAttribute({
|
const value = (await this._elementChannel.getAttribute({
|
||||||
name
|
name
|
||||||
@@ -133,7 +132,7 @@ class ElementHandle extends _jsHandle.JSHandle {
|
|||||||
async setInputFiles(files, options = {}) {
|
async setInputFiles(files, options = {}) {
|
||||||
const frame = await this.ownerFrame();
|
const frame = await this.ownerFrame();
|
||||||
if (!frame) throw new Error('Cannot set input files to detached element');
|
if (!frame) throw new Error('Cannot set input files to detached element');
|
||||||
const converted = await convertInputFiles(files, frame.page().context());
|
const converted = await convertInputFiles(this._platform, files, frame.page().context());
|
||||||
await this._elementChannel.setInputFiles({
|
await this._elementChannel.setInputFiles({
|
||||||
...converted,
|
...converted,
|
||||||
...options
|
...options
|
||||||
@@ -168,21 +167,22 @@ class ElementHandle extends _jsHandle.JSHandle {
|
|||||||
return value === undefined ? null : value;
|
return value === undefined ? null : value;
|
||||||
}
|
}
|
||||||
async screenshot(options = {}) {
|
async screenshot(options = {}) {
|
||||||
|
const mask = options.mask;
|
||||||
const copy = {
|
const copy = {
|
||||||
...options,
|
...options,
|
||||||
mask: undefined
|
mask: undefined
|
||||||
};
|
};
|
||||||
if (!copy.type) copy.type = determineScreenshotType(options);
|
if (!copy.type) copy.type = determineScreenshotType(options);
|
||||||
if (options.mask) {
|
if (mask) {
|
||||||
copy.mask = options.mask.map(locator => ({
|
copy.mask = mask.map(locator => ({
|
||||||
frame: locator._frame._channel,
|
frame: locator._frame._channel,
|
||||||
selector: locator._selector
|
selector: locator._selector
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
const result = await this._elementChannel.screenshot(copy);
|
const result = await this._elementChannel.screenshot(copy);
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
await (0, _fileUtils.mkdirIfNeeded)(options.path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, options.path);
|
||||||
await _fs.default.promises.writeFile(options.path, result.binary);
|
await this._platform.fs().promises.writeFile(options.path, result.binary);
|
||||||
}
|
}
|
||||||
return result.binary;
|
return result.binary;
|
||||||
}
|
}
|
||||||
@@ -234,11 +234,11 @@ function convertSelectOptionValues(values) {
|
|||||||
if (values === null) return {};
|
if (values === null) return {};
|
||||||
if (!Array.isArray(values)) values = [values];
|
if (!Array.isArray(values)) values = [values];
|
||||||
if (!values.length) return {};
|
if (!values.length) return {};
|
||||||
for (let i = 0; i < values.length; i++) (0, _utils.assert)(values[i] !== null, `options[${i}]: expected object, got null`);
|
for (let i = 0; i < values.length; i++) (0, _assert.assert)(values[i] !== null, `options[${i}]: expected object, got null`);
|
||||||
if (values[0] instanceof ElementHandle) return {
|
if (values[0] instanceof ElementHandle) return {
|
||||||
elements: values.map(v => v._elementChannel)
|
elements: values.map(v => v._elementChannel)
|
||||||
};
|
};
|
||||||
if ((0, _utils.isString)(values[0])) return {
|
if ((0, _rtti.isString)(values[0])) return {
|
||||||
options: values.map(valueOrLabel => ({
|
options: values.map(valueOrLabel => ({
|
||||||
valueOrLabel
|
valueOrLabel
|
||||||
}))
|
}))
|
||||||
@@ -250,50 +250,49 @@ function convertSelectOptionValues(values) {
|
|||||||
function filePayloadExceedsSizeLimit(payloads) {
|
function filePayloadExceedsSizeLimit(payloads) {
|
||||||
return payloads.reduce((size, item) => size + (item.buffer ? item.buffer.byteLength : 0), 0) >= _fileUtils.fileUploadSizeLimit;
|
return payloads.reduce((size, item) => size + (item.buffer ? item.buffer.byteLength : 0), 0) >= _fileUtils.fileUploadSizeLimit;
|
||||||
}
|
}
|
||||||
async function resolvePathsAndDirectoryForInputFiles(items) {
|
async function resolvePathsAndDirectoryForInputFiles(platform, items) {
|
||||||
var _localPaths2;
|
var _localPaths;
|
||||||
let localPaths;
|
let localPaths;
|
||||||
let localDirectory;
|
let localDirectory;
|
||||||
for (const item of items) {
|
for (const item of items) {
|
||||||
const stat = await _fs.default.promises.stat(item);
|
const stat = await platform.fs().promises.stat(item);
|
||||||
if (stat.isDirectory()) {
|
if (stat.isDirectory()) {
|
||||||
if (localDirectory) throw new Error('Multiple directories are not supported');
|
if (localDirectory) throw new Error('Multiple directories are not supported');
|
||||||
localDirectory = _path.default.resolve(item);
|
localDirectory = platform.path().resolve(item);
|
||||||
} else {
|
} else {
|
||||||
var _localPaths;
|
localPaths !== null && localPaths !== void 0 ? localPaths : localPaths = [];
|
||||||
(_localPaths = localPaths) !== null && _localPaths !== void 0 ? _localPaths : localPaths = [];
|
localPaths.push(platform.path().resolve(item));
|
||||||
localPaths.push(_path.default.resolve(item));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((_localPaths2 = localPaths) !== null && _localPaths2 !== void 0 && _localPaths2.length && localDirectory) throw new Error('File paths must be all files or a single directory');
|
if ((_localPaths = localPaths) !== null && _localPaths !== void 0 && _localPaths.length && localDirectory) throw new Error('File paths must be all files or a single directory');
|
||||||
return [localPaths, localDirectory];
|
return [localPaths, localDirectory];
|
||||||
}
|
}
|
||||||
async function convertInputFiles(files, context) {
|
async function convertInputFiles(platform, files, context) {
|
||||||
const items = Array.isArray(files) ? files.slice() : [files];
|
const items = Array.isArray(files) ? files.slice() : [files];
|
||||||
if (items.some(item => typeof item === 'string')) {
|
if (items.some(item => typeof item === 'string')) {
|
||||||
if (!items.every(item => typeof item === 'string')) throw new Error('File paths cannot be mixed with buffers');
|
if (!items.every(item => typeof item === 'string')) throw new Error('File paths cannot be mixed with buffers');
|
||||||
const [localPaths, localDirectory] = await resolvePathsAndDirectoryForInputFiles(items);
|
const [localPaths, localDirectory] = await resolvePathsAndDirectoryForInputFiles(platform, items);
|
||||||
if (context._connection.isRemote()) {
|
if (context._connection.isRemote()) {
|
||||||
const files = localDirectory ? (await _fs.default.promises.readdir(localDirectory, {
|
const files = localDirectory ? (await platform.fs().promises.readdir(localDirectory, {
|
||||||
withFileTypes: true,
|
withFileTypes: true,
|
||||||
recursive: true
|
recursive: true
|
||||||
})).filter(f => f.isFile()).map(f => _path.default.join(f.path, f.name)) : localPaths;
|
})).filter(f => f.isFile()).map(f => platform.path().join(f.path, f.name)) : localPaths;
|
||||||
const {
|
const {
|
||||||
writableStreams,
|
writableStreams,
|
||||||
rootDir
|
rootDir
|
||||||
} = await context._wrapApiCall(async () => context._channel.createTempFiles({
|
} = await context._wrapApiCall(async () => context._channel.createTempFiles({
|
||||||
rootDirName: localDirectory ? _path.default.basename(localDirectory) : undefined,
|
rootDirName: localDirectory ? platform.path().basename(localDirectory) : undefined,
|
||||||
items: await Promise.all(files.map(async file => {
|
items: await Promise.all(files.map(async file => {
|
||||||
const lastModifiedMs = (await _fs.default.promises.stat(file)).mtimeMs;
|
const lastModifiedMs = (await platform.fs().promises.stat(file)).mtimeMs;
|
||||||
return {
|
return {
|
||||||
name: localDirectory ? _path.default.relative(localDirectory, file) : _path.default.basename(file),
|
name: localDirectory ? platform.path().relative(localDirectory, file) : platform.path().basename(file),
|
||||||
lastModifiedMs
|
lastModifiedMs
|
||||||
};
|
};
|
||||||
}))
|
}))
|
||||||
}), true);
|
}), true);
|
||||||
for (let i = 0; i < files.length; i++) {
|
for (let i = 0; i < files.length; i++) {
|
||||||
const writable = _writableStream.WritableStream.from(writableStreams[i]);
|
const writable = _writableStream.WritableStream.from(writableStreams[i]);
|
||||||
await pipelineAsync(_fs.default.createReadStream(files[i]), writable.stream());
|
await platform.streamFile(files[i], writable.stream());
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
directoryStream: rootDir,
|
directoryStream: rootDir,
|
||||||
@@ -313,7 +312,7 @@ async function convertInputFiles(files, context) {
|
|||||||
}
|
}
|
||||||
function determineScreenshotType(options) {
|
function determineScreenshotType(options) {
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
const mimeType = _utilsBundle.mime.getType(options.path);
|
const mimeType = (0, _mimeType.getMimeTypeForPath)(options.path);
|
||||||
if (mimeType === 'image/png') return 'png';else if (mimeType === 'image/jpeg') return 'jpeg';
|
if (mimeType === 'image/png') return 'png';else if (mimeType === 'image/jpeg') return 'jpeg';
|
||||||
throw new Error(`path: unsupported mime type "${mimeType}"`);
|
throw new Error(`path: unsupported mime type "${mimeType}"`);
|
||||||
}
|
}
|
||||||
|
|||||||
4
tvapp2/node_modules/playwright-core/lib/client/errors.js
generated
vendored
@@ -7,8 +7,8 @@ exports.TimeoutError = exports.TargetClosedError = void 0;
|
|||||||
exports.isTargetClosedError = isTargetClosedError;
|
exports.isTargetClosedError = isTargetClosedError;
|
||||||
exports.parseError = parseError;
|
exports.parseError = parseError;
|
||||||
exports.serializeError = serializeError;
|
exports.serializeError = serializeError;
|
||||||
var _utils = require("../utils");
|
|
||||||
var _serializers = require("../protocol/serializers");
|
var _serializers = require("../protocol/serializers");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -42,7 +42,7 @@ function isTargetClosedError(error) {
|
|||||||
return error instanceof TargetClosedError;
|
return error instanceof TargetClosedError;
|
||||||
}
|
}
|
||||||
function serializeError(e) {
|
function serializeError(e) {
|
||||||
if ((0, _utils.isError)(e)) return {
|
if ((0, _rtti.isError)(e)) return {
|
||||||
error: {
|
error: {
|
||||||
message: e.message,
|
message: e.message,
|
||||||
stack: e.stack,
|
stack: e.stack,
|
||||||
|
|||||||
13
tvapp2/node_modules/playwright-core/lib/client/eventEmitter.js
generated
vendored
@@ -4,8 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.EventEmitter = void 0;
|
exports.EventEmitter = void 0;
|
||||||
var _events = require("events");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
/**
|
/**
|
||||||
* Copyright Joyent, Inc. and other Node contributors.
|
* Copyright Joyent, Inc. and other Node contributors.
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
* Modifications copyright (c) Microsoft Corporation.
|
||||||
@@ -31,12 +29,14 @@ var _utils = require("../utils");
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
class EventEmitter {
|
class EventEmitter {
|
||||||
constructor() {
|
constructor(platform) {
|
||||||
this._events = undefined;
|
this._events = undefined;
|
||||||
this._eventsCount = 0;
|
this._eventsCount = 0;
|
||||||
this._maxListeners = undefined;
|
this._maxListeners = undefined;
|
||||||
this._pendingHandlers = new Map();
|
this._pendingHandlers = new Map();
|
||||||
this._rejectionHandler = void 0;
|
this._rejectionHandler = void 0;
|
||||||
|
this._platform = void 0;
|
||||||
|
this._platform = platform;
|
||||||
if (this._events === undefined || this._events === Object.getPrototypeOf(this)._events) {
|
if (this._events === undefined || this._events === Object.getPrototypeOf(this)._events) {
|
||||||
this._events = Object.create(null);
|
this._events = Object.create(null);
|
||||||
this._eventsCount = 0;
|
this._eventsCount = 0;
|
||||||
@@ -51,7 +51,7 @@ class EventEmitter {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
getMaxListeners() {
|
getMaxListeners() {
|
||||||
return this._maxListeners === undefined ? _events.EventEmitter.defaultMaxListeners : this._maxListeners;
|
return this._maxListeners === undefined ? this._platform.defaultMaxListeners() : this._maxListeners;
|
||||||
}
|
}
|
||||||
emit(type, ...args) {
|
emit(type, ...args) {
|
||||||
const events = this._events;
|
const events = this._events;
|
||||||
@@ -130,7 +130,7 @@ class EventEmitter {
|
|||||||
w.emitter = this;
|
w.emitter = this;
|
||||||
w.type = type;
|
w.type = type;
|
||||||
w.count = existing.length;
|
w.count = existing.length;
|
||||||
if (!(0, _utils.isUnderTest)()) {
|
if (!this._platform.isUnderTest()) {
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
console.warn(w);
|
console.warn(w);
|
||||||
}
|
}
|
||||||
@@ -191,14 +191,11 @@ class EventEmitter {
|
|||||||
if (options.behavior === 'wait') {
|
if (options.behavior === 'wait') {
|
||||||
const errors = [];
|
const errors = [];
|
||||||
this._rejectionHandler = error => errors.push(error);
|
this._rejectionHandler = error => errors.push(error);
|
||||||
// eslint-disable-next-line internal-playwright/await-promise-in-class-returns
|
|
||||||
return this._waitFor(type).then(() => {
|
return this._waitFor(type).then(() => {
|
||||||
if (errors.length) throw errors[0];
|
if (errors.length) throw errors[0];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (options.behavior === 'ignoreErrors') this._rejectionHandler = () => {};
|
if (options.behavior === 'ignoreErrors') this._rejectionHandler = () => {};
|
||||||
|
|
||||||
// eslint-disable-next-line internal-playwright/await-promise-in-class-returns
|
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
_removeAllListeners(type) {
|
_removeAllListeners(type) {
|
||||||
|
|||||||
95
tvapp2/node_modules/playwright-core/lib/client/fetch.js
generated
vendored
@@ -4,17 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.APIResponse = exports.APIRequestContext = exports.APIRequest = void 0;
|
exports.APIResponse = exports.APIRequestContext = exports.APIRequest = void 0;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _browserContext = require("./browserContext");
|
||||||
var _path = _interopRequireDefault(require("path"));
|
|
||||||
var util = _interopRequireWildcard(require("util"));
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _fileUtils = require("../utils/fileUtils");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
|
var _errors = require("./errors");
|
||||||
var _network = require("./network");
|
var _network = require("./network");
|
||||||
var _tracing = require("./tracing");
|
var _tracing = require("./tracing");
|
||||||
var _errors = require("./errors");
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
var _browserContext = require("./browserContext");
|
var _fileUtils = require("./fileUtils");
|
||||||
let _Symbol$asyncDispose, _Symbol$asyncDispose2, _util$inspect$custom;
|
var _headers = require("../utils/isomorphic/headers");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -30,42 +28,37 @@ let _Symbol$asyncDispose, _Symbol$asyncDispose2, _util$inspect$custom;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
class APIRequest {
|
class APIRequest {
|
||||||
constructor(playwright) {
|
constructor(playwright) {
|
||||||
this._playwright = void 0;
|
this._playwright = void 0;
|
||||||
this._contexts = new Set();
|
this._contexts = new Set();
|
||||||
// Instrumentation.
|
|
||||||
this._defaultContextOptions = void 0;
|
|
||||||
this._playwright = playwright;
|
this._playwright = playwright;
|
||||||
}
|
}
|
||||||
async newContext(options = {}) {
|
async newContext(options = {}) {
|
||||||
var _this$_defaultContext;
|
var _this$_playwright$_de, _this$_playwright$_de2;
|
||||||
options = {
|
options = {
|
||||||
...this._defaultContextOptions,
|
...this._playwright._defaultContextOptions,
|
||||||
|
timeout: this._playwright._defaultContextTimeout,
|
||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
const storageState = typeof options.storageState === 'string' ? JSON.parse(await _fs.default.promises.readFile(options.storageState, 'utf8')) : options.storageState;
|
const storageState = typeof options.storageState === 'string' ? JSON.parse(await this._playwright._platform.fs().promises.readFile(options.storageState, 'utf8')) : options.storageState;
|
||||||
// We do not expose tracesDir in the API, so do not allow options to accidentally override it.
|
|
||||||
const tracesDir = (_this$_defaultContext = this._defaultContextOptions) === null || _this$_defaultContext === void 0 ? void 0 : _this$_defaultContext.tracesDir;
|
|
||||||
const context = APIRequestContext.from((await this._playwright._channel.newRequest({
|
const context = APIRequestContext.from((await this._playwright._channel.newRequest({
|
||||||
...options,
|
...options,
|
||||||
extraHTTPHeaders: options.extraHTTPHeaders ? (0, _utils.headersObjectToArray)(options.extraHTTPHeaders) : undefined,
|
extraHTTPHeaders: options.extraHTTPHeaders ? (0, _headers.headersObjectToArray)(options.extraHTTPHeaders) : undefined,
|
||||||
storageState,
|
storageState,
|
||||||
tracesDir,
|
tracesDir: (_this$_playwright$_de = this._playwright._defaultLaunchOptions) === null || _this$_playwright$_de === void 0 ? void 0 : _this$_playwright$_de.tracesDir,
|
||||||
clientCertificates: await (0, _browserContext.toClientCertificatesProtocol)(options.clientCertificates)
|
// We do not expose tracesDir in the API, so do not allow options to accidentally override it.
|
||||||
|
clientCertificates: await (0, _browserContext.toClientCertificatesProtocol)(this._playwright._platform, options.clientCertificates)
|
||||||
})).request);
|
})).request);
|
||||||
this._contexts.add(context);
|
this._contexts.add(context);
|
||||||
context._request = this;
|
context._request = this;
|
||||||
context._tracing._tracesDir = tracesDir;
|
context._tracing._tracesDir = (_this$_playwright$_de2 = this._playwright._defaultLaunchOptions) === null || _this$_playwright$_de2 === void 0 ? void 0 : _this$_playwright$_de2.tracesDir;
|
||||||
await context._instrumentation.runAfterCreateRequestContext(context);
|
await context._instrumentation.runAfterCreateRequestContext(context);
|
||||||
return context;
|
return context;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.APIRequest = APIRequest;
|
exports.APIRequest = APIRequest;
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class APIRequestContext extends _channelOwner.ChannelOwner {
|
class APIRequestContext extends _channelOwner.ChannelOwner {
|
||||||
static from(channel) {
|
static from(channel) {
|
||||||
return channel._object;
|
return channel._object;
|
||||||
@@ -77,7 +70,7 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
this._closeReason = void 0;
|
this._closeReason = void 0;
|
||||||
this._tracing = _tracing.Tracing.from(initializer.tracing);
|
this._tracing = _tracing.Tracing.from(initializer.tracing);
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.dispose();
|
await this.dispose();
|
||||||
}
|
}
|
||||||
async dispose(options = {}) {
|
async dispose(options = {}) {
|
||||||
@@ -130,8 +123,8 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async fetch(urlOrRequest, options = {}) {
|
async fetch(urlOrRequest, options = {}) {
|
||||||
const url = (0, _utils.isString)(urlOrRequest) ? urlOrRequest : undefined;
|
const url = (0, _rtti.isString)(urlOrRequest) ? urlOrRequest : undefined;
|
||||||
const request = (0, _utils.isString)(urlOrRequest) ? undefined : urlOrRequest;
|
const request = (0, _rtti.isString)(urlOrRequest) ? undefined : urlOrRequest;
|
||||||
return await this._innerFetch({
|
return await this._innerFetch({
|
||||||
url,
|
url,
|
||||||
request,
|
request,
|
||||||
@@ -142,23 +135,23 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
return await this._wrapApiCall(async () => {
|
return await this._wrapApiCall(async () => {
|
||||||
var _options$request, _options$request2, _options$request3;
|
var _options$request, _options$request2, _options$request3;
|
||||||
if (this._closeReason) throw new _errors.TargetClosedError(this._closeReason);
|
if (this._closeReason) throw new _errors.TargetClosedError(this._closeReason);
|
||||||
(0, _utils.assert)(options.request || typeof options.url === 'string', 'First argument must be either URL string or Request');
|
(0, _assert.assert)(options.request || typeof options.url === 'string', 'First argument must be either URL string or Request');
|
||||||
(0, _utils.assert)((options.data === undefined ? 0 : 1) + (options.form === undefined ? 0 : 1) + (options.multipart === undefined ? 0 : 1) <= 1, `Only one of 'data', 'form' or 'multipart' can be specified`);
|
(0, _assert.assert)((options.data === undefined ? 0 : 1) + (options.form === undefined ? 0 : 1) + (options.multipart === undefined ? 0 : 1) <= 1, `Only one of 'data', 'form' or 'multipart' can be specified`);
|
||||||
(0, _utils.assert)(options.maxRedirects === undefined || options.maxRedirects >= 0, `'maxRedirects' must be greater than or equal to '0'`);
|
(0, _assert.assert)(options.maxRedirects === undefined || options.maxRedirects >= 0, `'maxRedirects' must be greater than or equal to '0'`);
|
||||||
(0, _utils.assert)(options.maxRetries === undefined || options.maxRetries >= 0, `'maxRetries' must be greater than or equal to '0'`);
|
(0, _assert.assert)(options.maxRetries === undefined || options.maxRetries >= 0, `'maxRetries' must be greater than or equal to '0'`);
|
||||||
const url = options.url !== undefined ? options.url : options.request.url();
|
const url = options.url !== undefined ? options.url : options.request.url();
|
||||||
const method = options.method || ((_options$request = options.request) === null || _options$request === void 0 ? void 0 : _options$request.method());
|
const method = options.method || ((_options$request = options.request) === null || _options$request === void 0 ? void 0 : _options$request.method());
|
||||||
let encodedParams = undefined;
|
let encodedParams = undefined;
|
||||||
if (typeof options.params === 'string') encodedParams = options.params;else if (options.params instanceof URLSearchParams) encodedParams = options.params.toString();
|
if (typeof options.params === 'string') encodedParams = options.params;else if (options.params instanceof URLSearchParams) encodedParams = options.params.toString();
|
||||||
// Cannot call allHeaders() here as the request may be paused inside route handler.
|
// Cannot call allHeaders() here as the request may be paused inside route handler.
|
||||||
const headersObj = options.headers || ((_options$request2 = options.request) === null || _options$request2 === void 0 ? void 0 : _options$request2.headers());
|
const headersObj = options.headers || ((_options$request2 = options.request) === null || _options$request2 === void 0 ? void 0 : _options$request2.headers());
|
||||||
const headers = headersObj ? (0, _utils.headersObjectToArray)(headersObj) : undefined;
|
const headers = headersObj ? (0, _headers.headersObjectToArray)(headersObj) : undefined;
|
||||||
let jsonData;
|
let jsonData;
|
||||||
let formData;
|
let formData;
|
||||||
let multipartData;
|
let multipartData;
|
||||||
let postDataBuffer;
|
let postDataBuffer;
|
||||||
if (options.data !== undefined) {
|
if (options.data !== undefined) {
|
||||||
if ((0, _utils.isString)(options.data)) {
|
if ((0, _rtti.isString)(options.data)) {
|
||||||
if (isJsonContentType(headers)) jsonData = isJsonParsable(options.data) ? options.data : JSON.stringify(options.data);else postDataBuffer = Buffer.from(options.data, 'utf8');
|
if (isJsonContentType(headers)) jsonData = isJsonParsable(options.data) ? options.data : JSON.stringify(options.data);else postDataBuffer = Buffer.from(options.data, 'utf8');
|
||||||
} else if (Buffer.isBuffer(options.data)) {
|
} else if (Buffer.isBuffer(options.data)) {
|
||||||
postDataBuffer = options.data;
|
postDataBuffer = options.data;
|
||||||
@@ -185,7 +178,7 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
if (globalThis.FormData && options.multipart instanceof FormData) {
|
if (globalThis.FormData && options.multipart instanceof FormData) {
|
||||||
const form = options.multipart;
|
const form = options.multipart;
|
||||||
for (const [name, value] of form.entries()) {
|
for (const [name, value] of form.entries()) {
|
||||||
if ((0, _utils.isString)(value)) {
|
if ((0, _rtti.isString)(value)) {
|
||||||
multipartData.push({
|
multipartData.push({
|
||||||
name,
|
name,
|
||||||
value
|
value
|
||||||
@@ -204,7 +197,7 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Convert file-like values to ServerFilePayload structs.
|
// Convert file-like values to ServerFilePayload structs.
|
||||||
for (const [name, value] of Object.entries(options.multipart)) multipartData.push(await toFormField(name, value));
|
for (const [name, value] of Object.entries(options.multipart)) multipartData.push(await toFormField(this._platform, name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (postDataBuffer === undefined && jsonData === undefined && formData === undefined && multipartData === undefined) postDataBuffer = ((_options$request3 = options.request) === null || _options$request3 === void 0 ? void 0 : _options$request3.postDataBuffer()) || undefined;
|
if (postDataBuffer === undefined && jsonData === undefined && formData === undefined && multipartData === undefined) postDataBuffer = ((_options$request3 = options.request) === null || _options$request3 === void 0 ? void 0 : _options$request3.postDataBuffer()) || undefined;
|
||||||
@@ -232,16 +225,19 @@ class APIRequestContext extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async storageState(options = {}) {
|
async storageState(options = {}) {
|
||||||
const state = await this._channel.storageState();
|
const state = await this._channel.storageState({
|
||||||
|
indexedDB: options.indexedDB
|
||||||
|
});
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
await (0, _fileUtils.mkdirIfNeeded)(options.path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, options.path);
|
||||||
await _fs.default.promises.writeFile(options.path, JSON.stringify(state, undefined, 2), 'utf8');
|
await this._platform.fs().promises.writeFile(options.path, JSON.stringify(state, undefined, 2), 'utf8');
|
||||||
}
|
}
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.APIRequestContext = APIRequestContext;
|
exports.APIRequestContext = APIRequestContext;
|
||||||
async function toFormField(name, value) {
|
async function toFormField(platform, name, value) {
|
||||||
|
const typeOfValue = typeof value;
|
||||||
if (isFilePayload(value)) {
|
if (isFilePayload(value)) {
|
||||||
const payload = value;
|
const payload = value;
|
||||||
if (!Buffer.isBuffer(payload.buffer)) throw new Error(`Unexpected buffer type of 'data.${name}'`);
|
if (!Buffer.isBuffer(payload.buffer)) throw new Error(`Unexpected buffer type of 'data.${name}'`);
|
||||||
@@ -249,15 +245,15 @@ async function toFormField(name, value) {
|
|||||||
name,
|
name,
|
||||||
file: filePayloadToJson(payload)
|
file: filePayloadToJson(payload)
|
||||||
};
|
};
|
||||||
} else if (value instanceof _fs.default.ReadStream) {
|
} else if (typeOfValue === 'string' || typeOfValue === 'number' || typeOfValue === 'boolean') {
|
||||||
return {
|
return {
|
||||||
name,
|
name,
|
||||||
file: await readStreamToJson(value)
|
value: String(value)
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
name,
|
name,
|
||||||
value: String(value)
|
file: await readStreamToJson(platform, value)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -270,8 +266,6 @@ function isJsonParsable(value) {
|
|||||||
if (e instanceof SyntaxError) return false;else throw e;
|
if (e instanceof SyntaxError) return false;else throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_Symbol$asyncDispose2 = Symbol.asyncDispose;
|
|
||||||
_util$inspect$custom = util.inspect.custom;
|
|
||||||
class APIResponse {
|
class APIResponse {
|
||||||
constructor(context, initializer) {
|
constructor(context, initializer) {
|
||||||
this._initializer = void 0;
|
this._initializer = void 0;
|
||||||
@@ -280,6 +274,7 @@ class APIResponse {
|
|||||||
this._request = context;
|
this._request = context;
|
||||||
this._initializer = initializer;
|
this._initializer = initializer;
|
||||||
this._headers = new _network.RawHeaders(this._initializer.headers);
|
this._headers = new _network.RawHeaders(this._initializer.headers);
|
||||||
|
if (context._platform.inspectCustom) this[context._platform.inspectCustom] = () => this._inspect();
|
||||||
}
|
}
|
||||||
ok() {
|
ok() {
|
||||||
return this._initializer.status >= 200 && this._initializer.status <= 299;
|
return this._initializer.status >= 200 && this._initializer.status <= 299;
|
||||||
@@ -300,6 +295,7 @@ class APIResponse {
|
|||||||
return this._headers.headersArray();
|
return this._headers.headersArray();
|
||||||
}
|
}
|
||||||
async body() {
|
async body() {
|
||||||
|
return await this._request._wrapApiCall(async () => {
|
||||||
try {
|
try {
|
||||||
const result = await this._request._channel.fetchResponseBody({
|
const result = await this._request._channel.fetchResponseBody({
|
||||||
fetchUid: this._fetchUid()
|
fetchUid: this._fetchUid()
|
||||||
@@ -310,6 +306,7 @@ class APIResponse {
|
|||||||
if ((0, _errors.isTargetClosedError)(e)) throw new Error('Response has been disposed');
|
if ((0, _errors.isTargetClosedError)(e)) throw new Error('Response has been disposed');
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
}, true);
|
||||||
}
|
}
|
||||||
async text() {
|
async text() {
|
||||||
const content = await this.body();
|
const content = await this.body();
|
||||||
@@ -319,7 +316,7 @@ class APIResponse {
|
|||||||
const content = await this.text();
|
const content = await this.text();
|
||||||
return JSON.parse(content);
|
return JSON.parse(content);
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose2]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.dispose();
|
await this.dispose();
|
||||||
}
|
}
|
||||||
async dispose() {
|
async dispose() {
|
||||||
@@ -327,7 +324,7 @@ class APIResponse {
|
|||||||
fetchUid: this._fetchUid()
|
fetchUid: this._fetchUid()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
[_util$inspect$custom]() {
|
_inspect() {
|
||||||
const headers = this.headersArray().map(({
|
const headers = this.headersArray().map(({
|
||||||
name,
|
name,
|
||||||
value
|
value
|
||||||
@@ -354,7 +351,7 @@ function filePayloadToJson(payload) {
|
|||||||
buffer: payload.buffer
|
buffer: payload.buffer
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
async function readStreamToJson(stream) {
|
async function readStreamToJson(platform, stream) {
|
||||||
const buffer = await new Promise((resolve, reject) => {
|
const buffer = await new Promise((resolve, reject) => {
|
||||||
const chunks = [];
|
const chunks = [];
|
||||||
stream.on('data', chunk => chunks.push(chunk));
|
stream.on('data', chunk => chunks.push(chunk));
|
||||||
@@ -363,7 +360,7 @@ async function readStreamToJson(stream) {
|
|||||||
});
|
});
|
||||||
const streamPath = Buffer.isBuffer(stream.path) ? stream.path.toString('utf8') : stream.path;
|
const streamPath = Buffer.isBuffer(stream.path) ? stream.path.toString('utf8') : stream.path;
|
||||||
return {
|
return {
|
||||||
name: _path.default.basename(streamPath),
|
name: platform.path().basename(streamPath),
|
||||||
buffer
|
buffer
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -380,10 +377,12 @@ function isJsonContentType(headers) {
|
|||||||
function objectToArray(map) {
|
function objectToArray(map) {
|
||||||
if (!map) return undefined;
|
if (!map) return undefined;
|
||||||
const result = [];
|
const result = [];
|
||||||
for (const [name, value] of Object.entries(map)) result.push({
|
for (const [name, value] of Object.entries(map)) {
|
||||||
|
if (value !== undefined) result.push({
|
||||||
name,
|
name,
|
||||||
value: String(value)
|
value: String(value)
|
||||||
});
|
});
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
function isFilePayload(value) {
|
function isFilePayload(value) {
|
||||||
|
|||||||
51
tvapp2/node_modules/playwright-core/lib/client/frame.js
generated
vendored
@@ -5,22 +5,21 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
});
|
});
|
||||||
exports.Frame = void 0;
|
exports.Frame = void 0;
|
||||||
exports.verifyLoadState = verifyLoadState;
|
exports.verifyLoadState = verifyLoadState;
|
||||||
var _utils = require("../utils");
|
var _eventEmitter = require("./eventEmitter");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _locator = require("./locator");
|
|
||||||
var _locatorUtils = require("../utils/isomorphic/locatorUtils");
|
|
||||||
var _elementHandle = require("./elementHandle");
|
|
||||||
var _jsHandle = require("./jsHandle");
|
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
|
||||||
var network = _interopRequireWildcard(require("./network"));
|
|
||||||
var _events = require("events");
|
|
||||||
var _waiter = require("./waiter");
|
|
||||||
var _events2 = require("./events");
|
|
||||||
var _types = require("./types");
|
|
||||||
var _clientHelper = require("./clientHelper");
|
var _clientHelper = require("./clientHelper");
|
||||||
|
var _elementHandle = require("./elementHandle");
|
||||||
|
var _events = require("./events");
|
||||||
|
var _jsHandle = require("./jsHandle");
|
||||||
|
var _locator = require("./locator");
|
||||||
|
var network = _interopRequireWildcard(require("./network"));
|
||||||
|
var _types = require("./types");
|
||||||
|
var _waiter = require("./waiter");
|
||||||
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
|
var _locatorUtils = require("../utils/isomorphic/locatorUtils");
|
||||||
|
var _urlMatch = require("../utils/isomorphic/urlMatch");
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
/**
|
/**
|
||||||
* Copyright 2017 Google Inc. All rights reserved.
|
* Copyright 2017 Google Inc. All rights reserved.
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
* Modifications copyright (c) Microsoft Corporation.
|
||||||
@@ -55,7 +54,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
this._detached = false;
|
this._detached = false;
|
||||||
this._childFrames = new Set();
|
this._childFrames = new Set();
|
||||||
this._page = void 0;
|
this._page = void 0;
|
||||||
this._eventEmitter = new _events.EventEmitter();
|
this._eventEmitter = new _eventEmitter.EventEmitter(parent._platform);
|
||||||
this._eventEmitter.setMaxListeners(0);
|
this._eventEmitter.setMaxListeners(0);
|
||||||
this._parentFrame = Frame.fromNullable(initializer.parentFrame);
|
this._parentFrame = Frame.fromNullable(initializer.parentFrame);
|
||||||
if (this._parentFrame) this._parentFrame._childFrames.add(this);
|
if (this._parentFrame) this._parentFrame._childFrames.add(this);
|
||||||
@@ -68,14 +67,14 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
this._eventEmitter.emit('loadstate', event.add);
|
this._eventEmitter.emit('loadstate', event.add);
|
||||||
}
|
}
|
||||||
if (event.remove) this._loadStates.delete(event.remove);
|
if (event.remove) this._loadStates.delete(event.remove);
|
||||||
if (!this._parentFrame && event.add === 'load' && this._page) this._page.emit(_events2.Events.Page.Load, this._page);
|
if (!this._parentFrame && event.add === 'load' && this._page) this._page.emit(_events.Events.Page.Load, this._page);
|
||||||
if (!this._parentFrame && event.add === 'domcontentloaded' && this._page) this._page.emit(_events2.Events.Page.DOMContentLoaded, this._page);
|
if (!this._parentFrame && event.add === 'domcontentloaded' && this._page) this._page.emit(_events.Events.Page.DOMContentLoaded, this._page);
|
||||||
});
|
});
|
||||||
this._channel.on('navigated', event => {
|
this._channel.on('navigated', event => {
|
||||||
this._url = event.url;
|
this._url = event.url;
|
||||||
this._name = event.name;
|
this._name = event.name;
|
||||||
this._eventEmitter.emit('navigated', event);
|
this._eventEmitter.emit('navigated', event);
|
||||||
if (!event.error && this._page) this._page.emit(_events2.Events.Page.FrameNavigated, this);
|
if (!event.error && this._page) this._page.emit(_events.Events.Page.FrameNavigated, this);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
page() {
|
page() {
|
||||||
@@ -92,9 +91,9 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
_setupNavigationWaiter(options) {
|
_setupNavigationWaiter(options) {
|
||||||
const waiter = new _waiter.Waiter(this._page, '');
|
const waiter = new _waiter.Waiter(this._page, '');
|
||||||
if (this._page.isClosed()) waiter.rejectImmediately(this._page._closeErrorWithReason());
|
if (this._page.isClosed()) waiter.rejectImmediately(this._page._closeErrorWithReason());
|
||||||
waiter.rejectOnEvent(this._page, _events2.Events.Page.Close, () => this._page._closeErrorWithReason());
|
waiter.rejectOnEvent(this._page, _events.Events.Page.Close, () => this._page._closeErrorWithReason());
|
||||||
waiter.rejectOnEvent(this._page, _events2.Events.Page.Crash, new Error('Navigation failed because page crashed!'));
|
waiter.rejectOnEvent(this._page, _events.Events.Page.Crash, new Error('Navigation failed because page crashed!'));
|
||||||
waiter.rejectOnEvent(this._page, _events2.Events.Page.FrameDetached, new Error('Navigating frame was detached!'), frame => frame === this);
|
waiter.rejectOnEvent(this._page, _events.Events.Page.FrameDetached, new Error('Navigating frame was detached!'), frame => frame === this);
|
||||||
const timeout = this._page._timeoutSettings.navigationTimeout(options);
|
const timeout = this._page._timeoutSettings.navigationTimeout(options);
|
||||||
waiter.rejectOnTimeout(timeout, `Timeout ${timeout}ms exceeded.`);
|
waiter.rejectOnTimeout(timeout, `Timeout ${timeout}ms exceeded.`);
|
||||||
return waiter;
|
return waiter;
|
||||||
@@ -110,7 +109,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
// Any failed navigation results in a rejection.
|
// Any failed navigation results in a rejection.
|
||||||
if (event.error) return true;
|
if (event.error) return true;
|
||||||
waiter.log(` navigated to "${event.url}"`);
|
waiter.log(` navigated to "${event.url}"`);
|
||||||
return (0, _utils.urlMatches)((_this$_page = this._page) === null || _this$_page === void 0 ? void 0 : _this$_page.context()._options.baseURL, event.url, options.url);
|
return (0, _urlMatch.urlMatches)((_this$_page = this._page) === null || _this$_page === void 0 ? void 0 : _this$_page.context()._options.baseURL, event.url, options.url);
|
||||||
});
|
});
|
||||||
if (navigatedEvent.error) {
|
if (navigatedEvent.error) {
|
||||||
const e = new Error(navigatedEvent.error);
|
const e = new Error(navigatedEvent.error);
|
||||||
@@ -146,7 +145,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async waitForURL(url, options = {}) {
|
async waitForURL(url, options = {}) {
|
||||||
var _this$_page2;
|
var _this$_page2;
|
||||||
if ((0, _utils.urlMatches)((_this$_page2 = this._page) === null || _this$_page2 === void 0 ? void 0 : _this$_page2.context()._options.baseURL, this.url(), url)) return await this.waitForLoadState(options.waitUntil, options);
|
if ((0, _urlMatch.urlMatches)((_this$_page2 = this._page) === null || _this$_page2 === void 0 ? void 0 : _this$_page2.context()._options.baseURL, this.url(), url)) return await this.waitForLoadState(options.waitUntil, options);
|
||||||
await this.waitForNavigation({
|
await this.waitForNavigation({
|
||||||
url,
|
url,
|
||||||
...options
|
...options
|
||||||
@@ -268,7 +267,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
if (copy.path) {
|
if (copy.path) {
|
||||||
copy.content = (await _fs.default.promises.readFile(copy.path)).toString();
|
copy.content = (await this._platform.fs().promises.readFile(copy.path)).toString();
|
||||||
copy.content = (0, _clientHelper.addSourceUrlToScript)(copy.content, copy.path);
|
copy.content = (0, _clientHelper.addSourceUrlToScript)(copy.content, copy.path);
|
||||||
}
|
}
|
||||||
return _elementHandle.ElementHandle.from((await this._channel.addScriptTag({
|
return _elementHandle.ElementHandle.from((await this._channel.addScriptTag({
|
||||||
@@ -280,7 +279,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
...options
|
...options
|
||||||
};
|
};
|
||||||
if (copy.path) {
|
if (copy.path) {
|
||||||
copy.content = (await _fs.default.promises.readFile(copy.path)).toString();
|
copy.content = (await this._platform.fs().promises.readFile(copy.path)).toString();
|
||||||
copy.content += '/*# sourceURL=' + copy.path.replace(/\n/g, '') + '*/';
|
copy.content += '/*# sourceURL=' + copy.path.replace(/\n/g, '') + '*/';
|
||||||
}
|
}
|
||||||
return _elementHandle.ElementHandle.from((await this._channel.addStyleTag({
|
return _elementHandle.ElementHandle.from((await this._channel.addStyleTag({
|
||||||
@@ -440,7 +439,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
})).values;
|
})).values;
|
||||||
}
|
}
|
||||||
async setInputFiles(selector, files, options = {}) {
|
async setInputFiles(selector, files, options = {}) {
|
||||||
const converted = await (0, _elementHandle.convertInputFiles)(files, this.page().context());
|
const converted = await (0, _elementHandle.convertInputFiles)(this._platform, files, this.page().context());
|
||||||
await this._channel.setInputFiles({
|
await this._channel.setInputFiles({
|
||||||
selector,
|
selector,
|
||||||
...converted,
|
...converted,
|
||||||
@@ -482,7 +481,7 @@ class Frame extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async waitForFunction(pageFunction, arg, options = {}) {
|
async waitForFunction(pageFunction, arg, options = {}) {
|
||||||
if (typeof options.polling === 'string') (0, _utils.assert)(options.polling === 'raf', 'Unknown polling option: ' + options.polling);
|
if (typeof options.polling === 'string') (0, _assert.assert)(options.polling === 'raf', 'Unknown polling option: ' + options.polling);
|
||||||
const result = await this._channel.waitForFunction({
|
const result = await this._channel.waitForFunction({
|
||||||
...options,
|
...options,
|
||||||
pollingInterval: options.polling === 'raf' ? undefined : options.polling,
|
pollingInterval: options.polling === 'raf' ? undefined : options.polling,
|
||||||
|
|||||||
16
tvapp2/node_modules/playwright-core/lib/client/harRouter.js
generated
vendored
@@ -4,8 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.HarRouter = void 0;
|
exports.HarRouter = void 0;
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
|
||||||
let _Symbol$asyncDispose;
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -21,13 +19,13 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class HarRouter {
|
class HarRouter {
|
||||||
static async create(localUtils, file, notFoundAction, options) {
|
static async create(localUtils, file, notFoundAction, options) {
|
||||||
const {
|
const {
|
||||||
harId,
|
harId,
|
||||||
error
|
error
|
||||||
} = await localUtils._channel.harOpen({
|
} = await localUtils.harOpen({
|
||||||
file
|
file
|
||||||
});
|
});
|
||||||
if (error) throw new Error(error);
|
if (error) throw new Error(error);
|
||||||
@@ -45,7 +43,7 @@ class HarRouter {
|
|||||||
}
|
}
|
||||||
async _handle(route) {
|
async _handle(route) {
|
||||||
const request = route.request();
|
const request = route.request();
|
||||||
const response = await this._localUtils._channel.harLookup({
|
const response = await this._localUtils.harLookup({
|
||||||
harId: this._harId,
|
harId: this._harId,
|
||||||
url: request.url(),
|
url: request.url(),
|
||||||
method: request.method(),
|
method: request.method(),
|
||||||
@@ -54,7 +52,7 @@ class HarRouter {
|
|||||||
isNavigationRequest: request.isNavigationRequest()
|
isNavigationRequest: request.isNavigationRequest()
|
||||||
});
|
});
|
||||||
if (response.action === 'redirect') {
|
if (response.action === 'redirect') {
|
||||||
_debugLogger.debugLogger.log('api', `HAR: ${route.request().url()} redirected to ${response.redirectURL}`);
|
route._platform.log('api', `HAR: ${route.request().url()} redirected to ${response.redirectURL}`);
|
||||||
await route._redirectNavigationRequest(response.redirectURL);
|
await route._redirectNavigationRequest(response.redirectURL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -72,7 +70,7 @@ class HarRouter {
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (response.action === 'error') _debugLogger.debugLogger.log('api', 'HAR: ' + response.message);
|
if (response.action === 'error') route._platform.log('api', 'HAR: ' + response.message);
|
||||||
// Report the error, but fall through to the default handler.
|
// Report the error, but fall through to the default handler.
|
||||||
|
|
||||||
if (this._notFoundAction === 'abort') {
|
if (this._notFoundAction === 'abort') {
|
||||||
@@ -87,11 +85,11 @@ class HarRouter {
|
|||||||
async addPageRoute(page) {
|
async addPageRoute(page) {
|
||||||
await page.route(this._options.urlMatch || '**/*', route => this._handle(route));
|
await page.route(this._options.urlMatch || '**/*', route => this._handle(route));
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.dispose();
|
await this.dispose();
|
||||||
}
|
}
|
||||||
dispose() {
|
dispose() {
|
||||||
this._localUtils._channel.harClose({
|
this._localUtils.harClose({
|
||||||
harId: this._harId
|
harId: this._harId
|
||||||
}).catch(() => {});
|
}).catch(() => {});
|
||||||
}
|
}
|
||||||
|
|||||||
7
tvapp2/node_modules/playwright-core/lib/client/jsHandle.js
generated
vendored
@@ -8,9 +8,8 @@ exports.assertMaxArguments = assertMaxArguments;
|
|||||||
exports.parseResult = parseResult;
|
exports.parseResult = parseResult;
|
||||||
exports.serializeArgument = serializeArgument;
|
exports.serializeArgument = serializeArgument;
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _serializers = require("../protocol/serializers");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
let _Symbol$asyncDispose;
|
var _serializers = require("../protocol/serializers");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -26,7 +25,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class JSHandle extends _channelOwner.ChannelOwner {
|
class JSHandle extends _channelOwner.ChannelOwner {
|
||||||
static from(handle) {
|
static from(handle) {
|
||||||
return handle._object;
|
return handle._object;
|
||||||
@@ -75,7 +74,7 @@ class JSHandle extends _channelOwner.ChannelOwner {
|
|||||||
asElement() {
|
asElement() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.dispose();
|
await this.dispose();
|
||||||
}
|
}
|
||||||
async dispose() {
|
async dispose() {
|
||||||
|
|||||||
24
tvapp2/node_modules/playwright-core/lib/client/localUtils.js
generated
vendored
@@ -32,5 +32,29 @@ class LocalUtils extends _channelOwner.ChannelOwner {
|
|||||||
descriptor
|
descriptor
|
||||||
} of initializer.deviceDescriptors) this.devices[name] = descriptor;
|
} of initializer.deviceDescriptors) this.devices[name] = descriptor;
|
||||||
}
|
}
|
||||||
|
async zip(params) {
|
||||||
|
return await this._channel.zip(params);
|
||||||
|
}
|
||||||
|
async harOpen(params) {
|
||||||
|
return await this._channel.harOpen(params);
|
||||||
|
}
|
||||||
|
async harLookup(params) {
|
||||||
|
return await this._channel.harLookup(params);
|
||||||
|
}
|
||||||
|
async harClose(params) {
|
||||||
|
return await this._channel.harClose(params);
|
||||||
|
}
|
||||||
|
async harUnzip(params) {
|
||||||
|
return await this._channel.harUnzip(params);
|
||||||
|
}
|
||||||
|
async tracingStarted(params) {
|
||||||
|
return await this._channel.tracingStarted(params);
|
||||||
|
}
|
||||||
|
async traceDiscarded(params) {
|
||||||
|
return await this._channel.traceDiscarded(params);
|
||||||
|
}
|
||||||
|
async addStackToTracingNoReply(params) {
|
||||||
|
return await this._channel.addStackToTracingNoReply(params);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exports.LocalUtils = LocalUtils;
|
exports.LocalUtils = LocalUtils;
|
||||||
33
tvapp2/node_modules/playwright-core/lib/client/locator.js
generated
vendored
@@ -6,13 +6,13 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.Locator = exports.FrameLocator = void 0;
|
exports.Locator = exports.FrameLocator = void 0;
|
||||||
exports.setTestIdAttribute = setTestIdAttribute;
|
exports.setTestIdAttribute = setTestIdAttribute;
|
||||||
exports.testIdAttributeName = testIdAttributeName;
|
exports.testIdAttributeName = testIdAttributeName;
|
||||||
var util = _interopRequireWildcard(require("util"));
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _elementHandle = require("./elementHandle");
|
var _elementHandle = require("./elementHandle");
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
var _stringUtils = require("../utils/isomorphic/stringUtils");
|
var _locatorGenerators = require("../utils/isomorphic/locatorGenerators");
|
||||||
var _locatorUtils = require("../utils/isomorphic/locatorUtils");
|
var _locatorUtils = require("../utils/isomorphic/locatorUtils");
|
||||||
let _util$inspect$custom;
|
var _stringUtils = require("../utils/isomorphic/stringUtils");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
|
var _time = require("../utils/isomorphic/time");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -28,9 +28,7 @@ let _util$inspect$custom;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
||||||
_util$inspect$custom = util.inspect.custom;
|
|
||||||
class Locator {
|
class Locator {
|
||||||
constructor(frame, selector, options) {
|
constructor(frame, selector, options) {
|
||||||
this._frame = void 0;
|
this._frame = void 0;
|
||||||
@@ -49,12 +47,14 @@ class Locator {
|
|||||||
if (locator._frame !== frame) throw new Error(`Inner "hasNot" locator must belong to the same frame.`);
|
if (locator._frame !== frame) throw new Error(`Inner "hasNot" locator must belong to the same frame.`);
|
||||||
this._selector += ` >> internal:has-not=` + JSON.stringify(locator._selector);
|
this._selector += ` >> internal:has-not=` + JSON.stringify(locator._selector);
|
||||||
}
|
}
|
||||||
|
if ((options === null || options === void 0 ? void 0 : options.visible) !== undefined) this._selector += ` >> visible=${options.visible ? 'true' : 'false'}`;
|
||||||
|
if (this._frame._platform.inspectCustom) this[this._frame._platform.inspectCustom] = () => this._inspect();
|
||||||
}
|
}
|
||||||
async _withElement(task, timeout) {
|
async _withElement(task, timeout) {
|
||||||
timeout = this._frame.page()._timeoutSettings.timeout({
|
timeout = this._frame.page()._timeoutSettings.timeout({
|
||||||
timeout
|
timeout
|
||||||
});
|
});
|
||||||
const deadline = timeout ? (0, _utils.monotonicTime)() + timeout : 0;
|
const deadline = timeout ? (0, _time.monotonicTime)() + timeout : 0;
|
||||||
return await this._frame._wrapApiCall(async () => {
|
return await this._frame._wrapApiCall(async () => {
|
||||||
const result = await this._frame._channel.waitForSelector({
|
const result = await this._frame._channel.waitForSelector({
|
||||||
selector: this._selector,
|
selector: this._selector,
|
||||||
@@ -65,7 +65,7 @@ class Locator {
|
|||||||
const handle = _elementHandle.ElementHandle.fromNullable(result.element);
|
const handle = _elementHandle.ElementHandle.fromNullable(result.element);
|
||||||
if (!handle) throw new Error(`Could not resolve ${this._selector} to DOM Element`);
|
if (!handle) throw new Error(`Could not resolve ${this._selector} to DOM Element`);
|
||||||
try {
|
try {
|
||||||
return await task(handle, deadline ? deadline - (0, _utils.monotonicTime)() : 0);
|
return await task(handle, deadline ? deadline - (0, _time.monotonicTime)() : 0);
|
||||||
} finally {
|
} finally {
|
||||||
await handle.dispose();
|
await handle.dispose();
|
||||||
}
|
}
|
||||||
@@ -136,7 +136,7 @@ class Locator {
|
|||||||
return await this._frame._highlight(this._selector);
|
return await this._frame._highlight(this._selector);
|
||||||
}
|
}
|
||||||
locator(selectorOrLocator, options) {
|
locator(selectorOrLocator, options) {
|
||||||
if ((0, _utils.isString)(selectorOrLocator)) return new Locator(this._frame, this._selector + ' >> ' + selectorOrLocator, options);
|
if ((0, _rtti.isString)(selectorOrLocator)) return new Locator(this._frame, this._selector + ' >> ' + selectorOrLocator, options);
|
||||||
if (selectorOrLocator._frame !== this._frame) throw new Error(`Locators must belong to the same frame.`);
|
if (selectorOrLocator._frame !== this._frame) throw new Error(`Locators must belong to the same frame.`);
|
||||||
return new Locator(this._frame, this._selector + ' >> internal:chain=' + JSON.stringify(selectorOrLocator._selector), options);
|
return new Locator(this._frame, this._selector + ' >> internal:chain=' + JSON.stringify(selectorOrLocator._selector), options);
|
||||||
}
|
}
|
||||||
@@ -213,6 +213,9 @@ class Locator {
|
|||||||
async count() {
|
async count() {
|
||||||
return await this._frame._queryCount(this._selector);
|
return await this._frame._queryCount(this._selector);
|
||||||
}
|
}
|
||||||
|
async _generateLocatorString() {
|
||||||
|
return await this._withElement(h => h._generateLocatorString());
|
||||||
|
}
|
||||||
async getAttribute(name, options) {
|
async getAttribute(name, options) {
|
||||||
return await this._frame.getAttribute(this._selector, name, {
|
return await this._frame.getAttribute(this._selector, name, {
|
||||||
strict: true,
|
strict: true,
|
||||||
@@ -286,14 +289,18 @@ class Locator {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async screenshot(options = {}) {
|
async screenshot(options = {}) {
|
||||||
|
const mask = options.mask;
|
||||||
return await this._withElement((h, timeout) => h.screenshot({
|
return await this._withElement((h, timeout) => h.screenshot({
|
||||||
...options,
|
...options,
|
||||||
|
mask,
|
||||||
timeout
|
timeout
|
||||||
}), options.timeout);
|
}), options.timeout);
|
||||||
}
|
}
|
||||||
async ariaSnapshot(options) {
|
async ariaSnapshot(options) {
|
||||||
const result = await this._frame._channel.ariaSnapshot({
|
const result = await this._frame._channel.ariaSnapshot({
|
||||||
...options,
|
...options,
|
||||||
|
id: options === null || options === void 0 ? void 0 : options._id,
|
||||||
|
mode: options === null || options === void 0 ? void 0 : options._mode,
|
||||||
selector: this._selector
|
selector: this._selector
|
||||||
});
|
});
|
||||||
return result.snapshot;
|
return result.snapshot;
|
||||||
@@ -381,11 +388,11 @@ class Locator {
|
|||||||
if (result.received !== undefined) result.received = (0, _jsHandle.parseResult)(result.received);
|
if (result.received !== undefined) result.received = (0, _jsHandle.parseResult)(result.received);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
[_util$inspect$custom]() {
|
_inspect() {
|
||||||
return this.toString();
|
return this.toString();
|
||||||
}
|
}
|
||||||
toString() {
|
toString() {
|
||||||
return (0, _utils.asLocator)('javascript', this._selector);
|
return (0, _locatorGenerators.asLocator)('javascript', this._selector);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Locator = Locator;
|
exports.Locator = Locator;
|
||||||
@@ -397,7 +404,7 @@ class FrameLocator {
|
|||||||
this._frameSelector = selector;
|
this._frameSelector = selector;
|
||||||
}
|
}
|
||||||
locator(selectorOrLocator, options) {
|
locator(selectorOrLocator, options) {
|
||||||
if ((0, _utils.isString)(selectorOrLocator)) return new Locator(this._frame, this._frameSelector + ' >> internal:control=enter-frame >> ' + selectorOrLocator, options);
|
if ((0, _rtti.isString)(selectorOrLocator)) return new Locator(this._frame, this._frameSelector + ' >> internal:control=enter-frame >> ' + selectorOrLocator, options);
|
||||||
if (selectorOrLocator._frame !== this._frame) throw new Error(`Locators must belong to the same frame.`);
|
if (selectorOrLocator._frame !== this._frame) throw new Error(`Locators must belong to the same frame.`);
|
||||||
return new Locator(this._frame, this._frameSelector + ' >> internal:control=enter-frame >> ' + selectorOrLocator._selector, options);
|
return new Locator(this._frame, this._frameSelector + ' >> internal:control=enter-frame >> ' + selectorOrLocator._selector, options);
|
||||||
}
|
}
|
||||||
|
|||||||
82
tvapp2/node_modules/playwright-core/lib/client/network.js
generated
vendored
@@ -5,19 +5,21 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
});
|
});
|
||||||
exports.WebSocketRouteHandler = exports.WebSocketRoute = exports.WebSocket = exports.RouteHandler = exports.Route = exports.Response = exports.Request = exports.RawHeaders = void 0;
|
exports.WebSocketRouteHandler = exports.WebSocketRoute = exports.WebSocket = exports.RouteHandler = exports.Route = exports.Response = exports.Request = exports.RawHeaders = void 0;
|
||||||
exports.validateHeaders = validateHeaders;
|
exports.validateHeaders = validateHeaders;
|
||||||
var _url = require("url");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _frame = require("./frame");
|
|
||||||
var _worker = require("./worker");
|
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
|
||||||
var _utilsBundle = require("../utilsBundle");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _manualPromise = require("../utils/manualPromise");
|
|
||||||
var _events = require("./events");
|
|
||||||
var _waiter = require("./waiter");
|
|
||||||
var _fetch = require("./fetch");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
let _Symbol$asyncDispose;
|
var _events = require("./events");
|
||||||
|
var _fetch = require("./fetch");
|
||||||
|
var _frame = require("./frame");
|
||||||
|
var _waiter = require("./waiter");
|
||||||
|
var _worker = require("./worker");
|
||||||
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
|
var _headers = require("../utils/isomorphic/headers");
|
||||||
|
var _urlMatch = require("../utils/isomorphic/urlMatch");
|
||||||
|
var _manualPromise = require("../utils/isomorphic/manualPromise");
|
||||||
|
var _multimap = require("../utils/isomorphic/multimap");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
|
var _stackTrace = require("../utils/isomorphic/stackTrace");
|
||||||
|
var _mimeType = require("../utils/isomorphic/mimeType");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -33,7 +35,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
class Request extends _channelOwner.ChannelOwner {
|
class Request extends _channelOwner.ChannelOwner {
|
||||||
static from(request) {
|
static from(request) {
|
||||||
return request._object;
|
return request._object;
|
||||||
@@ -88,7 +90,7 @@ class Request extends _channelOwner.ChannelOwner {
|
|||||||
const contentType = this.headers()['content-type'];
|
const contentType = this.headers()['content-type'];
|
||||||
if (contentType !== null && contentType !== void 0 && contentType.includes('application/x-www-form-urlencoded')) {
|
if (contentType !== null && contentType !== void 0 && contentType.includes('application/x-www-form-urlencoded')) {
|
||||||
const entries = {};
|
const entries = {};
|
||||||
const parsed = new _url.URLSearchParams(postData);
|
const parsed = new URLSearchParams(postData);
|
||||||
for (const [k, v] of parsed.entries()) entries[k] = v;
|
for (const [k, v] of parsed.entries()) entries[k] = v;
|
||||||
return entries;
|
return entries;
|
||||||
}
|
}
|
||||||
@@ -134,7 +136,7 @@ class Request extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
frame() {
|
frame() {
|
||||||
if (!this._initializer.frame) {
|
if (!this._initializer.frame) {
|
||||||
(0, _utils.assert)(this.serviceWorker());
|
(0, _assert.assert)(this.serviceWorker());
|
||||||
throw new Error('Service Worker requests do not have an associated frame.');
|
throw new Error('Service Worker requests do not have an associated frame.');
|
||||||
}
|
}
|
||||||
const frame = _frame.Frame.from(this._initializer.frame);
|
const frame = _frame.Frame.from(this._initializer.frame);
|
||||||
@@ -184,7 +186,7 @@ class Request extends _channelOwner.ChannelOwner {
|
|||||||
if (overrides.url) this._fallbackOverrides.url = overrides.url;
|
if (overrides.url) this._fallbackOverrides.url = overrides.url;
|
||||||
if (overrides.method) this._fallbackOverrides.method = overrides.method;
|
if (overrides.method) this._fallbackOverrides.method = overrides.method;
|
||||||
if (overrides.headers) this._fallbackOverrides.headers = overrides.headers;
|
if (overrides.headers) this._fallbackOverrides.headers = overrides.headers;
|
||||||
if ((0, _utils.isString)(overrides.postData)) this._fallbackOverrides.postDataBuffer = Buffer.from(overrides.postData, 'utf-8');else if (overrides.postData instanceof Buffer) this._fallbackOverrides.postDataBuffer = overrides.postData;else if (overrides.postData) this._fallbackOverrides.postDataBuffer = Buffer.from(JSON.stringify(overrides.postData), 'utf-8');
|
if ((0, _rtti.isString)(overrides.postData)) this._fallbackOverrides.postDataBuffer = Buffer.from(overrides.postData, 'utf-8');else if (overrides.postData instanceof Buffer) this._fallbackOverrides.postDataBuffer = overrides.postData;else if (overrides.postData) this._fallbackOverrides.postDataBuffer = Buffer.from(JSON.stringify(overrides.postData), 'utf-8');
|
||||||
}
|
}
|
||||||
_fallbackOverridesForContinue() {
|
_fallbackOverridesForContinue() {
|
||||||
return this._fallbackOverrides;
|
return this._fallbackOverrides;
|
||||||
@@ -272,13 +274,12 @@ class Route extends _channelOwner.ChannelOwner {
|
|||||||
body
|
body
|
||||||
} = options;
|
} = options;
|
||||||
if (options.json !== undefined) {
|
if (options.json !== undefined) {
|
||||||
(0, _utils.assert)(options.body === undefined, 'Can specify either body or json parameters');
|
(0, _assert.assert)(options.body === undefined, 'Can specify either body or json parameters');
|
||||||
body = JSON.stringify(options.json);
|
body = JSON.stringify(options.json);
|
||||||
}
|
}
|
||||||
if (options.response instanceof _fetch.APIResponse) {
|
if (options.response instanceof _fetch.APIResponse) {
|
||||||
var _statusOption, _headersOption;
|
statusOption !== null && statusOption !== void 0 ? statusOption : statusOption = options.response.status();
|
||||||
(_statusOption = statusOption) !== null && _statusOption !== void 0 ? _statusOption : statusOption = options.response.status();
|
headersOption !== null && headersOption !== void 0 ? headersOption : headersOption = options.response.headers();
|
||||||
(_headersOption = headersOption) !== null && _headersOption !== void 0 ? _headersOption : headersOption = options.response.headers();
|
|
||||||
if (body === undefined && options.path === undefined) {
|
if (body === undefined && options.path === undefined) {
|
||||||
if (options.response._request._connection === this._connection) fetchResponseUid = options.response._fetchUid();else body = await options.response.body();
|
if (options.response._request._connection === this._connection) fetchResponseUid = options.response._fetchUid();else body = await options.response.body();
|
||||||
}
|
}
|
||||||
@@ -286,11 +287,11 @@ class Route extends _channelOwner.ChannelOwner {
|
|||||||
let isBase64 = false;
|
let isBase64 = false;
|
||||||
let length = 0;
|
let length = 0;
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
const buffer = await _fs.default.promises.readFile(options.path);
|
const buffer = await this._platform.fs().promises.readFile(options.path);
|
||||||
body = buffer.toString('base64');
|
body = buffer.toString('base64');
|
||||||
isBase64 = true;
|
isBase64 = true;
|
||||||
length = buffer.length;
|
length = buffer.length;
|
||||||
} else if ((0, _utils.isString)(body)) {
|
} else if ((0, _rtti.isString)(body)) {
|
||||||
isBase64 = false;
|
isBase64 = false;
|
||||||
length = Buffer.byteLength(body);
|
length = Buffer.byteLength(body);
|
||||||
} else if (body) {
|
} else if (body) {
|
||||||
@@ -300,11 +301,11 @@ class Route extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
const headers = {};
|
const headers = {};
|
||||||
for (const header of Object.keys(headersOption || {})) headers[header.toLowerCase()] = String(headersOption[header]);
|
for (const header of Object.keys(headersOption || {})) headers[header.toLowerCase()] = String(headersOption[header]);
|
||||||
if (options.contentType) headers['content-type'] = String(options.contentType);else if (options.json) headers['content-type'] = 'application/json';else if (options.path) headers['content-type'] = _utilsBundle.mime.getType(options.path) || 'application/octet-stream';
|
if (options.contentType) headers['content-type'] = String(options.contentType);else if (options.json) headers['content-type'] = 'application/json';else if (options.path) headers['content-type'] = (0, _mimeType.getMimeTypeForPath)(options.path) || 'application/octet-stream';
|
||||||
if (length && !('content-length' in headers)) headers['content-length'] = String(length);
|
if (length && !('content-length' in headers)) headers['content-length'] = String(length);
|
||||||
await this._raceWithTargetClose(this._channel.fulfill({
|
await this._raceWithTargetClose(this._channel.fulfill({
|
||||||
status: statusOption || 200,
|
status: statusOption || 200,
|
||||||
headers: (0, _utils.headersObjectToArray)(headers),
|
headers: (0, _headers.headersObjectToArray)(headers),
|
||||||
body,
|
body,
|
||||||
isBase64,
|
isBase64,
|
||||||
fetchResponseUid
|
fetchResponseUid
|
||||||
@@ -329,14 +330,13 @@ class Route extends _channelOwner.ChannelOwner {
|
|||||||
return await this._raceWithTargetClose(this._channel.continue({
|
return await this._raceWithTargetClose(this._channel.continue({
|
||||||
url: options.url,
|
url: options.url,
|
||||||
method: options.method,
|
method: options.method,
|
||||||
headers: options.headers ? (0, _utils.headersObjectToArray)(options.headers) : undefined,
|
headers: options.headers ? (0, _headers.headersObjectToArray)(options.headers) : undefined,
|
||||||
postData: options.postDataBuffer,
|
postData: options.postDataBuffer,
|
||||||
isFallback
|
isFallback
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Route = Route;
|
exports.Route = Route;
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class WebSocketRoute extends _channelOwner.ChannelOwner {
|
class WebSocketRoute extends _channelOwner.ChannelOwner {
|
||||||
static from(route) {
|
static from(route) {
|
||||||
return route._object;
|
return route._object;
|
||||||
@@ -370,7 +370,7 @@ class WebSocketRoute extends _channelOwner.ChannelOwner {
|
|||||||
}).catch(() => {});
|
}).catch(() => {});
|
||||||
},
|
},
|
||||||
send: message => {
|
send: message => {
|
||||||
if ((0, _utils.isString)(message)) this._channel.sendToServer({
|
if ((0, _rtti.isString)(message)) this._channel.sendToServer({
|
||||||
message,
|
message,
|
||||||
isBase64: false
|
isBase64: false
|
||||||
}).catch(() => {});else this._channel.sendToServer({
|
}).catch(() => {});else this._channel.sendToServer({
|
||||||
@@ -439,7 +439,7 @@ class WebSocketRoute extends _channelOwner.ChannelOwner {
|
|||||||
return this._server;
|
return this._server;
|
||||||
}
|
}
|
||||||
send(message) {
|
send(message) {
|
||||||
if ((0, _utils.isString)(message)) this._channel.sendToPage({
|
if ((0, _rtti.isString)(message)) this._channel.sendToPage({
|
||||||
message,
|
message,
|
||||||
isBase64: false
|
isBase64: false
|
||||||
}).catch(() => {});else this._channel.sendToPage({
|
}).catch(() => {});else this._channel.sendToPage({
|
||||||
@@ -453,7 +453,7 @@ class WebSocketRoute extends _channelOwner.ChannelOwner {
|
|||||||
onClose(handler) {
|
onClose(handler) {
|
||||||
this._onPageClose = handler;
|
this._onPageClose = handler;
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async _afterHandle() {
|
async _afterHandle() {
|
||||||
@@ -476,9 +476,9 @@ class WebSocketRouteHandler {
|
|||||||
const patterns = [];
|
const patterns = [];
|
||||||
let all = false;
|
let all = false;
|
||||||
for (const handler of handlers) {
|
for (const handler of handlers) {
|
||||||
if ((0, _utils.isString)(handler.url)) patterns.push({
|
if ((0, _rtti.isString)(handler.url)) patterns.push({
|
||||||
glob: handler.url
|
glob: handler.url
|
||||||
});else if ((0, _utils.isRegExp)(handler.url)) patterns.push({
|
});else if ((0, _rtti.isRegExp)(handler.url)) patterns.push({
|
||||||
regexSource: handler.url.source,
|
regexSource: handler.url.source,
|
||||||
regexFlags: handler.url.flags
|
regexFlags: handler.url.flags
|
||||||
});else all = true;
|
});else all = true;
|
||||||
@@ -489,7 +489,7 @@ class WebSocketRouteHandler {
|
|||||||
return patterns;
|
return patterns;
|
||||||
}
|
}
|
||||||
matches(wsURL) {
|
matches(wsURL) {
|
||||||
return (0, _utils.urlMatches)(this._baseURL, wsURL, this.url);
|
return (0, _urlMatch.urlMatches)(this._baseURL, wsURL, this.url);
|
||||||
}
|
}
|
||||||
async handle(webSocketRoute) {
|
async handle(webSocketRoute) {
|
||||||
const handler = this.handler;
|
const handler = this.handler;
|
||||||
@@ -644,11 +644,11 @@ exports.WebSocket = WebSocket;
|
|||||||
function validateHeaders(headers) {
|
function validateHeaders(headers) {
|
||||||
for (const key of Object.keys(headers)) {
|
for (const key of Object.keys(headers)) {
|
||||||
const value = headers[key];
|
const value = headers[key];
|
||||||
if (!Object.is(value, undefined) && !(0, _utils.isString)(value)) throw new Error(`Expected value of header "${key}" to be String, but "${typeof value}" is found.`);
|
if (!Object.is(value, undefined) && !(0, _rtti.isString)(value)) throw new Error(`Expected value of header "${key}" to be String, but "${typeof value}" is found.`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
class RouteHandler {
|
class RouteHandler {
|
||||||
constructor(baseURL, url, handler, times = Number.MAX_SAFE_INTEGER) {
|
constructor(platform, baseURL, url, handler, times = Number.MAX_SAFE_INTEGER) {
|
||||||
this.handledCount = 0;
|
this.handledCount = 0;
|
||||||
this._baseURL = void 0;
|
this._baseURL = void 0;
|
||||||
this._times = void 0;
|
this._times = void 0;
|
||||||
@@ -656,20 +656,20 @@ class RouteHandler {
|
|||||||
this.handler = void 0;
|
this.handler = void 0;
|
||||||
this._ignoreException = false;
|
this._ignoreException = false;
|
||||||
this._activeInvocations = new Set();
|
this._activeInvocations = new Set();
|
||||||
this._svedZone = void 0;
|
this._savedZone = void 0;
|
||||||
this._baseURL = baseURL;
|
this._baseURL = baseURL;
|
||||||
this._times = times;
|
this._times = times;
|
||||||
this.url = url;
|
this.url = url;
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
this._svedZone = _utils.zones.current().without('apiZone');
|
this._savedZone = platform.zones.current().pop();
|
||||||
}
|
}
|
||||||
static prepareInterceptionPatterns(handlers) {
|
static prepareInterceptionPatterns(handlers) {
|
||||||
const patterns = [];
|
const patterns = [];
|
||||||
let all = false;
|
let all = false;
|
||||||
for (const handler of handlers) {
|
for (const handler of handlers) {
|
||||||
if ((0, _utils.isString)(handler.url)) patterns.push({
|
if ((0, _rtti.isString)(handler.url)) patterns.push({
|
||||||
glob: handler.url
|
glob: handler.url
|
||||||
});else if ((0, _utils.isRegExp)(handler.url)) patterns.push({
|
});else if ((0, _rtti.isRegExp)(handler.url)) patterns.push({
|
||||||
regexSource: handler.url.source,
|
regexSource: handler.url.source,
|
||||||
regexFlags: handler.url.flags
|
regexFlags: handler.url.flags
|
||||||
});else all = true;
|
});else all = true;
|
||||||
@@ -680,10 +680,10 @@ class RouteHandler {
|
|||||||
return patterns;
|
return patterns;
|
||||||
}
|
}
|
||||||
matches(requestURL) {
|
matches(requestURL) {
|
||||||
return (0, _utils.urlMatches)(this._baseURL, requestURL, this.url);
|
return (0, _urlMatch.urlMatches)(this._baseURL, requestURL, this.url);
|
||||||
}
|
}
|
||||||
async handle(route) {
|
async handle(route) {
|
||||||
return await this._svedZone.run(async () => this._handleImpl(route));
|
return await this._savedZone.run(async () => this._handleImpl(route));
|
||||||
}
|
}
|
||||||
async _handleImpl(route) {
|
async _handleImpl(route) {
|
||||||
const handlerInvocation = {
|
const handlerInvocation = {
|
||||||
@@ -699,7 +699,7 @@ class RouteHandler {
|
|||||||
if ((0, _errors.isTargetClosedError)(e)) {
|
if ((0, _errors.isTargetClosedError)(e)) {
|
||||||
// We are failing in the handler because the target close closed.
|
// We are failing in the handler because the target close closed.
|
||||||
// Give user a hint!
|
// Give user a hint!
|
||||||
(0, _utils.rewriteErrorMessage)(e, `"${e.message}" while running route callback.\nConsider awaiting \`await page.unrouteAll({ behavior: 'ignoreErrors' })\`\nbefore the end of the test to ignore remaining routes in flight.`);
|
(0, _stackTrace.rewriteErrorMessage)(e, `"${e.message}" while running route callback.\nConsider awaiting \`await page.unrouteAll({ behavior: 'ignoreErrors' })\`\nbefore the end of the test to ignore remaining routes in flight.`);
|
||||||
}
|
}
|
||||||
throw e;
|
throw e;
|
||||||
} finally {
|
} finally {
|
||||||
@@ -745,7 +745,7 @@ class RawHeaders {
|
|||||||
}
|
}
|
||||||
constructor(headers) {
|
constructor(headers) {
|
||||||
this._headersArray = void 0;
|
this._headersArray = void 0;
|
||||||
this._headersMap = new _utils.MultiMap();
|
this._headersMap = new _multimap.MultiMap();
|
||||||
this._headersArray = headers;
|
this._headersArray = headers;
|
||||||
for (const header of headers) this._headersMap.set(header.name.toLowerCase(), header.value);
|
for (const header of headers) this._headersMap.set(header.name.toLowerCase(), header.value);
|
||||||
}
|
}
|
||||||
|
|||||||
85
tvapp2/node_modules/playwright-core/lib/client/page.js
generated
vendored
@@ -4,11 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Page = exports.BindingCall = void 0;
|
exports.Page = exports.BindingCall = void 0;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
|
||||||
var _path = _interopRequireDefault(require("path"));
|
|
||||||
var _errors = require("./errors");
|
|
||||||
var _timeoutSettings = require("../common/timeoutSettings");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _accessibility = require("./accessibility");
|
var _accessibility = require("./accessibility");
|
||||||
var _artifact = require("./artifact");
|
var _artifact = require("./artifact");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
@@ -16,17 +11,25 @@ var _clientHelper = require("./clientHelper");
|
|||||||
var _coverage = require("./coverage");
|
var _coverage = require("./coverage");
|
||||||
var _download = require("./download");
|
var _download = require("./download");
|
||||||
var _elementHandle = require("./elementHandle");
|
var _elementHandle = require("./elementHandle");
|
||||||
|
var _errors = require("./errors");
|
||||||
var _events = require("./events");
|
var _events = require("./events");
|
||||||
var _fileChooser = require("./fileChooser");
|
var _fileChooser = require("./fileChooser");
|
||||||
var _frame = require("./frame");
|
var _frame = require("./frame");
|
||||||
|
var _harRouter = require("./harRouter");
|
||||||
var _input = require("./input");
|
var _input = require("./input");
|
||||||
var _jsHandle = require("./jsHandle");
|
var _jsHandle = require("./jsHandle");
|
||||||
var _network = require("./network");
|
var _network = require("./network");
|
||||||
var _video = require("./video");
|
var _video = require("./video");
|
||||||
var _waiter = require("./waiter");
|
var _waiter = require("./waiter");
|
||||||
var _worker = require("./worker");
|
var _worker = require("./worker");
|
||||||
var _harRouter = require("./harRouter");
|
var _timeoutSettings = require("./timeoutSettings");
|
||||||
let _Symbol$asyncDispose;
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
|
var _fileUtils = require("./fileUtils");
|
||||||
|
var _headers = require("../utils/isomorphic/headers");
|
||||||
|
var _stringUtils = require("../utils/isomorphic/stringUtils");
|
||||||
|
var _urlMatch = require("../utils/isomorphic/urlMatch");
|
||||||
|
var _manualPromise = require("../utils/isomorphic/manualPromise");
|
||||||
|
var _rtti = require("../utils/isomorphic/rtti");
|
||||||
/**
|
/**
|
||||||
* Copyright 2017 Google Inc. All rights reserved.
|
* Copyright 2017 Google Inc. All rights reserved.
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
* Modifications copyright (c) Microsoft Corporation.
|
||||||
@@ -43,8 +46,7 @@ let _Symbol$asyncDispose;
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
_Symbol$asyncDispose = Symbol.asyncDispose;
|
|
||||||
class Page extends _channelOwner.ChannelOwner {
|
class Page extends _channelOwner.ChannelOwner {
|
||||||
static from(page) {
|
static from(page) {
|
||||||
return page._object;
|
return page._object;
|
||||||
@@ -60,7 +62,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
this._frames = new Set();
|
this._frames = new Set();
|
||||||
this._workers = new Set();
|
this._workers = new Set();
|
||||||
this._closed = false;
|
this._closed = false;
|
||||||
this._closedOrCrashedScope = new _utils.LongStandingScope();
|
this._closedOrCrashedScope = new _manualPromise.LongStandingScope();
|
||||||
this._viewportSize = void 0;
|
this._viewportSize = void 0;
|
||||||
this._routes = [];
|
this._routes = [];
|
||||||
this._webSocketRoutes = [];
|
this._webSocketRoutes = [];
|
||||||
@@ -80,7 +82,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
this._harRouters = [];
|
this._harRouters = [];
|
||||||
this._locatorHandlers = new Map();
|
this._locatorHandlers = new Map();
|
||||||
this._browserContext = parent;
|
this._browserContext = parent;
|
||||||
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._browserContext._timeoutSettings);
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings(this._platform, this._browserContext._timeoutSettings);
|
||||||
this.accessibility = new _accessibility.Accessibility(this._channel);
|
this.accessibility = new _accessibility.Accessibility(this._channel);
|
||||||
this.keyboard = new _input.Keyboard(this);
|
this.keyboard = new _input.Keyboard(this);
|
||||||
this.mouse = new _input.Mouse(this);
|
this.mouse = new _input.Mouse(this);
|
||||||
@@ -208,12 +210,12 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
return this._mainFrame;
|
return this._mainFrame;
|
||||||
}
|
}
|
||||||
frame(frameSelector) {
|
frame(frameSelector) {
|
||||||
const name = (0, _utils.isString)(frameSelector) ? frameSelector : frameSelector.name;
|
const name = (0, _rtti.isString)(frameSelector) ? frameSelector : frameSelector.name;
|
||||||
const url = (0, _utils.isObject)(frameSelector) ? frameSelector.url : undefined;
|
const url = (0, _rtti.isObject)(frameSelector) ? frameSelector.url : undefined;
|
||||||
(0, _utils.assert)(name || url, 'Either name or url matcher should be specified');
|
(0, _assert.assert)(name || url, 'Either name or url matcher should be specified');
|
||||||
return this.frames().find(f => {
|
return this.frames().find(f => {
|
||||||
if (name) return f.name() === name;
|
if (name) return f.name() === name;
|
||||||
return (0, _utils.urlMatches)(this._browserContext._options.baseURL, f.url(), url);
|
return (0, _urlMatch.urlMatches)(this._browserContext._options.baseURL, f.url(), url);
|
||||||
}) || null;
|
}) || null;
|
||||||
}
|
}
|
||||||
frames() {
|
frames() {
|
||||||
@@ -222,18 +224,18 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
setDefaultNavigationTimeout(timeout) {
|
setDefaultNavigationTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultNavigationTimeout(timeout);
|
this._timeoutSettings.setDefaultNavigationTimeout(timeout);
|
||||||
this._wrapApiCall(async () => {
|
this._wrapApiCall(async () => {
|
||||||
this._channel.setDefaultNavigationTimeoutNoReply({
|
await this._channel.setDefaultNavigationTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
}).catch(() => {});
|
});
|
||||||
}, true);
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
setDefaultTimeout(timeout) {
|
setDefaultTimeout(timeout) {
|
||||||
this._timeoutSettings.setDefaultTimeout(timeout);
|
this._timeoutSettings.setDefaultTimeout(timeout);
|
||||||
this._wrapApiCall(async () => {
|
this._wrapApiCall(async () => {
|
||||||
this._channel.setDefaultTimeoutNoReply({
|
await this._channel.setDefaultTimeoutNoReply({
|
||||||
timeout
|
timeout
|
||||||
}).catch(() => {});
|
});
|
||||||
}, true);
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
_forceVideo() {
|
_forceVideo() {
|
||||||
if (!this._video) this._video = new _video.Video(this, this._connection);
|
if (!this._video) this._video = new _video.Video(this, this._connection);
|
||||||
@@ -293,7 +295,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
async setExtraHTTPHeaders(headers) {
|
async setExtraHTTPHeaders(headers) {
|
||||||
(0, _network.validateHeaders)(headers);
|
(0, _network.validateHeaders)(headers);
|
||||||
await this._channel.setExtraHTTPHeaders({
|
await this._channel.setExtraHTTPHeaders({
|
||||||
headers: (0, _utils.headersObjectToArray)(headers)
|
headers: (0, _headers.headersObjectToArray)(headers)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
url() {
|
url() {
|
||||||
@@ -368,7 +370,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async waitForRequest(urlOrPredicate, options = {}) {
|
async waitForRequest(urlOrPredicate, options = {}) {
|
||||||
const predicate = async request => {
|
const predicate = async request => {
|
||||||
if ((0, _utils.isString)(urlOrPredicate) || (0, _utils.isRegExp)(urlOrPredicate)) return (0, _utils.urlMatches)(this._browserContext._options.baseURL, request.url(), urlOrPredicate);
|
if ((0, _rtti.isString)(urlOrPredicate) || (0, _rtti.isRegExp)(urlOrPredicate)) return (0, _urlMatch.urlMatches)(this._browserContext._options.baseURL, request.url(), urlOrPredicate);
|
||||||
return await urlOrPredicate(request);
|
return await urlOrPredicate(request);
|
||||||
};
|
};
|
||||||
const trimmedUrl = trimUrl(urlOrPredicate);
|
const trimmedUrl = trimUrl(urlOrPredicate);
|
||||||
@@ -380,7 +382,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async waitForResponse(urlOrPredicate, options = {}) {
|
async waitForResponse(urlOrPredicate, options = {}) {
|
||||||
const predicate = async response => {
|
const predicate = async response => {
|
||||||
if ((0, _utils.isString)(urlOrPredicate) || (0, _utils.isRegExp)(urlOrPredicate)) return (0, _utils.urlMatches)(this._browserContext._options.baseURL, response.url(), urlOrPredicate);
|
if ((0, _rtti.isString)(urlOrPredicate) || (0, _rtti.isRegExp)(urlOrPredicate)) return (0, _urlMatch.urlMatches)(this._browserContext._options.baseURL, response.url(), urlOrPredicate);
|
||||||
return await urlOrPredicate(response);
|
return await urlOrPredicate(response);
|
||||||
};
|
};
|
||||||
const trimmedUrl = trimUrl(urlOrPredicate);
|
const trimmedUrl = trimUrl(urlOrPredicate);
|
||||||
@@ -432,7 +434,8 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
media: options.media === null ? 'no-override' : options.media,
|
media: options.media === null ? 'no-override' : options.media,
|
||||||
colorScheme: options.colorScheme === null ? 'no-override' : options.colorScheme,
|
colorScheme: options.colorScheme === null ? 'no-override' : options.colorScheme,
|
||||||
reducedMotion: options.reducedMotion === null ? 'no-override' : options.reducedMotion,
|
reducedMotion: options.reducedMotion === null ? 'no-override' : options.reducedMotion,
|
||||||
forcedColors: options.forcedColors === null ? 'no-override' : options.forcedColors
|
forcedColors: options.forcedColors === null ? 'no-override' : options.forcedColors,
|
||||||
|
contrast: options.contrast === null ? 'no-override' : options.contrast
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async setViewportSize(viewportSize) {
|
async setViewportSize(viewportSize) {
|
||||||
@@ -449,21 +452,23 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
return await this._mainFrame.evaluate(pageFunction, arg);
|
return await this._mainFrame.evaluate(pageFunction, arg);
|
||||||
}
|
}
|
||||||
async addInitScript(script, arg) {
|
async addInitScript(script, arg) {
|
||||||
const source = await (0, _clientHelper.evaluationScript)(script, arg);
|
const source = await (0, _clientHelper.evaluationScript)(this._platform, script, arg);
|
||||||
await this._channel.addInitScript({
|
await this._channel.addInitScript({
|
||||||
source
|
source
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async route(url, handler, options = {}) {
|
async route(url, handler, options = {}) {
|
||||||
this._routes.unshift(new _network.RouteHandler(this._browserContext._options.baseURL, url, handler, options.times));
|
this._routes.unshift(new _network.RouteHandler(this._platform, this._browserContext._options.baseURL, url, handler, options.times));
|
||||||
await this._updateInterceptionPatterns();
|
await this._updateInterceptionPatterns();
|
||||||
}
|
}
|
||||||
async routeFromHAR(har, options = {}) {
|
async routeFromHAR(har, options = {}) {
|
||||||
|
const localUtils = this._connection.localUtils();
|
||||||
|
if (!localUtils) throw new Error('Route from har is not supported in thin clients');
|
||||||
if (options.update) {
|
if (options.update) {
|
||||||
await this._browserContext._recordIntoHAR(har, this, options);
|
await this._browserContext._recordIntoHAR(har, this, options);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const harRouter = await _harRouter.HarRouter.create(this._connection.localUtils(), har, options.notFound || 'abort', {
|
const harRouter = await _harRouter.HarRouter.create(localUtils, har, options.notFound || 'abort', {
|
||||||
urlMatch: options.url
|
urlMatch: options.url
|
||||||
});
|
});
|
||||||
this._harRouters.push(harRouter);
|
this._harRouters.push(harRouter);
|
||||||
@@ -485,7 +490,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
const removed = [];
|
const removed = [];
|
||||||
const remaining = [];
|
const remaining = [];
|
||||||
for (const route of this._routes) {
|
for (const route of this._routes) {
|
||||||
if ((0, _utils.urlMatchesEqual)(route.url, url) && (!handler || route.handler === handler)) removed.push(route);else remaining.push(route);
|
if ((0, _urlMatch.urlMatchesEqual)(route.url, url) && (!handler || route.handler === handler)) removed.push(route);else remaining.push(route);
|
||||||
}
|
}
|
||||||
await this._unrouteInternal(removed, remaining, 'default');
|
await this._unrouteInternal(removed, remaining, 'default');
|
||||||
}
|
}
|
||||||
@@ -509,21 +514,22 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async screenshot(options = {}) {
|
async screenshot(options = {}) {
|
||||||
|
const mask = options.mask;
|
||||||
const copy = {
|
const copy = {
|
||||||
...options,
|
...options,
|
||||||
mask: undefined
|
mask: undefined
|
||||||
};
|
};
|
||||||
if (!copy.type) copy.type = (0, _elementHandle.determineScreenshotType)(options);
|
if (!copy.type) copy.type = (0, _elementHandle.determineScreenshotType)(options);
|
||||||
if (options.mask) {
|
if (mask) {
|
||||||
copy.mask = options.mask.map(locator => ({
|
copy.mask = mask.map(locator => ({
|
||||||
frame: locator._frame._channel,
|
frame: locator._frame._channel,
|
||||||
selector: locator._selector
|
selector: locator._selector
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
const result = await this._channel.screenshot(copy);
|
const result = await this._channel.screenshot(copy);
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
await (0, _utils.mkdirIfNeeded)(options.path);
|
await (0, _fileUtils.mkdirIfNeeded)(this._platform, options.path);
|
||||||
await _fs.default.promises.writeFile(options.path, result.binary);
|
await this._platform.fs().promises.writeFile(options.path, result.binary);
|
||||||
}
|
}
|
||||||
return result.binary;
|
return result.binary;
|
||||||
}
|
}
|
||||||
@@ -549,7 +555,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
async bringToFront() {
|
async bringToFront() {
|
||||||
await this._channel.bringToFront();
|
await this._channel.bringToFront();
|
||||||
}
|
}
|
||||||
async [_Symbol$asyncDispose]() {
|
async [Symbol.asyncDispose]() {
|
||||||
await this.close();
|
await this.close();
|
||||||
}
|
}
|
||||||
async close(options = {}) {
|
async close(options = {}) {
|
||||||
@@ -678,7 +684,7 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
async pause(_options) {
|
async pause(_options) {
|
||||||
var _this$_instrumentatio;
|
var _this$_instrumentatio;
|
||||||
if (require('inspector').url()) return;
|
if (this._platform.isJSDebuggerAttached()) return;
|
||||||
const defaultNavigationTimeout = this._browserContext._timeoutSettings.defaultNavigationTimeout();
|
const defaultNavigationTimeout = this._browserContext._timeoutSettings.defaultNavigationTimeout();
|
||||||
const defaultTimeout = this._browserContext._timeoutSettings.defaultTimeout();
|
const defaultTimeout = this._browserContext._timeoutSettings.defaultTimeout();
|
||||||
this._browserContext.setDefaultNavigationTimeout(0);
|
this._browserContext.setDefaultNavigationTimeout(0);
|
||||||
@@ -705,10 +711,11 @@ class Page extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
const result = await this._channel.pdf(transportOptions);
|
const result = await this._channel.pdf(transportOptions);
|
||||||
if (options.path) {
|
if (options.path) {
|
||||||
await _fs.default.promises.mkdir(_path.default.dirname(options.path), {
|
const platform = this._platform;
|
||||||
|
await platform.fs().promises.mkdir(platform.path().dirname(options.path), {
|
||||||
recursive: true
|
recursive: true
|
||||||
});
|
});
|
||||||
await _fs.default.promises.writeFile(options.path, result.pdf);
|
await platform.fs().promises.writeFile(options.path, result.pdf);
|
||||||
}
|
}
|
||||||
return result.pdf;
|
return result.pdf;
|
||||||
}
|
}
|
||||||
@@ -743,6 +750,6 @@ class BindingCall extends _channelOwner.ChannelOwner {
|
|||||||
}
|
}
|
||||||
exports.BindingCall = BindingCall;
|
exports.BindingCall = BindingCall;
|
||||||
function trimUrl(param) {
|
function trimUrl(param) {
|
||||||
if ((0, _utils.isRegExp)(param)) return `/${(0, _utils.trimStringWithEllipsis)(param.source, 50)}/${param.flags}`;
|
if ((0, _rtti.isRegExp)(param)) return `/${(0, _stringUtils.trimStringWithEllipsis)(param.source, 50)}/${param.flags}`;
|
||||||
if ((0, _utils.isString)(param)) return `"${(0, _utils.trimStringWithEllipsis)(param, 50)}"`;
|
if ((0, _rtti.isString)(param)) return `"${(0, _stringUtils.trimStringWithEllipsis)(param, 50)}"`;
|
||||||
}
|
}
|
||||||
22
tvapp2/node_modules/playwright-core/lib/client/playwright.js
generated
vendored
@@ -4,11 +4,12 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Playwright = void 0;
|
exports.Playwright = void 0;
|
||||||
var _errors = require("./errors");
|
|
||||||
var _android = require("./android");
|
var _android = require("./android");
|
||||||
|
var _browser = require("./browser");
|
||||||
var _browserType = require("./browserType");
|
var _browserType = require("./browserType");
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _electron = require("./electron");
|
var _electron = require("./electron");
|
||||||
|
var _errors = require("./errors");
|
||||||
var _fetch = require("./fetch");
|
var _fetch = require("./fetch");
|
||||||
var _selectors = require("./selectors");
|
var _selectors = require("./selectors");
|
||||||
/**
|
/**
|
||||||
@@ -42,6 +43,11 @@ class Playwright extends _channelOwner.ChannelOwner {
|
|||||||
this.selectors = void 0;
|
this.selectors = void 0;
|
||||||
this.request = void 0;
|
this.request = void 0;
|
||||||
this.errors = void 0;
|
this.errors = void 0;
|
||||||
|
// Instrumentation.
|
||||||
|
this._defaultLaunchOptions = void 0;
|
||||||
|
this._defaultContextOptions = void 0;
|
||||||
|
this._defaultContextTimeout = void 0;
|
||||||
|
this._defaultContextNavigationTimeout = void 0;
|
||||||
this.request = new _fetch.APIRequest(this);
|
this.request = new _fetch.APIRequest(this);
|
||||||
this.chromium = _browserType.BrowserType.from(initializer.chromium);
|
this.chromium = _browserType.BrowserType.from(initializer.chromium);
|
||||||
this.chromium._playwright = this;
|
this.chromium._playwright = this;
|
||||||
@@ -76,5 +82,19 @@ class Playwright extends _channelOwner.ChannelOwner {
|
|||||||
static from(channel) {
|
static from(channel) {
|
||||||
return channel._object;
|
return channel._object;
|
||||||
}
|
}
|
||||||
|
_browserTypes() {
|
||||||
|
return [this.chromium, this.firefox, this.webkit, this._bidiChromium, this._bidiFirefox];
|
||||||
|
}
|
||||||
|
_preLaunchedBrowser() {
|
||||||
|
const browser = _browser.Browser.from(this._initializer.preLaunchedBrowser);
|
||||||
|
browser._browserType = this[browser._name];
|
||||||
|
return browser;
|
||||||
|
}
|
||||||
|
_allContexts() {
|
||||||
|
return this._browserTypes().flatMap(type => [...type._contexts]);
|
||||||
|
}
|
||||||
|
_allPages() {
|
||||||
|
return this._allContexts().flatMap(context => context.pages());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exports.Playwright = Playwright;
|
exports.Playwright = Playwright;
|
||||||
10
tvapp2/node_modules/playwright-core/lib/client/selectors.js
generated
vendored
@@ -4,9 +4,11 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.SelectorsOwner = exports.Selectors = void 0;
|
exports.SelectorsOwner = exports.Selectors = void 0;
|
||||||
var _clientHelper = require("./clientHelper");
|
exports.setPlatformForSelectors = setPlatformForSelectors;
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
|
var _clientHelper = require("./clientHelper");
|
||||||
var _locator = require("./locator");
|
var _locator = require("./locator");
|
||||||
|
var _platform = require("./platform");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -23,13 +25,17 @@ var _locator = require("./locator");
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
let platform = _platform.emptyPlatform;
|
||||||
|
function setPlatformForSelectors(p) {
|
||||||
|
platform = p;
|
||||||
|
}
|
||||||
class Selectors {
|
class Selectors {
|
||||||
constructor() {
|
constructor() {
|
||||||
this._channels = new Set();
|
this._channels = new Set();
|
||||||
this._registrations = [];
|
this._registrations = [];
|
||||||
}
|
}
|
||||||
async register(name, script, options = {}) {
|
async register(name, script, options = {}) {
|
||||||
const source = await (0, _clientHelper.evaluationScript)(script, undefined, false);
|
const source = await (0, _clientHelper.evaluationScript)(platform, script, undefined, false);
|
||||||
const params = {
|
const params = {
|
||||||
...options,
|
...options,
|
||||||
name,
|
name,
|
||||||
|
|||||||
21
tvapp2/node_modules/playwright-core/lib/client/stream.js
generated
vendored
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Stream = void 0;
|
exports.Stream = void 0;
|
||||||
var _stream = require("stream");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
@@ -30,25 +29,7 @@ class Stream extends _channelOwner.ChannelOwner {
|
|||||||
super(parent, type, guid, initializer);
|
super(parent, type, guid, initializer);
|
||||||
}
|
}
|
||||||
stream() {
|
stream() {
|
||||||
return new StreamImpl(this._channel);
|
return this._platform.streamReadable(this._channel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.Stream = Stream;
|
exports.Stream = Stream;
|
||||||
class StreamImpl extends _stream.Readable {
|
|
||||||
constructor(channel) {
|
|
||||||
super();
|
|
||||||
this._channel = void 0;
|
|
||||||
this._channel = channel;
|
|
||||||
}
|
|
||||||
async _read() {
|
|
||||||
const result = await this._channel.read({
|
|
||||||
size: 1024 * 1024
|
|
||||||
});
|
|
||||||
if (result.binary.byteLength) this.push(result.binary);else this.push(null);
|
|
||||||
}
|
|
||||||
_destroy(error, callback) {
|
|
||||||
// Stream might be destroyed after the connection was closed.
|
|
||||||
this._channel.close().catch(e => null);
|
|
||||||
super._destroy(error, callback);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
17
tvapp2/node_modules/playwright-core/lib/client/tracing.js
generated
vendored
@@ -70,15 +70,16 @@ class Tracing extends _channelOwner.ChannelOwner {
|
|||||||
}, false);
|
}, false);
|
||||||
}
|
}
|
||||||
async _startCollectingStacks(traceName) {
|
async _startCollectingStacks(traceName) {
|
||||||
|
var _this$_connection$loc;
|
||||||
if (!this._isTracing) {
|
if (!this._isTracing) {
|
||||||
this._isTracing = true;
|
this._isTracing = true;
|
||||||
this._connection.setIsTracing(true);
|
this._connection.setIsTracing(true);
|
||||||
}
|
}
|
||||||
const result = await this._connection.localUtils()._channel.tracingStarted({
|
const result = await ((_this$_connection$loc = this._connection.localUtils()) === null || _this$_connection$loc === void 0 ? void 0 : _this$_connection$loc.tracingStarted({
|
||||||
tracesDir: this._tracesDir,
|
tracesDir: this._tracesDir,
|
||||||
traceName
|
traceName
|
||||||
});
|
}));
|
||||||
this._stacksId = result.stacksId;
|
this._stacksId = result === null || result === void 0 ? void 0 : result.stacksId;
|
||||||
}
|
}
|
||||||
async stopChunk(options = {}) {
|
async stopChunk(options = {}) {
|
||||||
await this._doStopChunk(options.path);
|
await this._doStopChunk(options.path);
|
||||||
@@ -94,17 +95,19 @@ class Tracing extends _channelOwner.ChannelOwner {
|
|||||||
await this._channel.tracingStopChunk({
|
await this._channel.tracingStopChunk({
|
||||||
mode: 'discard'
|
mode: 'discard'
|
||||||
});
|
});
|
||||||
if (this._stacksId) await this._connection.localUtils()._channel.traceDiscarded({
|
if (this._stacksId) await this._connection.localUtils().traceDiscarded({
|
||||||
stacksId: this._stacksId
|
stacksId: this._stacksId
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
const localUtils = this._connection.localUtils();
|
||||||
|
if (!localUtils) throw new Error('Cannot save trace in thin clients');
|
||||||
const isLocal = !this._connection.isRemote();
|
const isLocal = !this._connection.isRemote();
|
||||||
if (isLocal) {
|
if (isLocal) {
|
||||||
const result = await this._channel.tracingStopChunk({
|
const result = await this._channel.tracingStopChunk({
|
||||||
mode: 'entries'
|
mode: 'entries'
|
||||||
});
|
});
|
||||||
await this._connection.localUtils()._channel.zip({
|
await localUtils.zip({
|
||||||
zipFile: filePath,
|
zipFile: filePath,
|
||||||
entries: result.entries,
|
entries: result.entries,
|
||||||
mode: 'write',
|
mode: 'write',
|
||||||
@@ -119,7 +122,7 @@ class Tracing extends _channelOwner.ChannelOwner {
|
|||||||
|
|
||||||
// The artifact may be missing if the browser closed while stopping tracing.
|
// The artifact may be missing if the browser closed while stopping tracing.
|
||||||
if (!result.artifact) {
|
if (!result.artifact) {
|
||||||
if (this._stacksId) await this._connection.localUtils()._channel.traceDiscarded({
|
if (this._stacksId) await localUtils.traceDiscarded({
|
||||||
stacksId: this._stacksId
|
stacksId: this._stacksId
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -129,7 +132,7 @@ class Tracing extends _channelOwner.ChannelOwner {
|
|||||||
const artifact = _artifact.Artifact.from(result.artifact);
|
const artifact = _artifact.Artifact.from(result.artifact);
|
||||||
await artifact.saveAs(filePath);
|
await artifact.saveAs(filePath);
|
||||||
await artifact.delete();
|
await artifact.delete();
|
||||||
await this._connection.localUtils()._channel.zip({
|
await localUtils.zip({
|
||||||
zipFile: filePath,
|
zipFile: filePath,
|
||||||
entries: [],
|
entries: [],
|
||||||
mode: 'append',
|
mode: 'append',
|
||||||
|
|||||||
4
tvapp2/node_modules/playwright-core/lib/client/video.js
generated
vendored
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Video = void 0;
|
exports.Video = void 0;
|
||||||
var _utils = require("../utils");
|
var _manualPromise = require("../utils/isomorphic/manualPromise");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -24,7 +24,7 @@ var _utils = require("../utils");
|
|||||||
class Video {
|
class Video {
|
||||||
constructor(page, connection) {
|
constructor(page, connection) {
|
||||||
this._artifact = null;
|
this._artifact = null;
|
||||||
this._artifactReadyPromise = new _utils.ManualPromise();
|
this._artifactReadyPromise = new _manualPromise.ManualPromise();
|
||||||
this._isRemote = false;
|
this._isRemote = false;
|
||||||
this._isRemote = connection.isRemote();
|
this._isRemote = connection.isRemote();
|
||||||
this._artifact = page._closedOrCrashedScope.safeRace(this._artifactReadyPromise);
|
this._artifact = page._closedOrCrashedScope.safeRace(this._artifactReadyPromise);
|
||||||
|
|||||||
11
tvapp2/node_modules/playwright-core/lib/client/waiter.js
generated
vendored
@@ -4,9 +4,8 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Waiter = void 0;
|
exports.Waiter = void 0;
|
||||||
var _stackTrace = require("../utils/stackTrace");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
var _utils = require("../utils");
|
var _stackTrace = require("../utils/isomorphic/stackTrace");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -33,9 +32,9 @@ class Waiter {
|
|||||||
this._waitId = void 0;
|
this._waitId = void 0;
|
||||||
this._error = void 0;
|
this._error = void 0;
|
||||||
this._savedZone = void 0;
|
this._savedZone = void 0;
|
||||||
this._waitId = (0, _utils.createGuid)();
|
this._waitId = channelOwner._platform.createGuid();
|
||||||
this._channelOwner = channelOwner;
|
this._channelOwner = channelOwner;
|
||||||
this._savedZone = _utils.zones.current().without('apiZone');
|
this._savedZone = channelOwner._platform.zones.current().pop();
|
||||||
this._channelOwner._channel.waitForEventInfo({
|
this._channelOwner._channel.waitForEventInfo({
|
||||||
info: {
|
info: {
|
||||||
waitId: this._waitId,
|
waitId: this._waitId,
|
||||||
@@ -111,8 +110,8 @@ class Waiter {
|
|||||||
phase: 'log',
|
phase: 'log',
|
||||||
message: s
|
message: s
|
||||||
}
|
}
|
||||||
}).catch(() => {});
|
});
|
||||||
}, true);
|
}, true).catch(() => {});
|
||||||
}
|
}
|
||||||
_rejectOn(promise, dispose) {
|
_rejectOn(promise, dispose) {
|
||||||
this._failures.push(promise);
|
this._failures.push(promise);
|
||||||
|
|||||||
8
tvapp2/node_modules/playwright-core/lib/client/worker.js
generated
vendored
@@ -4,11 +4,11 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Worker = void 0;
|
exports.Worker = void 0;
|
||||||
var _events = require("./events");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
var _jsHandle = require("./jsHandle");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
|
var _events = require("./events");
|
||||||
|
var _jsHandle = require("./jsHandle");
|
||||||
|
var _manualPromise = require("../utils/isomorphic/manualPromise");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -35,7 +35,7 @@ class Worker extends _channelOwner.ChannelOwner {
|
|||||||
// Set for web workers.
|
// Set for web workers.
|
||||||
this._context = void 0;
|
this._context = void 0;
|
||||||
// Set for service workers.
|
// Set for service workers.
|
||||||
this._closedScope = new _utils.LongStandingScope();
|
this._closedScope = new _manualPromise.LongStandingScope();
|
||||||
this._channel.on('close', () => {
|
this._channel.on('close', () => {
|
||||||
if (this._page) this._page._workers.delete(this);
|
if (this._page) this._page._workers.delete(this);
|
||||||
if (this._context) this._context._serviceWorkers.delete(this);
|
if (this._context) this._context._serviceWorkers.delete(this);
|
||||||
|
|||||||
21
tvapp2/node_modules/playwright-core/lib/client/writableStream.js
generated
vendored
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.WritableStream = void 0;
|
exports.WritableStream = void 0;
|
||||||
var _stream = require("stream");
|
|
||||||
var _channelOwner = require("./channelOwner");
|
var _channelOwner = require("./channelOwner");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
@@ -30,25 +29,7 @@ class WritableStream extends _channelOwner.ChannelOwner {
|
|||||||
super(parent, type, guid, initializer);
|
super(parent, type, guid, initializer);
|
||||||
}
|
}
|
||||||
stream() {
|
stream() {
|
||||||
return new WritableStreamImpl(this._channel);
|
return this._platform.streamWritable(this._channel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.WritableStream = WritableStream;
|
exports.WritableStream = WritableStream;
|
||||||
class WritableStreamImpl extends _stream.Writable {
|
|
||||||
constructor(channel) {
|
|
||||||
super();
|
|
||||||
this._channel = void 0;
|
|
||||||
this._channel = channel;
|
|
||||||
}
|
|
||||||
async _write(chunk, encoding, callback) {
|
|
||||||
const error = await this._channel.write({
|
|
||||||
binary: typeof chunk === 'string' ? Buffer.from(chunk) : chunk
|
|
||||||
}).catch(e => e);
|
|
||||||
callback(error || null);
|
|
||||||
}
|
|
||||||
async _final(callback) {
|
|
||||||
// Stream might be destroyed after the connection was closed.
|
|
||||||
const error = await this._channel.close().catch(e => e);
|
|
||||||
callback(error || null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
569
tvapp2/node_modules/playwright-core/lib/common/socksProxy.js
generated
vendored
@@ -1,569 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.SocksProxyHandler = exports.SocksProxy = void 0;
|
|
||||||
exports.parsePattern = parsePattern;
|
|
||||||
var _events = _interopRequireDefault(require("events"));
|
|
||||||
var _net = _interopRequireDefault(require("net"));
|
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
|
||||||
var _happyEyeballs = require("../utils/happy-eyeballs");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
// https://tools.ietf.org/html/rfc1928
|
|
||||||
var SocksAuth = /*#__PURE__*/function (SocksAuth) {
|
|
||||||
SocksAuth[SocksAuth["NO_AUTHENTICATION_REQUIRED"] = 0] = "NO_AUTHENTICATION_REQUIRED";
|
|
||||||
SocksAuth[SocksAuth["GSSAPI"] = 1] = "GSSAPI";
|
|
||||||
SocksAuth[SocksAuth["USERNAME_PASSWORD"] = 2] = "USERNAME_PASSWORD";
|
|
||||||
SocksAuth[SocksAuth["NO_ACCEPTABLE_METHODS"] = 255] = "NO_ACCEPTABLE_METHODS";
|
|
||||||
return SocksAuth;
|
|
||||||
}(SocksAuth || {});
|
|
||||||
var SocksAddressType = /*#__PURE__*/function (SocksAddressType) {
|
|
||||||
SocksAddressType[SocksAddressType["IPv4"] = 1] = "IPv4";
|
|
||||||
SocksAddressType[SocksAddressType["FqName"] = 3] = "FqName";
|
|
||||||
SocksAddressType[SocksAddressType["IPv6"] = 4] = "IPv6";
|
|
||||||
return SocksAddressType;
|
|
||||||
}(SocksAddressType || {});
|
|
||||||
var SocksCommand = /*#__PURE__*/function (SocksCommand) {
|
|
||||||
SocksCommand[SocksCommand["CONNECT"] = 1] = "CONNECT";
|
|
||||||
SocksCommand[SocksCommand["BIND"] = 2] = "BIND";
|
|
||||||
SocksCommand[SocksCommand["UDP_ASSOCIATE"] = 3] = "UDP_ASSOCIATE";
|
|
||||||
return SocksCommand;
|
|
||||||
}(SocksCommand || {});
|
|
||||||
var SocksReply = /*#__PURE__*/function (SocksReply) {
|
|
||||||
SocksReply[SocksReply["Succeeded"] = 0] = "Succeeded";
|
|
||||||
SocksReply[SocksReply["GeneralServerFailure"] = 1] = "GeneralServerFailure";
|
|
||||||
SocksReply[SocksReply["NotAllowedByRuleSet"] = 2] = "NotAllowedByRuleSet";
|
|
||||||
SocksReply[SocksReply["NetworkUnreachable"] = 3] = "NetworkUnreachable";
|
|
||||||
SocksReply[SocksReply["HostUnreachable"] = 4] = "HostUnreachable";
|
|
||||||
SocksReply[SocksReply["ConnectionRefused"] = 5] = "ConnectionRefused";
|
|
||||||
SocksReply[SocksReply["TtlExpired"] = 6] = "TtlExpired";
|
|
||||||
SocksReply[SocksReply["CommandNotSupported"] = 7] = "CommandNotSupported";
|
|
||||||
SocksReply[SocksReply["AddressTypeNotSupported"] = 8] = "AddressTypeNotSupported";
|
|
||||||
return SocksReply;
|
|
||||||
}(SocksReply || {});
|
|
||||||
class SocksConnection {
|
|
||||||
constructor(uid, socket, client) {
|
|
||||||
this._buffer = Buffer.from([]);
|
|
||||||
this._offset = 0;
|
|
||||||
this._fence = 0;
|
|
||||||
this._fenceCallback = void 0;
|
|
||||||
this._socket = void 0;
|
|
||||||
this._boundOnData = void 0;
|
|
||||||
this._uid = void 0;
|
|
||||||
this._client = void 0;
|
|
||||||
this._uid = uid;
|
|
||||||
this._socket = socket;
|
|
||||||
this._client = client;
|
|
||||||
this._boundOnData = this._onData.bind(this);
|
|
||||||
socket.on('data', this._boundOnData);
|
|
||||||
socket.on('close', () => this._onClose());
|
|
||||||
socket.on('end', () => this._onClose());
|
|
||||||
socket.on('error', () => this._onClose());
|
|
||||||
this._run().catch(() => this._socket.end());
|
|
||||||
}
|
|
||||||
async _run() {
|
|
||||||
(0, _utils.assert)(await this._authenticate());
|
|
||||||
const {
|
|
||||||
command,
|
|
||||||
host,
|
|
||||||
port
|
|
||||||
} = await this._parseRequest();
|
|
||||||
if (command !== SocksCommand.CONNECT) {
|
|
||||||
this._writeBytes(Buffer.from([0x05, SocksReply.CommandNotSupported, 0x00,
|
|
||||||
// RSV
|
|
||||||
0x01,
|
|
||||||
// IPv4
|
|
||||||
0x00, 0x00, 0x00, 0x00,
|
|
||||||
// Address
|
|
||||||
0x00, 0x00 // Port
|
|
||||||
]));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._socket.off('data', this._boundOnData);
|
|
||||||
this._client.onSocketRequested({
|
|
||||||
uid: this._uid,
|
|
||||||
host,
|
|
||||||
port
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async _authenticate() {
|
|
||||||
// Request:
|
|
||||||
// +----+----------+----------+
|
|
||||||
// |VER | NMETHODS | METHODS |
|
|
||||||
// +----+----------+----------+
|
|
||||||
// | 1 | 1 | 1 to 255 |
|
|
||||||
// +----+----------+----------+
|
|
||||||
|
|
||||||
// Response:
|
|
||||||
// +----+--------+
|
|
||||||
// |VER | METHOD |
|
|
||||||
// +----+--------+
|
|
||||||
// | 1 | 1 |
|
|
||||||
// +----+--------+
|
|
||||||
|
|
||||||
const version = await this._readByte();
|
|
||||||
(0, _utils.assert)(version === 0x05, 'The VER field must be set to x05 for this version of the protocol, was ' + version);
|
|
||||||
const nMethods = await this._readByte();
|
|
||||||
(0, _utils.assert)(nMethods, 'No authentication methods specified');
|
|
||||||
const methods = await this._readBytes(nMethods);
|
|
||||||
for (const method of methods) {
|
|
||||||
if (method === 0) {
|
|
||||||
this._writeBytes(Buffer.from([version, method]));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this._writeBytes(Buffer.from([version, SocksAuth.NO_ACCEPTABLE_METHODS]));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
async _parseRequest() {
|
|
||||||
// Request.
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
// |VER | CMD | RSV | ATYP | DST.ADDR | DST.PORT |
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
// | 1 | 1 | X'00' | 1 | Variable | 2 |
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
|
|
||||||
// Response.
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
// |VER | REP | RSV | ATYP | BND.ADDR | BND.PORT |
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
// | 1 | 1 | X'00' | 1 | Variable | 2 |
|
|
||||||
// +----+-----+-------+------+----------+----------+
|
|
||||||
|
|
||||||
const version = await this._readByte();
|
|
||||||
(0, _utils.assert)(version === 0x05, 'The VER field must be set to x05 for this version of the protocol, was ' + version);
|
|
||||||
const command = await this._readByte();
|
|
||||||
await this._readByte(); // skip reserved.
|
|
||||||
const addressType = await this._readByte();
|
|
||||||
let host = '';
|
|
||||||
switch (addressType) {
|
|
||||||
case SocksAddressType.IPv4:
|
|
||||||
host = (await this._readBytes(4)).join('.');
|
|
||||||
break;
|
|
||||||
case SocksAddressType.FqName:
|
|
||||||
const length = await this._readByte();
|
|
||||||
host = (await this._readBytes(length)).toString();
|
|
||||||
break;
|
|
||||||
case SocksAddressType.IPv6:
|
|
||||||
const bytes = await this._readBytes(16);
|
|
||||||
const tokens = [];
|
|
||||||
for (let i = 0; i < 8; ++i) tokens.push(bytes.readUInt16BE(i * 2).toString(16));
|
|
||||||
host = tokens.join(':');
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
const port = (await this._readBytes(2)).readUInt16BE(0);
|
|
||||||
this._buffer = Buffer.from([]);
|
|
||||||
this._offset = 0;
|
|
||||||
this._fence = 0;
|
|
||||||
return {
|
|
||||||
command,
|
|
||||||
host,
|
|
||||||
port
|
|
||||||
};
|
|
||||||
}
|
|
||||||
async _readByte() {
|
|
||||||
const buffer = await this._readBytes(1);
|
|
||||||
return buffer[0];
|
|
||||||
}
|
|
||||||
async _readBytes(length) {
|
|
||||||
this._fence = this._offset + length;
|
|
||||||
if (!this._buffer || this._buffer.length < this._fence) await new Promise(f => this._fenceCallback = f);
|
|
||||||
this._offset += length;
|
|
||||||
return this._buffer.slice(this._offset - length, this._offset);
|
|
||||||
}
|
|
||||||
_writeBytes(buffer) {
|
|
||||||
if (this._socket.writable) this._socket.write(buffer);
|
|
||||||
}
|
|
||||||
_onClose() {
|
|
||||||
this._client.onSocketClosed({
|
|
||||||
uid: this._uid
|
|
||||||
});
|
|
||||||
}
|
|
||||||
_onData(buffer) {
|
|
||||||
this._buffer = Buffer.concat([this._buffer, buffer]);
|
|
||||||
if (this._fenceCallback && this._buffer.length >= this._fence) {
|
|
||||||
const callback = this._fenceCallback;
|
|
||||||
this._fenceCallback = undefined;
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
socketConnected(host, port) {
|
|
||||||
this._writeBytes(Buffer.from([0x05, SocksReply.Succeeded, 0x00,
|
|
||||||
// RSV
|
|
||||||
...ipToSocksAddress(host),
|
|
||||||
// ATYP, Address
|
|
||||||
port >> 8, port & 0xFF // Port
|
|
||||||
]));
|
|
||||||
this._socket.on('data', data => this._client.onSocketData({
|
|
||||||
uid: this._uid,
|
|
||||||
data
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
socketFailed(errorCode) {
|
|
||||||
const buffer = Buffer.from([0x05, 0, 0x00,
|
|
||||||
// RSV
|
|
||||||
...ipToSocksAddress('0.0.0.0'),
|
|
||||||
// ATYP, Address
|
|
||||||
0, 0 // Port
|
|
||||||
]);
|
|
||||||
switch (errorCode) {
|
|
||||||
case 'ENOENT':
|
|
||||||
case 'ENOTFOUND':
|
|
||||||
case 'ETIMEDOUT':
|
|
||||||
case 'EHOSTUNREACH':
|
|
||||||
buffer[1] = SocksReply.HostUnreachable;
|
|
||||||
break;
|
|
||||||
case 'ENETUNREACH':
|
|
||||||
buffer[1] = SocksReply.NetworkUnreachable;
|
|
||||||
break;
|
|
||||||
case 'ECONNREFUSED':
|
|
||||||
buffer[1] = SocksReply.ConnectionRefused;
|
|
||||||
break;
|
|
||||||
case 'ERULESET':
|
|
||||||
buffer[1] = SocksReply.NotAllowedByRuleSet;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this._writeBytes(buffer);
|
|
||||||
this._socket.end();
|
|
||||||
}
|
|
||||||
sendData(data) {
|
|
||||||
this._socket.write(data);
|
|
||||||
}
|
|
||||||
end() {
|
|
||||||
this._socket.end();
|
|
||||||
}
|
|
||||||
error(error) {
|
|
||||||
this._socket.destroy(new Error(error));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function hexToNumber(hex) {
|
|
||||||
// Note: parseInt has a few issues including ignoring trailing characters and allowing leading 0x.
|
|
||||||
return [...hex].reduce((value, digit) => {
|
|
||||||
const code = digit.charCodeAt(0);
|
|
||||||
if (code >= 48 && code <= 57)
|
|
||||||
// 0..9
|
|
||||||
return value + code;
|
|
||||||
if (code >= 97 && code <= 102)
|
|
||||||
// a..f
|
|
||||||
return value + (code - 97) + 10;
|
|
||||||
if (code >= 65 && code <= 70)
|
|
||||||
// A..F
|
|
||||||
return value + (code - 65) + 10;
|
|
||||||
throw new Error('Invalid IPv6 token ' + hex);
|
|
||||||
}, 0);
|
|
||||||
}
|
|
||||||
function ipToSocksAddress(address) {
|
|
||||||
if (_net.default.isIPv4(address)) {
|
|
||||||
return [0x01,
|
|
||||||
// IPv4
|
|
||||||
...address.split('.', 4).map(t => +t & 0xFF) // Address
|
|
||||||
];
|
|
||||||
}
|
|
||||||
if (_net.default.isIPv6(address)) {
|
|
||||||
const result = [0x04]; // IPv6
|
|
||||||
const tokens = address.split(':', 8);
|
|
||||||
while (tokens.length < 8) tokens.unshift('');
|
|
||||||
for (const token of tokens) {
|
|
||||||
const value = hexToNumber(token);
|
|
||||||
result.push(value >> 8 & 0xFF, value & 0xFF); // Big-endian
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
throw new Error('Only IPv4 and IPv6 addresses are supported');
|
|
||||||
}
|
|
||||||
function starMatchToRegex(pattern) {
|
|
||||||
const source = pattern.split('*').map(s => {
|
|
||||||
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
|
|
||||||
return s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
||||||
}).join('.*');
|
|
||||||
return new RegExp('^' + source + '$');
|
|
||||||
}
|
|
||||||
|
|
||||||
// This follows "Proxy bypass rules" syntax without implicit and negative rules.
|
|
||||||
// https://source.chromium.org/chromium/chromium/src/+/main:net/docs/proxy.md;l=331
|
|
||||||
function parsePattern(pattern) {
|
|
||||||
if (!pattern) return () => false;
|
|
||||||
const matchers = pattern.split(',').map(token => {
|
|
||||||
const match = token.match(/^(.*?)(?::(\d+))?$/);
|
|
||||||
if (!match) throw new Error(`Unsupported token "${token}" in pattern "${pattern}"`);
|
|
||||||
const tokenPort = match[2] ? +match[2] : undefined;
|
|
||||||
const portMatches = port => tokenPort === undefined || tokenPort === port;
|
|
||||||
let tokenHost = match[1];
|
|
||||||
if (tokenHost === '<loopback>') {
|
|
||||||
return (host, port) => {
|
|
||||||
if (!portMatches(port)) return false;
|
|
||||||
return host === 'localhost' || host.endsWith('.localhost') || host === '127.0.0.1' || host === '[::1]';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (tokenHost === '*') return (host, port) => portMatches(port);
|
|
||||||
if (_net.default.isIPv4(tokenHost) || _net.default.isIPv6(tokenHost)) return (host, port) => host === tokenHost && portMatches(port);
|
|
||||||
if (tokenHost[0] === '.') tokenHost = '*' + tokenHost;
|
|
||||||
const tokenRegex = starMatchToRegex(tokenHost);
|
|
||||||
return (host, port) => {
|
|
||||||
if (!portMatches(port)) return false;
|
|
||||||
if (_net.default.isIPv4(host) || _net.default.isIPv6(host)) return false;
|
|
||||||
return !!host.match(tokenRegex);
|
|
||||||
};
|
|
||||||
});
|
|
||||||
return (host, port) => matchers.some(matcher => matcher(host, port));
|
|
||||||
}
|
|
||||||
class SocksProxy extends _events.default {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
this._server = void 0;
|
|
||||||
this._connections = new Map();
|
|
||||||
this._sockets = new Set();
|
|
||||||
this._closed = false;
|
|
||||||
this._port = void 0;
|
|
||||||
this._patternMatcher = () => false;
|
|
||||||
this._directSockets = new Map();
|
|
||||||
this._server = new _net.default.Server(socket => {
|
|
||||||
const uid = (0, _utils.createGuid)();
|
|
||||||
const connection = new SocksConnection(uid, socket, this);
|
|
||||||
this._connections.set(uid, connection);
|
|
||||||
});
|
|
||||||
this._server.on('connection', socket => {
|
|
||||||
if (this._closed) {
|
|
||||||
socket.destroy();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._sockets.add(socket);
|
|
||||||
socket.once('close', () => this._sockets.delete(socket));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
setPattern(pattern) {
|
|
||||||
try {
|
|
||||||
this._patternMatcher = parsePattern(pattern);
|
|
||||||
} catch (e) {
|
|
||||||
this._patternMatcher = () => false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
async _handleDirect(request) {
|
|
||||||
try {
|
|
||||||
var _this$_connections$ge4;
|
|
||||||
const socket = await (0, _happyEyeballs.createSocket)(request.host, request.port);
|
|
||||||
socket.on('data', data => {
|
|
||||||
var _this$_connections$ge;
|
|
||||||
return (_this$_connections$ge = this._connections.get(request.uid)) === null || _this$_connections$ge === void 0 ? void 0 : _this$_connections$ge.sendData(data);
|
|
||||||
});
|
|
||||||
socket.on('error', error => {
|
|
||||||
var _this$_connections$ge2;
|
|
||||||
(_this$_connections$ge2 = this._connections.get(request.uid)) === null || _this$_connections$ge2 === void 0 || _this$_connections$ge2.error(error.message);
|
|
||||||
this._directSockets.delete(request.uid);
|
|
||||||
});
|
|
||||||
socket.on('end', () => {
|
|
||||||
var _this$_connections$ge3;
|
|
||||||
(_this$_connections$ge3 = this._connections.get(request.uid)) === null || _this$_connections$ge3 === void 0 || _this$_connections$ge3.end();
|
|
||||||
this._directSockets.delete(request.uid);
|
|
||||||
});
|
|
||||||
const localAddress = socket.localAddress;
|
|
||||||
const localPort = socket.localPort;
|
|
||||||
this._directSockets.set(request.uid, socket);
|
|
||||||
(_this$_connections$ge4 = this._connections.get(request.uid)) === null || _this$_connections$ge4 === void 0 || _this$_connections$ge4.socketConnected(localAddress, localPort);
|
|
||||||
} catch (error) {
|
|
||||||
var _this$_connections$ge5;
|
|
||||||
(_this$_connections$ge5 = this._connections.get(request.uid)) === null || _this$_connections$ge5 === void 0 || _this$_connections$ge5.socketFailed(error.code);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
port() {
|
|
||||||
return this._port;
|
|
||||||
}
|
|
||||||
async listen(port, hostname) {
|
|
||||||
return new Promise(f => {
|
|
||||||
this._server.listen(port, hostname, () => {
|
|
||||||
const port = this._server.address().port;
|
|
||||||
this._port = port;
|
|
||||||
f(port);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async close() {
|
|
||||||
if (this._closed) return;
|
|
||||||
this._closed = true;
|
|
||||||
for (const socket of this._sockets) socket.destroy();
|
|
||||||
this._sockets.clear();
|
|
||||||
await new Promise(f => this._server.close(f));
|
|
||||||
}
|
|
||||||
onSocketRequested(payload) {
|
|
||||||
if (!this._patternMatcher(payload.host, payload.port)) {
|
|
||||||
this._handleDirect(payload);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.emit(SocksProxy.Events.SocksRequested, payload);
|
|
||||||
}
|
|
||||||
onSocketData(payload) {
|
|
||||||
const direct = this._directSockets.get(payload.uid);
|
|
||||||
if (direct) {
|
|
||||||
direct.write(payload.data);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.emit(SocksProxy.Events.SocksData, payload);
|
|
||||||
}
|
|
||||||
onSocketClosed(payload) {
|
|
||||||
const direct = this._directSockets.get(payload.uid);
|
|
||||||
if (direct) {
|
|
||||||
direct.destroy();
|
|
||||||
this._directSockets.delete(payload.uid);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.emit(SocksProxy.Events.SocksClosed, payload);
|
|
||||||
}
|
|
||||||
socketConnected({
|
|
||||||
uid,
|
|
||||||
host,
|
|
||||||
port
|
|
||||||
}) {
|
|
||||||
var _this$_connections$ge6;
|
|
||||||
(_this$_connections$ge6 = this._connections.get(uid)) === null || _this$_connections$ge6 === void 0 || _this$_connections$ge6.socketConnected(host, port);
|
|
||||||
}
|
|
||||||
socketFailed({
|
|
||||||
uid,
|
|
||||||
errorCode
|
|
||||||
}) {
|
|
||||||
var _this$_connections$ge7;
|
|
||||||
(_this$_connections$ge7 = this._connections.get(uid)) === null || _this$_connections$ge7 === void 0 || _this$_connections$ge7.socketFailed(errorCode);
|
|
||||||
}
|
|
||||||
sendSocketData({
|
|
||||||
uid,
|
|
||||||
data
|
|
||||||
}) {
|
|
||||||
var _this$_connections$ge8;
|
|
||||||
(_this$_connections$ge8 = this._connections.get(uid)) === null || _this$_connections$ge8 === void 0 || _this$_connections$ge8.sendData(data);
|
|
||||||
}
|
|
||||||
sendSocketEnd({
|
|
||||||
uid
|
|
||||||
}) {
|
|
||||||
var _this$_connections$ge9;
|
|
||||||
(_this$_connections$ge9 = this._connections.get(uid)) === null || _this$_connections$ge9 === void 0 || _this$_connections$ge9.end();
|
|
||||||
}
|
|
||||||
sendSocketError({
|
|
||||||
uid,
|
|
||||||
error
|
|
||||||
}) {
|
|
||||||
var _this$_connections$ge10;
|
|
||||||
(_this$_connections$ge10 = this._connections.get(uid)) === null || _this$_connections$ge10 === void 0 || _this$_connections$ge10.error(error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.SocksProxy = SocksProxy;
|
|
||||||
SocksProxy.Events = {
|
|
||||||
SocksRequested: 'socksRequested',
|
|
||||||
SocksData: 'socksData',
|
|
||||||
SocksClosed: 'socksClosed'
|
|
||||||
};
|
|
||||||
class SocksProxyHandler extends _events.default {
|
|
||||||
constructor(pattern, redirectPortForTest) {
|
|
||||||
super();
|
|
||||||
this._sockets = new Map();
|
|
||||||
this._patternMatcher = () => false;
|
|
||||||
this._redirectPortForTest = void 0;
|
|
||||||
this._patternMatcher = parsePattern(pattern);
|
|
||||||
this._redirectPortForTest = redirectPortForTest;
|
|
||||||
}
|
|
||||||
cleanup() {
|
|
||||||
for (const uid of this._sockets.keys()) this.socketClosed({
|
|
||||||
uid
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async socketRequested({
|
|
||||||
uid,
|
|
||||||
host,
|
|
||||||
port
|
|
||||||
}) {
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] => request ${host}:${port}`);
|
|
||||||
if (!this._patternMatcher(host, port)) {
|
|
||||||
const payload = {
|
|
||||||
uid,
|
|
||||||
errorCode: 'ERULESET'
|
|
||||||
};
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= pattern error ${payload.errorCode}`);
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksFailed, payload);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (host === 'local.playwright') host = 'localhost';
|
|
||||||
try {
|
|
||||||
if (this._redirectPortForTest) port = this._redirectPortForTest;
|
|
||||||
const socket = await (0, _happyEyeballs.createSocket)(host, port);
|
|
||||||
socket.on('data', data => {
|
|
||||||
const payload = {
|
|
||||||
uid,
|
|
||||||
data
|
|
||||||
};
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksData, payload);
|
|
||||||
});
|
|
||||||
socket.on('error', error => {
|
|
||||||
const payload = {
|
|
||||||
uid,
|
|
||||||
error: error.message
|
|
||||||
};
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= network socket error ${payload.error}`);
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksError, payload);
|
|
||||||
this._sockets.delete(uid);
|
|
||||||
});
|
|
||||||
socket.on('end', () => {
|
|
||||||
const payload = {
|
|
||||||
uid
|
|
||||||
};
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= network socket closed`);
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksEnd, payload);
|
|
||||||
this._sockets.delete(uid);
|
|
||||||
});
|
|
||||||
const localAddress = socket.localAddress;
|
|
||||||
const localPort = socket.localPort;
|
|
||||||
this._sockets.set(uid, socket);
|
|
||||||
const payload = {
|
|
||||||
uid,
|
|
||||||
host: localAddress,
|
|
||||||
port: localPort
|
|
||||||
};
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= connected to network ${payload.host}:${payload.port}`);
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksConnected, payload);
|
|
||||||
} catch (error) {
|
|
||||||
const payload = {
|
|
||||||
uid,
|
|
||||||
errorCode: error.code
|
|
||||||
};
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= connect error ${payload.errorCode}`);
|
|
||||||
this.emit(SocksProxyHandler.Events.SocksFailed, payload);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
sendSocketData({
|
|
||||||
uid,
|
|
||||||
data
|
|
||||||
}) {
|
|
||||||
var _this$_sockets$get;
|
|
||||||
(_this$_sockets$get = this._sockets.get(uid)) === null || _this$_sockets$get === void 0 || _this$_sockets$get.write(data);
|
|
||||||
}
|
|
||||||
socketClosed({
|
|
||||||
uid
|
|
||||||
}) {
|
|
||||||
var _this$_sockets$get2;
|
|
||||||
_debugLogger.debugLogger.log('socks', `[${uid}] <= browser socket closed`);
|
|
||||||
(_this$_sockets$get2 = this._sockets.get(uid)) === null || _this$_sockets$get2 === void 0 || _this$_sockets$get2.destroy();
|
|
||||||
this._sockets.delete(uid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.SocksProxyHandler = SocksProxyHandler;
|
|
||||||
SocksProxyHandler.Events = {
|
|
||||||
SocksConnected: 'socksConnected',
|
|
||||||
SocksData: 'socksData',
|
|
||||||
SocksError: 'socksError',
|
|
||||||
SocksFailed: 'socksFailed',
|
|
||||||
SocksEnd: 'socksEnd'
|
|
||||||
};
|
|
||||||
73
tvapp2/node_modules/playwright-core/lib/common/timeoutSettings.js
generated
vendored
@@ -1,73 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.TimeoutSettings = exports.DEFAULT_TIMEOUT = exports.DEFAULT_LAUNCH_TIMEOUT = void 0;
|
|
||||||
var _utils = require("../utils");
|
|
||||||
/**
|
|
||||||
* Copyright 2019 Google Inc. All rights reserved.
|
|
||||||
* Modifications copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
const DEFAULT_TIMEOUT = exports.DEFAULT_TIMEOUT = 30000;
|
|
||||||
const DEFAULT_LAUNCH_TIMEOUT = exports.DEFAULT_LAUNCH_TIMEOUT = 3 * 60 * 1000; // 3 minutes
|
|
||||||
|
|
||||||
class TimeoutSettings {
|
|
||||||
constructor(parent) {
|
|
||||||
this._parent = void 0;
|
|
||||||
this._defaultTimeout = void 0;
|
|
||||||
this._defaultNavigationTimeout = void 0;
|
|
||||||
this._parent = parent;
|
|
||||||
}
|
|
||||||
setDefaultTimeout(timeout) {
|
|
||||||
this._defaultTimeout = timeout;
|
|
||||||
}
|
|
||||||
setDefaultNavigationTimeout(timeout) {
|
|
||||||
this._defaultNavigationTimeout = timeout;
|
|
||||||
}
|
|
||||||
defaultNavigationTimeout() {
|
|
||||||
return this._defaultNavigationTimeout;
|
|
||||||
}
|
|
||||||
defaultTimeout() {
|
|
||||||
return this._defaultTimeout;
|
|
||||||
}
|
|
||||||
navigationTimeout(options) {
|
|
||||||
if (typeof options.timeout === 'number') return options.timeout;
|
|
||||||
if (this._defaultNavigationTimeout !== undefined) return this._defaultNavigationTimeout;
|
|
||||||
if ((0, _utils.debugMode)()) return 0;
|
|
||||||
if (this._defaultTimeout !== undefined) return this._defaultTimeout;
|
|
||||||
if (this._parent) return this._parent.navigationTimeout(options);
|
|
||||||
return DEFAULT_TIMEOUT;
|
|
||||||
}
|
|
||||||
timeout(options) {
|
|
||||||
if (typeof options.timeout === 'number') return options.timeout;
|
|
||||||
if ((0, _utils.debugMode)()) return 0;
|
|
||||||
if (this._defaultTimeout !== undefined) return this._defaultTimeout;
|
|
||||||
if (this._parent) return this._parent.timeout(options);
|
|
||||||
return DEFAULT_TIMEOUT;
|
|
||||||
}
|
|
||||||
static timeout(options) {
|
|
||||||
if (typeof options.timeout === 'number') return options.timeout;
|
|
||||||
if ((0, _utils.debugMode)()) return 0;
|
|
||||||
return DEFAULT_TIMEOUT;
|
|
||||||
}
|
|
||||||
static launchTimeout(options) {
|
|
||||||
if (typeof options.timeout === 'number') return options.timeout;
|
|
||||||
if ((0, _utils.debugMode)()) return 0;
|
|
||||||
return DEFAULT_LAUNCH_TIMEOUT;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.TimeoutSettings = TimeoutSettings;
|
|
||||||
5
tvapp2/node_modules/playwright-core/lib/common/types.js
generated
vendored
@@ -1,5 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
2
tvapp2/node_modules/playwright-core/lib/generated/consoleApiSource.js
generated
vendored
2
tvapp2/node_modules/playwright-core/lib/generated/injectedScriptSource.js
generated
vendored
98
tvapp2/node_modules/playwright-core/lib/image_tools/colorUtils.js
generated
vendored
@@ -1,98 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.blendWithWhite = blendWithWhite;
|
|
||||||
exports.colorDeltaE94 = colorDeltaE94;
|
|
||||||
exports.rgb2gray = rgb2gray;
|
|
||||||
exports.srgb2xyz = srgb2xyz;
|
|
||||||
exports.xyz2lab = xyz2lab;
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the 'License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
function blendWithWhite(c, a) {
|
|
||||||
return 255 + (c - 255) * a;
|
|
||||||
}
|
|
||||||
function rgb2gray(r, g, b) {
|
|
||||||
// NOTE: this is the exact integer formula from SSIM.js.
|
|
||||||
// See https://github.com/obartra/ssim/blob/ca8e3c6a6ff5f4f2e232239e0c3d91806f3c97d5/src/matlab/rgb2gray.ts#L56
|
|
||||||
return 77 * r + 150 * g + 29 * b + 128 >> 8;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Perceived color difference defined by CIE94.
|
|
||||||
// See https://en.wikipedia.org/wiki/Color_difference#CIE94
|
|
||||||
//
|
|
||||||
// The result of 1.0 is a "just-noticeable difference".
|
|
||||||
//
|
|
||||||
// Other results interpretation (taken from http://zschuessler.github.io/DeltaE/learn/):
|
|
||||||
// < 1.0 Not perceptible by human eyes.
|
|
||||||
// 1-2 Perceptible through close observation.
|
|
||||||
// 2-10 Perceptible at a glance.
|
|
||||||
// 11-49 Colors are more similar than opposite
|
|
||||||
// 100 Colors are exact opposite
|
|
||||||
function colorDeltaE94(rgb1, rgb2) {
|
|
||||||
const [l1, a1, b1] = xyz2lab(srgb2xyz(rgb1));
|
|
||||||
const [l2, a2, b2] = xyz2lab(srgb2xyz(rgb2));
|
|
||||||
const deltaL = l1 - l2;
|
|
||||||
const deltaA = a1 - a2;
|
|
||||||
const deltaB = b1 - b2;
|
|
||||||
const c1 = Math.sqrt(a1 ** 2 + b1 ** 2);
|
|
||||||
const c2 = Math.sqrt(a2 ** 2 + b2 ** 2);
|
|
||||||
const deltaC = c1 - c2;
|
|
||||||
let deltaH = deltaA ** 2 + deltaB ** 2 - deltaC ** 2;
|
|
||||||
deltaH = deltaH < 0 ? 0 : Math.sqrt(deltaH);
|
|
||||||
// The k1, k2, kL, kC, kH values for "graphic arts" applications.
|
|
||||||
// See https://en.wikipedia.org/wiki/Color_difference#CIE94
|
|
||||||
const k1 = 0.045;
|
|
||||||
const k2 = 0.015;
|
|
||||||
const kL = 1;
|
|
||||||
const kC = 1;
|
|
||||||
const kH = 1;
|
|
||||||
const sC = 1.0 + k1 * c1;
|
|
||||||
const sH = 1.0 + k2 * c1;
|
|
||||||
const sL = 1;
|
|
||||||
return Math.sqrt((deltaL / sL / kL) ** 2 + (deltaC / sC / kC) ** 2 + (deltaH / sH / kH) ** 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
// sRGB -> 1-normalized XYZ (i.e. Y ∈ [0, 1]) with D65 illuminant
|
|
||||||
// See https://en.wikipedia.org/wiki/SRGB#From_sRGB_to_CIE_XYZ
|
|
||||||
function srgb2xyz(rgb) {
|
|
||||||
let r = rgb[0] / 255;
|
|
||||||
let g = rgb[1] / 255;
|
|
||||||
let b = rgb[2] / 255;
|
|
||||||
r = r > 0.04045 ? Math.pow((r + 0.055) / 1.055, 2.4) : r / 12.92;
|
|
||||||
g = g > 0.04045 ? Math.pow((g + 0.055) / 1.055, 2.4) : g / 12.92;
|
|
||||||
b = b > 0.04045 ? Math.pow((b + 0.055) / 1.055, 2.4) : b / 12.92;
|
|
||||||
return [r * 0.4124 + g * 0.3576 + b * 0.1805, r * 0.2126 + g * 0.7152 + b * 0.0722, r * 0.0193 + g * 0.1192 + b * 0.9505];
|
|
||||||
}
|
|
||||||
const sigma_pow2 = 6 * 6 / 29 / 29;
|
|
||||||
const sigma_pow3 = 6 * 6 * 6 / 29 / 29 / 29;
|
|
||||||
|
|
||||||
// 1-normalized CIE XYZ with D65 to L*a*b*
|
|
||||||
// See https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB
|
|
||||||
function xyz2lab(xyz) {
|
|
||||||
const x = xyz[0] / 0.950489;
|
|
||||||
const y = xyz[1];
|
|
||||||
const z = xyz[2] / 1.088840;
|
|
||||||
const fx = x > sigma_pow3 ? x ** (1 / 3) : x / 3 / sigma_pow2 + 4 / 29;
|
|
||||||
const fy = y > sigma_pow3 ? y ** (1 / 3) : y / 3 / sigma_pow2 + 4 / 29;
|
|
||||||
const fz = z > sigma_pow3 ? z ** (1 / 3) : z / 3 / sigma_pow2 + 4 / 29;
|
|
||||||
const l = 116 * fy - 16;
|
|
||||||
const a = 500 * (fx - fy);
|
|
||||||
const b = 200 * (fy - fz);
|
|
||||||
return [l, a, b];
|
|
||||||
}
|
|
||||||
108
tvapp2/node_modules/playwright-core/lib/image_tools/compare.js
generated
vendored
@@ -1,108 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.compare = compare;
|
|
||||||
var _colorUtils = require("./colorUtils");
|
|
||||||
var _imageChannel = require("./imageChannel");
|
|
||||||
var _stats = require("./stats");
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the 'License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
const SSIM_WINDOW_RADIUS = 15;
|
|
||||||
const VARIANCE_WINDOW_RADIUS = 1;
|
|
||||||
function drawPixel(width, data, x, y, r, g, b) {
|
|
||||||
const idx = (y * width + x) * 4;
|
|
||||||
data[idx + 0] = r;
|
|
||||||
data[idx + 1] = g;
|
|
||||||
data[idx + 2] = b;
|
|
||||||
data[idx + 3] = 255;
|
|
||||||
}
|
|
||||||
function compare(actual, expected, diff, width, height, options = {}) {
|
|
||||||
const {
|
|
||||||
maxColorDeltaE94 = 1.0
|
|
||||||
} = options;
|
|
||||||
const paddingSize = Math.max(VARIANCE_WINDOW_RADIUS, SSIM_WINDOW_RADIUS);
|
|
||||||
const paddingColorEven = [255, 0, 255];
|
|
||||||
const paddingColorOdd = [0, 255, 0];
|
|
||||||
const [r1, g1, b1] = _imageChannel.ImageChannel.intoRGB(width, height, expected, {
|
|
||||||
paddingSize,
|
|
||||||
paddingColorEven,
|
|
||||||
paddingColorOdd
|
|
||||||
});
|
|
||||||
const [r2, g2, b2] = _imageChannel.ImageChannel.intoRGB(width, height, actual, {
|
|
||||||
paddingSize,
|
|
||||||
paddingColorEven,
|
|
||||||
paddingColorOdd
|
|
||||||
});
|
|
||||||
const noop = (x, y) => {};
|
|
||||||
const drawRedPixel = diff ? (x, y) => drawPixel(width, diff, x - paddingSize, y - paddingSize, 255, 0, 0) : noop;
|
|
||||||
const drawYellowPixel = diff ? (x, y) => drawPixel(width, diff, x - paddingSize, y - paddingSize, 255, 255, 0) : noop;
|
|
||||||
const drawGrayPixel = diff ? (x, y) => {
|
|
||||||
const gray = (0, _colorUtils.rgb2gray)(r1.get(x, y), g1.get(x, y), b1.get(x, y));
|
|
||||||
const value = (0, _colorUtils.blendWithWhite)(gray, 0.1);
|
|
||||||
drawPixel(width, diff, x - paddingSize, y - paddingSize, value, value, value);
|
|
||||||
} : noop;
|
|
||||||
let fastR, fastG, fastB;
|
|
||||||
let diffCount = 0;
|
|
||||||
for (let y = paddingSize; y < r1.height - paddingSize; ++y) {
|
|
||||||
for (let x = paddingSize; x < r1.width - paddingSize; ++x) {
|
|
||||||
// Fast-path: equal pixels.
|
|
||||||
if (r1.get(x, y) === r2.get(x, y) && g1.get(x, y) === g2.get(x, y) && b1.get(x, y) === b2.get(x, y)) {
|
|
||||||
drawGrayPixel(x, y);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compare pixel colors using the dE94 color difference formulae.
|
|
||||||
// The dE94 is normalized so that the value of 1.0 is the "just-noticeable-difference".
|
|
||||||
// Color difference below 1.0 is not noticeable to a human eye, so we can disregard it.
|
|
||||||
// See https://en.wikipedia.org/wiki/Color_difference
|
|
||||||
const delta = (0, _colorUtils.colorDeltaE94)([r1.get(x, y), g1.get(x, y), b1.get(x, y)], [r2.get(x, y), g2.get(x, y), b2.get(x, y)]);
|
|
||||||
if (delta <= maxColorDeltaE94) {
|
|
||||||
drawGrayPixel(x, y);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!fastR || !fastG || !fastB) {
|
|
||||||
fastR = new _stats.FastStats(r1, r2);
|
|
||||||
fastG = new _stats.FastStats(g1, g2);
|
|
||||||
fastB = new _stats.FastStats(b1, b2);
|
|
||||||
}
|
|
||||||
const [varX1, varY1] = r1.boundXY(x - VARIANCE_WINDOW_RADIUS, y - VARIANCE_WINDOW_RADIUS);
|
|
||||||
const [varX2, varY2] = r1.boundXY(x + VARIANCE_WINDOW_RADIUS, y + VARIANCE_WINDOW_RADIUS);
|
|
||||||
const var1 = fastR.varianceC1(varX1, varY1, varX2, varY2) + fastG.varianceC1(varX1, varY1, varX2, varY2) + fastB.varianceC1(varX1, varY1, varX2, varY2);
|
|
||||||
const var2 = fastR.varianceC2(varX1, varY1, varX2, varY2) + fastG.varianceC2(varX1, varY1, varX2, varY2) + fastB.varianceC2(varX1, varY1, varX2, varY2);
|
|
||||||
// if this pixel is a part of a flood fill of a 3x3 square of either of the images, then it cannot be
|
|
||||||
// anti-aliasing pixel so it must be a pixel difference.
|
|
||||||
if (var1 === 0 || var2 === 0) {
|
|
||||||
drawRedPixel(x, y);
|
|
||||||
++diffCount;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const [ssimX1, ssimY1] = r1.boundXY(x - SSIM_WINDOW_RADIUS, y - SSIM_WINDOW_RADIUS);
|
|
||||||
const [ssimX2, ssimY2] = r1.boundXY(x + SSIM_WINDOW_RADIUS, y + SSIM_WINDOW_RADIUS);
|
|
||||||
const ssimRGB = ((0, _stats.ssim)(fastR, ssimX1, ssimY1, ssimX2, ssimY2) + (0, _stats.ssim)(fastG, ssimX1, ssimY1, ssimX2, ssimY2) + (0, _stats.ssim)(fastB, ssimX1, ssimY1, ssimX2, ssimY2)) / 3.0;
|
|
||||||
const isAntialiased = ssimRGB >= 0.99;
|
|
||||||
if (isAntialiased) {
|
|
||||||
drawYellowPixel(x, y);
|
|
||||||
} else {
|
|
||||||
drawRedPixel(x, y);
|
|
||||||
++diffCount;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return diffCount;
|
|
||||||
}
|
|
||||||
70
tvapp2/node_modules/playwright-core/lib/image_tools/imageChannel.js
generated
vendored
@@ -1,70 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.ImageChannel = void 0;
|
|
||||||
var _colorUtils = require("./colorUtils");
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the 'License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
class ImageChannel {
|
|
||||||
static intoRGB(width, height, data, options = {}) {
|
|
||||||
const {
|
|
||||||
paddingSize = 0,
|
|
||||||
paddingColorOdd = [255, 0, 255],
|
|
||||||
paddingColorEven = [0, 255, 0]
|
|
||||||
} = options;
|
|
||||||
const newWidth = width + 2 * paddingSize;
|
|
||||||
const newHeight = height + 2 * paddingSize;
|
|
||||||
const r = new Uint8Array(newWidth * newHeight);
|
|
||||||
const g = new Uint8Array(newWidth * newHeight);
|
|
||||||
const b = new Uint8Array(newWidth * newHeight);
|
|
||||||
for (let y = 0; y < newHeight; ++y) {
|
|
||||||
for (let x = 0; x < newWidth; ++x) {
|
|
||||||
const index = y * newWidth + x;
|
|
||||||
if (y >= paddingSize && y < newHeight - paddingSize && x >= paddingSize && x < newWidth - paddingSize) {
|
|
||||||
const offset = ((y - paddingSize) * width + (x - paddingSize)) * 4;
|
|
||||||
const alpha = data[offset + 3] === 255 ? 1 : data[offset + 3] / 255;
|
|
||||||
r[index] = (0, _colorUtils.blendWithWhite)(data[offset], alpha);
|
|
||||||
g[index] = (0, _colorUtils.blendWithWhite)(data[offset + 1], alpha);
|
|
||||||
b[index] = (0, _colorUtils.blendWithWhite)(data[offset + 2], alpha);
|
|
||||||
} else {
|
|
||||||
const color = (y + x) % 2 === 0 ? paddingColorEven : paddingColorOdd;
|
|
||||||
r[index] = color[0];
|
|
||||||
g[index] = color[1];
|
|
||||||
b[index] = color[2];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return [new ImageChannel(newWidth, newHeight, r), new ImageChannel(newWidth, newHeight, g), new ImageChannel(newWidth, newHeight, b)];
|
|
||||||
}
|
|
||||||
constructor(width, height, data) {
|
|
||||||
this.data = void 0;
|
|
||||||
this.width = void 0;
|
|
||||||
this.height = void 0;
|
|
||||||
this.data = data;
|
|
||||||
this.width = width;
|
|
||||||
this.height = height;
|
|
||||||
}
|
|
||||||
get(x, y) {
|
|
||||||
return this.data[y * this.width + x];
|
|
||||||
}
|
|
||||||
boundXY(x, y) {
|
|
||||||
return [Math.min(Math.max(x, 0), this.width - 1), Math.min(Math.max(y, 0), this.height - 1)];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.ImageChannel = ImageChannel;
|
|
||||||
102
tvapp2/node_modules/playwright-core/lib/image_tools/stats.js
generated
vendored
@@ -1,102 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.FastStats = void 0;
|
|
||||||
exports.ssim = ssim;
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the 'License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Image channel has a 8-bit depth.
|
|
||||||
const DYNAMIC_RANGE = 2 ** 8 - 1;
|
|
||||||
function ssim(stats, x1, y1, x2, y2) {
|
|
||||||
const mean1 = stats.meanC1(x1, y1, x2, y2);
|
|
||||||
const mean2 = stats.meanC2(x1, y1, x2, y2);
|
|
||||||
const var1 = stats.varianceC1(x1, y1, x2, y2);
|
|
||||||
const var2 = stats.varianceC2(x1, y1, x2, y2);
|
|
||||||
const cov = stats.covariance(x1, y1, x2, y2);
|
|
||||||
const c1 = (0.01 * DYNAMIC_RANGE) ** 2;
|
|
||||||
const c2 = (0.03 * DYNAMIC_RANGE) ** 2;
|
|
||||||
return (2 * mean1 * mean2 + c1) * (2 * cov + c2) / (mean1 ** 2 + mean2 ** 2 + c1) / (var1 + var2 + c2);
|
|
||||||
}
|
|
||||||
class FastStats {
|
|
||||||
constructor(c1, c2) {
|
|
||||||
this.c1 = void 0;
|
|
||||||
this.c2 = void 0;
|
|
||||||
this._partialSumC1 = void 0;
|
|
||||||
this._partialSumC2 = void 0;
|
|
||||||
this._partialSumMult = void 0;
|
|
||||||
this._partialSumSq1 = void 0;
|
|
||||||
this._partialSumSq2 = void 0;
|
|
||||||
this.c1 = c1;
|
|
||||||
this.c2 = c2;
|
|
||||||
const {
|
|
||||||
width,
|
|
||||||
height
|
|
||||||
} = c1;
|
|
||||||
this._partialSumC1 = new Array(width * height);
|
|
||||||
this._partialSumC2 = new Array(width * height);
|
|
||||||
this._partialSumSq1 = new Array(width * height);
|
|
||||||
this._partialSumSq2 = new Array(width * height);
|
|
||||||
this._partialSumMult = new Array(width * height);
|
|
||||||
const recalc = (mx, idx, initial, x, y) => {
|
|
||||||
mx[idx] = initial;
|
|
||||||
if (y > 0) mx[idx] += mx[(y - 1) * width + x];
|
|
||||||
if (x > 0) mx[idx] += mx[y * width + x - 1];
|
|
||||||
if (x > 0 && y > 0) mx[idx] -= mx[(y - 1) * width + x - 1];
|
|
||||||
};
|
|
||||||
for (let y = 0; y < height; ++y) {
|
|
||||||
for (let x = 0; x < width; ++x) {
|
|
||||||
const idx = y * width + x;
|
|
||||||
recalc(this._partialSumC1, idx, this.c1.data[idx], x, y);
|
|
||||||
recalc(this._partialSumC2, idx, this.c2.data[idx], x, y);
|
|
||||||
recalc(this._partialSumSq1, idx, this.c1.data[idx] * this.c1.data[idx], x, y);
|
|
||||||
recalc(this._partialSumSq2, idx, this.c2.data[idx] * this.c2.data[idx], x, y);
|
|
||||||
recalc(this._partialSumMult, idx, this.c1.data[idx] * this.c2.data[idx], x, y);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_sum(partialSum, x1, y1, x2, y2) {
|
|
||||||
const width = this.c1.width;
|
|
||||||
let result = partialSum[y2 * width + x2];
|
|
||||||
if (y1 > 0) result -= partialSum[(y1 - 1) * width + x2];
|
|
||||||
if (x1 > 0) result -= partialSum[y2 * width + x1 - 1];
|
|
||||||
if (x1 > 0 && y1 > 0) result += partialSum[(y1 - 1) * width + x1 - 1];
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
meanC1(x1, y1, x2, y2) {
|
|
||||||
const N = (y2 - y1 + 1) * (x2 - x1 + 1);
|
|
||||||
return this._sum(this._partialSumC1, x1, y1, x2, y2) / N;
|
|
||||||
}
|
|
||||||
meanC2(x1, y1, x2, y2) {
|
|
||||||
const N = (y2 - y1 + 1) * (x2 - x1 + 1);
|
|
||||||
return this._sum(this._partialSumC2, x1, y1, x2, y2) / N;
|
|
||||||
}
|
|
||||||
varianceC1(x1, y1, x2, y2) {
|
|
||||||
const N = (y2 - y1 + 1) * (x2 - x1 + 1);
|
|
||||||
return (this._sum(this._partialSumSq1, x1, y1, x2, y2) - this._sum(this._partialSumC1, x1, y1, x2, y2) ** 2 / N) / N;
|
|
||||||
}
|
|
||||||
varianceC2(x1, y1, x2, y2) {
|
|
||||||
const N = (y2 - y1 + 1) * (x2 - x1 + 1);
|
|
||||||
return (this._sum(this._partialSumSq2, x1, y1, x2, y2) - this._sum(this._partialSumC2, x1, y1, x2, y2) ** 2 / N) / N;
|
|
||||||
}
|
|
||||||
covariance(x1, y1, x2, y2) {
|
|
||||||
const N = (y2 - y1 + 1) * (x2 - x1 + 1);
|
|
||||||
return (this._sum(this._partialSumMult, x1, y1, x2, y2) - this._sum(this._partialSumC1, x1, y1, x2, y2) * this._sum(this._partialSumC2, x1, y1, x2, y2) / N) / N;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.FastStats = FastStats;
|
|
||||||
11
tvapp2/node_modules/playwright-core/lib/inProcessFactory.js
generated
vendored
@@ -4,10 +4,12 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.createInProcessPlaywright = createInProcessPlaywright;
|
exports.createInProcessPlaywright = createInProcessPlaywright;
|
||||||
var _server = require("./server");
|
|
||||||
var _connection = require("./client/connection");
|
|
||||||
var _browserServerImpl = require("./browserServerImpl");
|
|
||||||
var _androidServerImpl = require("./androidServerImpl");
|
var _androidServerImpl = require("./androidServerImpl");
|
||||||
|
var _browserServerImpl = require("./browserServerImpl");
|
||||||
|
var _server = require("./server");
|
||||||
|
var _nodePlatform = require("./server/utils/nodePlatform");
|
||||||
|
var _connection = require("./client/connection");
|
||||||
|
var _selectors = require("./client/selectors");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -28,7 +30,8 @@ function createInProcessPlaywright() {
|
|||||||
const playwright = (0, _server.createPlaywright)({
|
const playwright = (0, _server.createPlaywright)({
|
||||||
sdkLanguage: process.env.PW_LANG_NAME || 'javascript'
|
sdkLanguage: process.env.PW_LANG_NAME || 'javascript'
|
||||||
});
|
});
|
||||||
const clientConnection = new _connection.Connection(undefined, undefined);
|
(0, _selectors.setPlatformForSelectors)(_nodePlatform.nodePlatform);
|
||||||
|
const clientConnection = new _connection.Connection(_nodePlatform.nodePlatform);
|
||||||
clientConnection.useRawBuffers();
|
clientConnection.useRawBuffers();
|
||||||
const dispatcherConnection = new _server.DispatcherConnection(true /* local */);
|
const dispatcherConnection = new _server.DispatcherConnection(true /* local */);
|
||||||
|
|
||||||
|
|||||||
20
tvapp2/node_modules/playwright-core/lib/outofprocess.js
generated
vendored
@@ -4,13 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.start = start;
|
exports.start = start;
|
||||||
var _connection = require("./client/connection");
|
|
||||||
var _transport = require("./protocol/transport");
|
|
||||||
var childProcess = _interopRequireWildcard(require("child_process"));
|
var childProcess = _interopRequireWildcard(require("child_process"));
|
||||||
var path = _interopRequireWildcard(require("path"));
|
var _path = _interopRequireDefault(require("path"));
|
||||||
var _manualPromise = require("./utils/manualPromise");
|
var _connection = require("./client/connection");
|
||||||
|
var _pipeTransport = require("./server/utils/pipeTransport");
|
||||||
|
var _manualPromise = require("./utils/isomorphic/manualPromise");
|
||||||
|
var _nodePlatform = require("./server/utils/nodePlatform");
|
||||||
|
var _selectors = require("./client/selectors");
|
||||||
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -28,6 +31,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
async function start(env = {}) {
|
async function start(env = {}) {
|
||||||
|
(0, _selectors.setPlatformForSelectors)(_nodePlatform.nodePlatform);
|
||||||
const client = new PlaywrightClient(env);
|
const client = new PlaywrightClient(env);
|
||||||
const playwright = await client._playwright;
|
const playwright = await client._playwright;
|
||||||
playwright.driverProcess = client._driverProcess;
|
playwright.driverProcess = client._driverProcess;
|
||||||
@@ -41,7 +45,7 @@ class PlaywrightClient {
|
|||||||
this._playwright = void 0;
|
this._playwright = void 0;
|
||||||
this._driverProcess = void 0;
|
this._driverProcess = void 0;
|
||||||
this._closePromise = new _manualPromise.ManualPromise();
|
this._closePromise = new _manualPromise.ManualPromise();
|
||||||
this._driverProcess = childProcess.fork(path.join(__dirname, '..', 'cli.js'), ['run-driver'], {
|
this._driverProcess = childProcess.fork(_path.default.join(__dirname, '..', 'cli.js'), ['run-driver'], {
|
||||||
stdio: 'pipe',
|
stdio: 'pipe',
|
||||||
detached: true,
|
detached: true,
|
||||||
env: {
|
env: {
|
||||||
@@ -51,8 +55,8 @@ class PlaywrightClient {
|
|||||||
});
|
});
|
||||||
this._driverProcess.unref();
|
this._driverProcess.unref();
|
||||||
this._driverProcess.stderr.on('data', data => process.stderr.write(data));
|
this._driverProcess.stderr.on('data', data => process.stderr.write(data));
|
||||||
const connection = new _connection.Connection(undefined, undefined);
|
const connection = new _connection.Connection(_nodePlatform.nodePlatform);
|
||||||
const transport = new _transport.PipeTransport(this._driverProcess.stdin, this._driverProcess.stdout);
|
const transport = new _pipeTransport.PipeTransport(this._driverProcess.stdin, this._driverProcess.stdout);
|
||||||
connection.onmessage = message => transport.send(JSON.stringify(message));
|
connection.onmessage = message => transport.send(JSON.stringify(message));
|
||||||
transport.onmessage = message => connection.dispatch(JSON.parse(message));
|
transport.onmessage = message => connection.dispatch(JSON.parse(message));
|
||||||
transport.onclose = () => this._closePromise.resolve();
|
transport.onclose = () => this._closePromise.resolve();
|
||||||
|
|||||||
82
tvapp2/node_modules/playwright-core/lib/protocol/transport.js
generated
vendored
@@ -1,82 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
|
||||||
value: true
|
|
||||||
});
|
|
||||||
exports.PipeTransport = void 0;
|
|
||||||
var _utils = require("../utils");
|
|
||||||
/**
|
|
||||||
* Copyright (c) Microsoft Corporation.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
class PipeTransport {
|
|
||||||
constructor(pipeWrite, pipeRead, closeable, endian = 'le') {
|
|
||||||
this._pipeWrite = void 0;
|
|
||||||
this._data = Buffer.from([]);
|
|
||||||
this._waitForNextTask = (0, _utils.makeWaitForNextTask)();
|
|
||||||
this._closed = false;
|
|
||||||
this._bytesLeft = 0;
|
|
||||||
this.onmessage = void 0;
|
|
||||||
this.onclose = void 0;
|
|
||||||
this._endian = void 0;
|
|
||||||
this._closeableStream = void 0;
|
|
||||||
this._pipeWrite = pipeWrite;
|
|
||||||
this._endian = endian;
|
|
||||||
this._closeableStream = closeable;
|
|
||||||
pipeRead.on('data', buffer => this._dispatch(buffer));
|
|
||||||
pipeRead.on('close', () => {
|
|
||||||
this._closed = true;
|
|
||||||
if (this.onclose) this.onclose();
|
|
||||||
});
|
|
||||||
this.onmessage = undefined;
|
|
||||||
this.onclose = undefined;
|
|
||||||
}
|
|
||||||
send(message) {
|
|
||||||
if (this._closed) throw new Error('Pipe has been closed');
|
|
||||||
const data = Buffer.from(message, 'utf-8');
|
|
||||||
const dataLength = Buffer.alloc(4);
|
|
||||||
if (this._endian === 'be') dataLength.writeUInt32BE(data.length, 0);else dataLength.writeUInt32LE(data.length, 0);
|
|
||||||
this._pipeWrite.write(dataLength);
|
|
||||||
this._pipeWrite.write(data);
|
|
||||||
}
|
|
||||||
close() {
|
|
||||||
// Let it throw.
|
|
||||||
this._closeableStream.close();
|
|
||||||
}
|
|
||||||
_dispatch(buffer) {
|
|
||||||
this._data = Buffer.concat([this._data, buffer]);
|
|
||||||
while (true) {
|
|
||||||
if (!this._bytesLeft && this._data.length < 4) {
|
|
||||||
// Need more data.
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (!this._bytesLeft) {
|
|
||||||
this._bytesLeft = this._endian === 'be' ? this._data.readUInt32BE(0) : this._data.readUInt32LE(0);
|
|
||||||
this._data = this._data.slice(4);
|
|
||||||
}
|
|
||||||
if (!this._bytesLeft || this._data.length < this._bytesLeft) {
|
|
||||||
// Need more data.
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
const message = this._data.slice(0, this._bytesLeft);
|
|
||||||
this._data = this._data.slice(this._bytesLeft);
|
|
||||||
this._bytesLeft = 0;
|
|
||||||
this._waitForNextTask(() => {
|
|
||||||
if (this.onmessage) this.onmessage(message.toString('utf-8'));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.PipeTransport = PipeTransport;
|
|
||||||
59
tvapp2/node_modules/playwright-core/lib/protocol/validator.js
generated
vendored
@@ -168,9 +168,38 @@ _validatorPrimitives.scheme.NameValue = (0, _validatorPrimitives.tObject)({
|
|||||||
name: _validatorPrimitives.tString,
|
name: _validatorPrimitives.tString,
|
||||||
value: _validatorPrimitives.tString
|
value: _validatorPrimitives.tString
|
||||||
});
|
});
|
||||||
|
_validatorPrimitives.scheme.IndexedDBDatabase = (0, _validatorPrimitives.tObject)({
|
||||||
|
name: _validatorPrimitives.tString,
|
||||||
|
version: _validatorPrimitives.tNumber,
|
||||||
|
stores: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tObject)({
|
||||||
|
name: _validatorPrimitives.tString,
|
||||||
|
autoIncrement: _validatorPrimitives.tBoolean,
|
||||||
|
keyPath: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
|
keyPathArray: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)(_validatorPrimitives.tString)),
|
||||||
|
records: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tObject)({
|
||||||
|
key: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tAny),
|
||||||
|
keyEncoded: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tAny),
|
||||||
|
value: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tAny),
|
||||||
|
valueEncoded: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tAny)
|
||||||
|
})),
|
||||||
|
indexes: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tObject)({
|
||||||
|
name: _validatorPrimitives.tString,
|
||||||
|
keyPath: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
|
keyPathArray: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)(_validatorPrimitives.tString)),
|
||||||
|
multiEntry: _validatorPrimitives.tBoolean,
|
||||||
|
unique: _validatorPrimitives.tBoolean
|
||||||
|
}))
|
||||||
|
}))
|
||||||
|
});
|
||||||
|
_validatorPrimitives.scheme.SetOriginStorage = (0, _validatorPrimitives.tObject)({
|
||||||
|
origin: _validatorPrimitives.tString,
|
||||||
|
localStorage: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NameValue')),
|
||||||
|
indexedDB: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('IndexedDBDatabase')))
|
||||||
|
});
|
||||||
_validatorPrimitives.scheme.OriginStorage = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.OriginStorage = (0, _validatorPrimitives.tObject)({
|
||||||
origin: _validatorPrimitives.tString,
|
origin: _validatorPrimitives.tString,
|
||||||
localStorage: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NameValue'))
|
localStorage: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NameValue')),
|
||||||
|
indexedDB: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('IndexedDBDatabase')))
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.SerializedError = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.SerializedError = (0, _validatorPrimitives.tObject)({
|
||||||
error: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
error: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
@@ -231,7 +260,9 @@ _validatorPrimitives.scheme.APIRequestContextFetchLogParams = (0, _validatorPrim
|
|||||||
_validatorPrimitives.scheme.APIRequestContextFetchLogResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.APIRequestContextFetchLogResult = (0, _validatorPrimitives.tObject)({
|
||||||
log: (0, _validatorPrimitives.tArray)(_validatorPrimitives.tString)
|
log: (0, _validatorPrimitives.tArray)(_validatorPrimitives.tString)
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.APIRequestContextStorageStateParams = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.APIRequestContextStorageStateParams = (0, _validatorPrimitives.tObject)({
|
||||||
|
indexedDB: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean)
|
||||||
|
});
|
||||||
_validatorPrimitives.scheme.APIRequestContextStorageStateResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.APIRequestContextStorageStateResult = (0, _validatorPrimitives.tObject)({
|
||||||
cookies: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie')),
|
cookies: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie')),
|
||||||
origins: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage'))
|
origins: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage'))
|
||||||
@@ -365,6 +396,7 @@ _validatorPrimitives.scheme.PlaywrightNewRequestParams = (0, _validatorPrimitive
|
|||||||
userAgent: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
userAgent: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
ignoreHTTPSErrors: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean),
|
ignoreHTTPSErrors: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean),
|
||||||
extraHTTPHeaders: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NameValue'))),
|
extraHTTPHeaders: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NameValue'))),
|
||||||
|
failOnStatusCode: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean),
|
||||||
clientCertificates: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tObject)({
|
clientCertificates: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tObject)({
|
||||||
origin: _validatorPrimitives.tString,
|
origin: _validatorPrimitives.tString,
|
||||||
cert: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBinary),
|
cert: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBinary),
|
||||||
@@ -387,7 +419,7 @@ _validatorPrimitives.scheme.PlaywrightNewRequestParams = (0, _validatorPrimitive
|
|||||||
timeout: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tNumber),
|
timeout: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tNumber),
|
||||||
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie'))),
|
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie'))),
|
||||||
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage')))
|
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetOriginStorage')))
|
||||||
})),
|
})),
|
||||||
tracesDir: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString)
|
tracesDir: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString)
|
||||||
});
|
});
|
||||||
@@ -608,6 +640,7 @@ _validatorPrimitives.scheme.BrowserTypeLaunchPersistentContextParams = (0, _vali
|
|||||||
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
||||||
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
||||||
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
||||||
|
contrast: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['no-preference', 'more', 'no-override'])),
|
||||||
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
dir: _validatorPrimitives.tString,
|
dir: _validatorPrimitives.tString,
|
||||||
@@ -694,6 +727,7 @@ _validatorPrimitives.scheme.BrowserNewContextParams = (0, _validatorPrimitives.t
|
|||||||
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
||||||
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
||||||
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
||||||
|
contrast: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['no-preference', 'more', 'no-override'])),
|
||||||
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
dir: _validatorPrimitives.tString,
|
dir: _validatorPrimitives.tString,
|
||||||
@@ -713,7 +747,7 @@ _validatorPrimitives.scheme.BrowserNewContextParams = (0, _validatorPrimitives.t
|
|||||||
})),
|
})),
|
||||||
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetNetworkCookie'))),
|
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetNetworkCookie'))),
|
||||||
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage')))
|
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetOriginStorage')))
|
||||||
}))
|
}))
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.BrowserNewContextResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.BrowserNewContextResult = (0, _validatorPrimitives.tObject)({
|
||||||
@@ -763,6 +797,7 @@ _validatorPrimitives.scheme.BrowserNewContextForReuseParams = (0, _validatorPrim
|
|||||||
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
||||||
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
||||||
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
||||||
|
contrast: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['no-preference', 'more', 'no-override'])),
|
||||||
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
dir: _validatorPrimitives.tString,
|
dir: _validatorPrimitives.tString,
|
||||||
@@ -782,7 +817,7 @@ _validatorPrimitives.scheme.BrowserNewContextForReuseParams = (0, _validatorPrim
|
|||||||
})),
|
})),
|
||||||
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
storageState: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetNetworkCookie'))),
|
cookies: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetNetworkCookie'))),
|
||||||
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage')))
|
origins: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('SetOriginStorage')))
|
||||||
}))
|
}))
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.BrowserNewContextForReuseResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.BrowserNewContextForReuseResult = (0, _validatorPrimitives.tObject)({
|
||||||
@@ -986,7 +1021,9 @@ _validatorPrimitives.scheme.BrowserContextSetOfflineParams = (0, _validatorPrimi
|
|||||||
offline: _validatorPrimitives.tBoolean
|
offline: _validatorPrimitives.tBoolean
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.BrowserContextSetOfflineResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.BrowserContextSetOfflineResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
_validatorPrimitives.scheme.BrowserContextStorageStateParams = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.BrowserContextStorageStateParams = (0, _validatorPrimitives.tObject)({
|
||||||
|
indexedDB: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean)
|
||||||
|
});
|
||||||
_validatorPrimitives.scheme.BrowserContextStorageStateResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.BrowserContextStorageStateResult = (0, _validatorPrimitives.tObject)({
|
||||||
cookies: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie')),
|
cookies: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('NetworkCookie')),
|
||||||
origins: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage'))
|
origins: (0, _validatorPrimitives.tArray)((0, _validatorPrimitives.tType)('OriginStorage'))
|
||||||
@@ -1143,7 +1180,8 @@ _validatorPrimitives.scheme.PageEmulateMediaParams = (0, _validatorPrimitives.tO
|
|||||||
media: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['screen', 'print', 'no-override'])),
|
media: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['screen', 'print', 'no-override'])),
|
||||||
colorScheme: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['dark', 'light', 'no-preference', 'no-override'])),
|
colorScheme: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['dark', 'light', 'no-preference', 'no-override'])),
|
||||||
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
||||||
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override']))
|
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
||||||
|
contrast: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['no-preference', 'more', 'no-override']))
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.PageEmulateMediaResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.PageEmulateMediaResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
_validatorPrimitives.scheme.PageExposeBindingParams = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.PageExposeBindingParams = (0, _validatorPrimitives.tObject)({
|
||||||
@@ -1455,6 +1493,8 @@ _validatorPrimitives.scheme.FrameAddStyleTagResult = (0, _validatorPrimitives.tO
|
|||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.FrameAriaSnapshotParams = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.FrameAriaSnapshotParams = (0, _validatorPrimitives.tObject)({
|
||||||
selector: _validatorPrimitives.tString,
|
selector: _validatorPrimitives.tString,
|
||||||
|
id: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tBoolean),
|
||||||
|
mode: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['raw', 'regex'])),
|
||||||
timeout: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tNumber)
|
timeout: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tNumber)
|
||||||
});
|
});
|
||||||
_validatorPrimitives.scheme.FrameAriaSnapshotResult = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.FrameAriaSnapshotResult = (0, _validatorPrimitives.tObject)({
|
||||||
@@ -1951,6 +1991,10 @@ _validatorPrimitives.scheme.ElementHandleFillParams = (0, _validatorPrimitives.t
|
|||||||
_validatorPrimitives.scheme.ElementHandleFillResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.ElementHandleFillResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
_validatorPrimitives.scheme.ElementHandleFocusParams = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.ElementHandleFocusParams = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
_validatorPrimitives.scheme.ElementHandleFocusResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
_validatorPrimitives.scheme.ElementHandleFocusResult = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
|
_validatorPrimitives.scheme.ElementHandleGenerateLocatorStringParams = (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({}));
|
||||||
|
_validatorPrimitives.scheme.ElementHandleGenerateLocatorStringResult = (0, _validatorPrimitives.tObject)({
|
||||||
|
value: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString)
|
||||||
|
});
|
||||||
_validatorPrimitives.scheme.ElementHandleGetAttributeParams = (0, _validatorPrimitives.tObject)({
|
_validatorPrimitives.scheme.ElementHandleGetAttributeParams = (0, _validatorPrimitives.tObject)({
|
||||||
name: _validatorPrimitives.tString
|
name: _validatorPrimitives.tString
|
||||||
});
|
});
|
||||||
@@ -2660,6 +2704,7 @@ _validatorPrimitives.scheme.AndroidDeviceLaunchBrowserParams = (0, _validatorPri
|
|||||||
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
reducedMotion: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['reduce', 'no-preference', 'no-override'])),
|
||||||
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
forcedColors: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['active', 'none', 'no-override'])),
|
||||||
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
acceptDownloads: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['accept', 'deny', 'internal-browser-default'])),
|
||||||
|
contrast: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tEnum)(['no-preference', 'more', 'no-override'])),
|
||||||
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
baseURL: (0, _validatorPrimitives.tOptional)(_validatorPrimitives.tString),
|
||||||
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
recordVideo: (0, _validatorPrimitives.tOptional)((0, _validatorPrimitives.tObject)({
|
||||||
dir: _validatorPrimitives.tString,
|
dir: _validatorPrimitives.tString,
|
||||||
|
|||||||
3
tvapp2/node_modules/playwright-core/lib/protocol/validatorPrimitives.js
generated
vendored
@@ -8,7 +8,6 @@ exports.createMetadataValidator = createMetadataValidator;
|
|||||||
exports.findValidator = findValidator;
|
exports.findValidator = findValidator;
|
||||||
exports.maybeFindValidator = maybeFindValidator;
|
exports.maybeFindValidator = maybeFindValidator;
|
||||||
exports.tUndefined = exports.tType = exports.tString = exports.tOptional = exports.tObject = exports.tNumber = exports.tEnum = exports.tChannel = exports.tBoolean = exports.tBinary = exports.tArray = exports.tAny = exports.scheme = void 0;
|
exports.tUndefined = exports.tType = exports.tString = exports.tOptional = exports.tObject = exports.tNumber = exports.tEnum = exports.tChannel = exports.tBoolean = exports.tBinary = exports.tArray = exports.tAny = exports.scheme = void 0;
|
||||||
var _utils = require("../utils");
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -107,7 +106,7 @@ const tObject = s => {
|
|||||||
const value = v(arg[key], path ? path + '.' + key : key, context);
|
const value = v(arg[key], path ? path + '.' + key : key, context);
|
||||||
if (!Object.is(value, undefined)) result[key] = value;
|
if (!Object.is(value, undefined)) result[key] = value;
|
||||||
}
|
}
|
||||||
if ((0, _utils.isUnderTest)()) {
|
if (context.isUnderTest()) {
|
||||||
for (const [key, value] of Object.entries(arg)) {
|
for (const [key, value] of Object.entries(arg)) {
|
||||||
if (key.startsWith('__testHook')) result[key] = value;
|
if (key.startsWith('__testHook')) result[key] = value;
|
||||||
}
|
}
|
||||||
|
|||||||
30
tvapp2/node_modules/playwright-core/lib/remote/playwrightConnection.js
generated
vendored
@@ -4,14 +4,17 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.PlaywrightConnection = void 0;
|
exports.PlaywrightConnection = void 0;
|
||||||
|
var _socksProxy = require("../server/utils/socksProxy");
|
||||||
var _server = require("../server");
|
var _server = require("../server");
|
||||||
var _browser = require("../server/browser");
|
|
||||||
var _instrumentation = require("../server/instrumentation");
|
|
||||||
var _socksProxy = require("../common/socksProxy");
|
|
||||||
var _utils = require("../utils");
|
|
||||||
var _android = require("../server/android/android");
|
var _android = require("../server/android/android");
|
||||||
|
var _browser = require("../server/browser");
|
||||||
var _debugControllerDispatcher = require("../server/dispatchers/debugControllerDispatcher");
|
var _debugControllerDispatcher = require("../server/dispatchers/debugControllerDispatcher");
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
var _instrumentation = require("../server/instrumentation");
|
||||||
|
var _assert = require("../utils/isomorphic/assert");
|
||||||
|
var _debug = require("../server/utils/debug");
|
||||||
|
var _profiler = require("../server/utils/profiler");
|
||||||
|
var _utils = require("../utils");
|
||||||
|
var _debugLogger = require("../server/utils/debugLogger");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -44,8 +47,8 @@ class PlaywrightConnection {
|
|||||||
this._preLaunched = preLaunched;
|
this._preLaunched = preLaunched;
|
||||||
this._options = options;
|
this._options = options;
|
||||||
options.launchOptions = filterLaunchOptions(options.launchOptions, options.allowFSPaths);
|
options.launchOptions = filterLaunchOptions(options.launchOptions, options.allowFSPaths);
|
||||||
if (clientType === 'reuse-browser' || clientType === 'pre-launched-browser-or-android') (0, _utils.assert)(preLaunched.playwright);
|
if (clientType === 'reuse-browser' || clientType === 'pre-launched-browser-or-android') (0, _assert.assert)(preLaunched.playwright);
|
||||||
if (clientType === 'pre-launched-browser-or-android') (0, _utils.assert)(preLaunched.browser || preLaunched.androidDevice);
|
if (clientType === 'pre-launched-browser-or-android') (0, _assert.assert)(preLaunched.browser || preLaunched.androidDevice);
|
||||||
this._onClose = onClose;
|
this._onClose = onClose;
|
||||||
this._id = id;
|
this._id = id;
|
||||||
this._profileName = `${new Date().toISOString()}-${clientType}`;
|
this._profileName = `${new Date().toISOString()}-${clientType}`;
|
||||||
@@ -74,7 +77,7 @@ class PlaywrightConnection {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this._root = new _server.RootDispatcher(this._dispatcherConnection, async (scope, options) => {
|
this._root = new _server.RootDispatcher(this._dispatcherConnection, async (scope, options) => {
|
||||||
await (0, _utils.startProfiling)();
|
await (0, _profiler.startProfiling)();
|
||||||
if (clientType === 'reuse-browser') return await this._initReuseBrowsersMode(scope);
|
if (clientType === 'reuse-browser') return await this._initReuseBrowsersMode(scope);
|
||||||
if (clientType === 'pre-launched-browser-or-android') return this._preLaunched.browser ? await this._initPreLaunchedBrowserMode(scope) : await this._initPreLaunchedAndroidMode(scope);
|
if (clientType === 'pre-launched-browser-or-android') return this._preLaunched.browser ? await this._initPreLaunchedBrowserMode(scope) : await this._initPreLaunchedAndroidMode(scope);
|
||||||
if (clientType === 'launch-browser') return await this._initLaunchBrowserMode(scope, options);
|
if (clientType === 'launch-browser') return await this._initLaunchBrowserMode(scope, options);
|
||||||
@@ -88,7 +91,12 @@ class PlaywrightConnection {
|
|||||||
isServer: true
|
isServer: true
|
||||||
});
|
});
|
||||||
const ownedSocksProxy = await this._createOwnedSocksProxy(playwright);
|
const ownedSocksProxy = await this._createOwnedSocksProxy(playwright);
|
||||||
const browser = await playwright[this._options.browserName].launch((0, _instrumentation.serverSideCallMetadata)(), this._options.launchOptions);
|
let browserName = this._options.browserName;
|
||||||
|
if ('bidi' === browserName) {
|
||||||
|
var _this$_options$launch;
|
||||||
|
if ((_this$_options$launch = this._options.launchOptions) !== null && _this$_options$launch !== void 0 && (_this$_options$launch = _this$_options$launch.channel) !== null && _this$_options$launch !== void 0 && _this$_options$launch.toLocaleLowerCase().includes('firefox')) browserName = 'bidiFirefox';else browserName = 'bidiChromium';
|
||||||
|
}
|
||||||
|
const browser = await playwright[browserName].launch((0, _instrumentation.serverSideCallMetadata)(), this._options.launchOptions);
|
||||||
this._cleanups.push(async () => {
|
this._cleanups.push(async () => {
|
||||||
for (const browser of playwright.allBrowsers()) await browser.close({
|
for (const browser of playwright.allBrowsers()) await browser.close({
|
||||||
reason: 'Connection terminated'
|
reason: 'Connection terminated'
|
||||||
@@ -214,7 +222,7 @@ class PlaywrightConnection {
|
|||||||
this._root._dispose();
|
this._root._dispose();
|
||||||
_debugLogger.debugLogger.log('server', `[${this._id}] starting cleanup`);
|
_debugLogger.debugLogger.log('server', `[${this._id}] starting cleanup`);
|
||||||
for (const cleanup of this._cleanups) await cleanup().catch(() => {});
|
for (const cleanup of this._cleanups) await cleanup().catch(() => {});
|
||||||
await (0, _utils.stopProfiling)(this._profileName);
|
await (0, _profiler.stopProfiling)(this._profileName);
|
||||||
this._onClose();
|
this._onClose();
|
||||||
_debugLogger.debugLogger.log('server', `[${this._id}] finished cleanup`);
|
_debugLogger.debugLogger.log('server', `[${this._id}] finished cleanup`);
|
||||||
}
|
}
|
||||||
@@ -260,7 +268,7 @@ function filterLaunchOptions(options, allowFSPaths) {
|
|||||||
chromiumSandbox: options.chromiumSandbox,
|
chromiumSandbox: options.chromiumSandbox,
|
||||||
firefoxUserPrefs: options.firefoxUserPrefs,
|
firefoxUserPrefs: options.firefoxUserPrefs,
|
||||||
slowMo: options.slowMo,
|
slowMo: options.slowMo,
|
||||||
executablePath: (0, _utils.isUnderTest)() || allowFSPaths ? options.executablePath : undefined,
|
executablePath: (0, _debug.isUnderTest)() || allowFSPaths ? options.executablePath : undefined,
|
||||||
downloadsPath: allowFSPaths ? options.downloadsPath : undefined
|
downloadsPath: allowFSPaths ? options.downloadsPath : undefined
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
25
tvapp2/node_modules/playwright-core/lib/remote/playwrightServer.js
generated
vendored
@@ -4,12 +4,13 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.PlaywrightServer = void 0;
|
exports.PlaywrightServer = void 0;
|
||||||
var _playwright = require("../server/playwright");
|
|
||||||
var _playwrightConnection = require("./playwrightConnection");
|
var _playwrightConnection = require("./playwrightConnection");
|
||||||
var _semaphore = require("../utils/semaphore");
|
var _playwright = require("../server/playwright");
|
||||||
var _debugLogger = require("../utils/debugLogger");
|
var _debugLogger = require("../server/utils/debugLogger");
|
||||||
var _utils = require("../utils");
|
var _semaphore = require("../utils/isomorphic/semaphore");
|
||||||
var _wsServer = require("../utils/wsServer");
|
var _wsServer = require("../server/utils/wsServer");
|
||||||
|
var _ascii = require("../server/utils/ascii");
|
||||||
|
var _userAgent = require("../server/utils/userAgent");
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -39,7 +40,7 @@ class PlaywrightServer {
|
|||||||
const reuseBrowserSemaphore = new _semaphore.Semaphore(1);
|
const reuseBrowserSemaphore = new _semaphore.Semaphore(1);
|
||||||
this._wsServer = new _wsServer.WSServer({
|
this._wsServer = new _wsServer.WSServer({
|
||||||
onUpgrade: (request, socket) => {
|
onUpgrade: (request, socket) => {
|
||||||
const uaError = (0, _utils.userAgentVersionMatchesErrorMessage)(request.headers['user-agent'] || '');
|
const uaError = userAgentVersionMatchesErrorMessage(request.headers['user-agent'] || '');
|
||||||
if (uaError) return {
|
if (uaError) return {
|
||||||
error: `HTTP/${request.httpVersion} 428 Precondition Required\r\n\r\n${uaError}`
|
error: `HTTP/${request.httpVersion} 428 Precondition Required\r\n\r\n${uaError}`
|
||||||
};
|
};
|
||||||
@@ -109,3 +110,15 @@ class PlaywrightServer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.PlaywrightServer = PlaywrightServer;
|
exports.PlaywrightServer = PlaywrightServer;
|
||||||
|
function userAgentVersionMatchesErrorMessage(userAgent) {
|
||||||
|
const match = userAgent.match(/^Playwright\/(\d+\.\d+\.\d+)/);
|
||||||
|
if (!match) {
|
||||||
|
// Cannot parse user agent - be lax.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const received = match[1].split('.').slice(0, 2).join('.');
|
||||||
|
const expected = (0, _userAgent.getPlaywrightVersion)(true);
|
||||||
|
if (received !== expected) {
|
||||||
|
return (0, _ascii.wrapInASCIIBox)([`Playwright version mismatch:`, ` - server version: v${expected}`, ` - client version: v${received}`, ``, `If you are using VSCode extension, restart VSCode.`, ``, `If you are connecting to a remote service,`, `keep your local Playwright version in sync`, `with the remote service version.`, ``, `<3 Playwright Team`].join('\n'), 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
35
tvapp2/node_modules/playwright-core/lib/server/android/android.js
generated
vendored
@@ -4,25 +4,28 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.AndroidDevice = exports.Android = void 0;
|
exports.AndroidDevice = exports.Android = void 0;
|
||||||
var _utilsBundle = require("../../utilsBundle");
|
|
||||||
var _events = require("events");
|
var _events = require("events");
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _fs = _interopRequireDefault(require("fs"));
|
||||||
var _os = _interopRequireDefault(require("os"));
|
var _os = _interopRequireDefault(require("os"));
|
||||||
var _path = _interopRequireDefault(require("path"));
|
var _path = _interopRequireDefault(require("path"));
|
||||||
var _utils = require("../../utils");
|
var _timeoutSettings = require("../timeoutSettings");
|
||||||
var _fileUtils = require("../../utils/fileUtils");
|
var _pipeTransport = require("../utils/pipeTransport");
|
||||||
|
var _crypto = require("../utils/crypto");
|
||||||
|
var _debug = require("../utils/debug");
|
||||||
|
var _env = require("../utils/env");
|
||||||
|
var _task = require("../utils/task");
|
||||||
|
var _debugLogger = require("../utils/debugLogger");
|
||||||
|
var _utilsBundle = require("../../utilsBundle");
|
||||||
var _browserContext = require("../browserContext");
|
var _browserContext = require("../browserContext");
|
||||||
var _progress = require("../progress");
|
|
||||||
var _crBrowser = require("../chromium/crBrowser");
|
|
||||||
var _helper = require("../helper");
|
|
||||||
var _transport = require("../../protocol/transport");
|
|
||||||
var _debugLogger = require("../../utils/debugLogger");
|
|
||||||
var _processLauncher = require("../../utils/processLauncher");
|
|
||||||
var _timeoutSettings = require("../../common/timeoutSettings");
|
|
||||||
var _instrumentation = require("../instrumentation");
|
|
||||||
var _chromiumSwitches = require("../chromium/chromiumSwitches");
|
var _chromiumSwitches = require("../chromium/chromiumSwitches");
|
||||||
|
var _crBrowser = require("../chromium/crBrowser");
|
||||||
|
var _fileUtils = require("../utils/fileUtils");
|
||||||
|
var _helper = require("../helper");
|
||||||
|
var _instrumentation = require("../instrumentation");
|
||||||
|
var _processLauncher = require("../utils/processLauncher");
|
||||||
|
var _progress = require("../progress");
|
||||||
var _registry = require("../registry");
|
var _registry = require("../registry");
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright Microsoft Corporation. All rights reserved.
|
* Copyright Microsoft Corporation. All rights reserved.
|
||||||
*
|
*
|
||||||
@@ -140,7 +143,7 @@ class AndroidDevice extends _instrumentation.SdkObject {
|
|||||||
await this.shell(`cmd package uninstall com.microsoft.playwright.androiddriver.test`);
|
await this.shell(`cmd package uninstall com.microsoft.playwright.androiddriver.test`);
|
||||||
(0, _utilsBundle.debug)('pw:android')('Installing the new driver');
|
(0, _utilsBundle.debug)('pw:android')('Installing the new driver');
|
||||||
const executable = _registry.registry.findExecutable('android');
|
const executable = _registry.registry.findExecutable('android');
|
||||||
const packageManagerCommand = (0, _utils.getPackageManagerExecCommand)();
|
const packageManagerCommand = (0, _env.getPackageManagerExecCommand)();
|
||||||
for (const file of ['android-driver.apk', 'android-driver-target.apk']) {
|
for (const file of ['android-driver.apk', 'android-driver-target.apk']) {
|
||||||
const fullName = _path.default.join(executable.directory, file);
|
const fullName = _path.default.join(executable.directory, file);
|
||||||
if (!_fs.default.existsSync(fullName)) throw new Error(`Please install Android driver apk using '${packageManagerCommand} playwright install android'`);
|
if (!_fs.default.existsSync(fullName)) throw new Error(`Please install Android driver apk using '${packageManagerCommand} playwright install android'`);
|
||||||
@@ -152,7 +155,7 @@ class AndroidDevice extends _instrumentation.SdkObject {
|
|||||||
(0, _utilsBundle.debug)('pw:android')('Starting the new driver');
|
(0, _utilsBundle.debug)('pw:android')('Starting the new driver');
|
||||||
this.shell('am instrument -w com.microsoft.playwright.androiddriver.test/androidx.test.runner.AndroidJUnitRunner').catch(e => (0, _utilsBundle.debug)('pw:android')(e));
|
this.shell('am instrument -w com.microsoft.playwright.androiddriver.test/androidx.test.runner.AndroidJUnitRunner').catch(e => (0, _utilsBundle.debug)('pw:android')(e));
|
||||||
const socket = await this._waitForLocalAbstract('playwright_android_driver_socket');
|
const socket = await this._waitForLocalAbstract('playwright_android_driver_socket');
|
||||||
const transport = new _transport.PipeTransport(socket, socket, socket, 'be');
|
const transport = new _pipeTransport.PipeTransport(socket, socket, socket, 'be');
|
||||||
transport.onmessage = message => {
|
transport.onmessage = message => {
|
||||||
const response = JSON.parse(message);
|
const response = JSON.parse(message);
|
||||||
const {
|
const {
|
||||||
@@ -213,7 +216,7 @@ class AndroidDevice extends _instrumentation.SdkObject {
|
|||||||
async launchBrowser(pkg = 'com.android.chrome', options) {
|
async launchBrowser(pkg = 'com.android.chrome', options) {
|
||||||
(0, _utilsBundle.debug)('pw:android')('Force-stopping', pkg);
|
(0, _utilsBundle.debug)('pw:android')('Force-stopping', pkg);
|
||||||
await this._backend.runCommand(`shell:am force-stop ${pkg}`);
|
await this._backend.runCommand(`shell:am force-stop ${pkg}`);
|
||||||
const socketName = (0, _utils.isUnderTest)() ? 'webview_devtools_remote_playwright_test' : 'playwright_' + (0, _utils.createGuid)() + '_devtools_remote';
|
const socketName = (0, _debug.isUnderTest)() ? 'webview_devtools_remote_playwright_test' : 'playwright_' + (0, _crypto.createGuid)() + '_devtools_remote';
|
||||||
const commandLine = this._defaultArgs(options, socketName).join(' ');
|
const commandLine = this._defaultArgs(options, socketName).join(' ');
|
||||||
(0, _utilsBundle.debug)('pw:android')('Starting', pkg, commandLine);
|
(0, _utilsBundle.debug)('pw:android')('Starting', pkg, commandLine);
|
||||||
// encode commandLine to base64 to avoid issues (bash encoding) with special characters
|
// encode commandLine to base64 to avoid issues (bash encoding) with special characters
|
||||||
@@ -381,7 +384,7 @@ class AndroidBrowser extends _events.EventEmitter {
|
|||||||
this.device = void 0;
|
this.device = void 0;
|
||||||
this._socket = void 0;
|
this._socket = void 0;
|
||||||
this._receiver = void 0;
|
this._receiver = void 0;
|
||||||
this._waitForNextTask = (0, _utils.makeWaitForNextTask)();
|
this._waitForNextTask = (0, _task.makeWaitForNextTask)();
|
||||||
this.onmessage = void 0;
|
this.onmessage = void 0;
|
||||||
this.onclose = void 0;
|
this.onclose = void 0;
|
||||||
this.setMaxListeners(0);
|
this.setMaxListeners(0);
|
||||||
|
|||||||
28
tvapp2/node_modules/playwright-core/lib/server/android/backendAdb.js
generated
vendored
@@ -4,12 +4,12 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.AdbBackend = void 0;
|
exports.AdbBackend = void 0;
|
||||||
var _utilsBundle = require("../../utilsBundle");
|
|
||||||
var net = _interopRequireWildcard(require("net"));
|
|
||||||
var _events = require("events");
|
var _events = require("events");
|
||||||
var _utils = require("../../utils");
|
var _net = _interopRequireDefault(require("net"));
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
var _assert = require("../../utils/isomorphic/assert");
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
var _crypto = require("../utils/crypto");
|
||||||
|
var _utilsBundle = require("../../utilsBundle");
|
||||||
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright Microsoft Corporation. All rights reserved.
|
* Copyright Microsoft Corporation. All rights reserved.
|
||||||
*
|
*
|
||||||
@@ -66,7 +66,7 @@ class AdbDevice {
|
|||||||
}
|
}
|
||||||
async function runCommand(command, host = '127.0.0.1', port = 5037, serial) {
|
async function runCommand(command, host = '127.0.0.1', port = 5037, serial) {
|
||||||
(0, _utilsBundle.debug)('pw:adb:runCommand')(command, serial);
|
(0, _utilsBundle.debug)('pw:adb:runCommand')(command, serial);
|
||||||
const socket = new BufferedSocketWrapper(command, net.createConnection({
|
const socket = new BufferedSocketWrapper(command, _net.default.createConnection({
|
||||||
host,
|
host,
|
||||||
port
|
port
|
||||||
}));
|
}));
|
||||||
@@ -74,11 +74,11 @@ async function runCommand(command, host = '127.0.0.1', port = 5037, serial) {
|
|||||||
if (serial) {
|
if (serial) {
|
||||||
await socket.write(encodeMessage(`host:transport:${serial}`));
|
await socket.write(encodeMessage(`host:transport:${serial}`));
|
||||||
const status = await socket.read(4);
|
const status = await socket.read(4);
|
||||||
(0, _utils.assert)(status.toString() === 'OKAY', status.toString());
|
(0, _assert.assert)(status.toString() === 'OKAY', status.toString());
|
||||||
}
|
}
|
||||||
await socket.write(encodeMessage(command));
|
await socket.write(encodeMessage(command));
|
||||||
const status = await socket.read(4);
|
const status = await socket.read(4);
|
||||||
(0, _utils.assert)(status.toString() === 'OKAY', status.toString());
|
(0, _assert.assert)(status.toString() === 'OKAY', status.toString());
|
||||||
let commandOutput;
|
let commandOutput;
|
||||||
if (!command.startsWith('shell:')) {
|
if (!command.startsWith('shell:')) {
|
||||||
const remainingLength = parseInt((await socket.read(4)).toString(), 16);
|
const remainingLength = parseInt((await socket.read(4)).toString(), 16);
|
||||||
@@ -92,18 +92,18 @@ async function runCommand(command, host = '127.0.0.1', port = 5037, serial) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function open(command, host = '127.0.0.1', port = 5037, serial) {
|
async function open(command, host = '127.0.0.1', port = 5037, serial) {
|
||||||
const socket = new BufferedSocketWrapper(command, net.createConnection({
|
const socket = new BufferedSocketWrapper(command, _net.default.createConnection({
|
||||||
host,
|
host,
|
||||||
port
|
port
|
||||||
}));
|
}));
|
||||||
if (serial) {
|
if (serial) {
|
||||||
await socket.write(encodeMessage(`host:transport:${serial}`));
|
await socket.write(encodeMessage(`host:transport:${serial}`));
|
||||||
const status = await socket.read(4);
|
const status = await socket.read(4);
|
||||||
(0, _utils.assert)(status.toString() === 'OKAY', status.toString());
|
(0, _assert.assert)(status.toString() === 'OKAY', status.toString());
|
||||||
}
|
}
|
||||||
await socket.write(encodeMessage(command));
|
await socket.write(encodeMessage(command));
|
||||||
const status = await socket.read(4);
|
const status = await socket.read(4);
|
||||||
(0, _utils.assert)(status.toString() === 'OKAY', status.toString());
|
(0, _assert.assert)(status.toString() === 'OKAY', status.toString());
|
||||||
return socket;
|
return socket;
|
||||||
}
|
}
|
||||||
function encodeMessage(message) {
|
function encodeMessage(message) {
|
||||||
@@ -114,7 +114,7 @@ function encodeMessage(message) {
|
|||||||
class BufferedSocketWrapper extends _events.EventEmitter {
|
class BufferedSocketWrapper extends _events.EventEmitter {
|
||||||
constructor(command, socket) {
|
constructor(command, socket) {
|
||||||
super();
|
super();
|
||||||
this.guid = (0, _utils.createGuid)();
|
this.guid = (0, _crypto.createGuid)();
|
||||||
this._socket = void 0;
|
this._socket = void 0;
|
||||||
this._buffer = Buffer.from([]);
|
this._buffer = Buffer.from([]);
|
||||||
this._isSocket = false;
|
this._isSocket = false;
|
||||||
@@ -154,7 +154,7 @@ class BufferedSocketWrapper extends _events.EventEmitter {
|
|||||||
}
|
}
|
||||||
async read(length) {
|
async read(length) {
|
||||||
await this._connectPromise;
|
await this._connectPromise;
|
||||||
(0, _utils.assert)(!this._isSocket, 'Can not read by length in socket mode');
|
(0, _assert.assert)(!this._isSocket, 'Can not read by length in socket mode');
|
||||||
while (this._buffer.length < length) await new Promise(f => this._notifyReader = f);
|
while (this._buffer.length < length) await new Promise(f => this._notifyReader = f);
|
||||||
const result = this._buffer.slice(0, length);
|
const result = this._buffer.slice(0, length);
|
||||||
this._buffer = this._buffer.slice(length);
|
this._buffer = this._buffer.slice(length);
|
||||||
@@ -166,7 +166,7 @@ class BufferedSocketWrapper extends _events.EventEmitter {
|
|||||||
return this._buffer;
|
return this._buffer;
|
||||||
}
|
}
|
||||||
becomeSocket() {
|
becomeSocket() {
|
||||||
(0, _utils.assert)(!this._buffer.length);
|
(0, _assert.assert)(!this._buffer.length);
|
||||||
this._isSocket = true;
|
this._isSocket = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
6
tvapp2/node_modules/playwright-core/lib/server/artifact.js
generated
vendored
@@ -6,10 +6,10 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.Artifact = void 0;
|
exports.Artifact = void 0;
|
||||||
var _fs = _interopRequireDefault(require("fs"));
|
var _fs = _interopRequireDefault(require("fs"));
|
||||||
var _utils = require("../utils");
|
var _utils = require("../utils");
|
||||||
var _manualPromise = require("../utils/manualPromise");
|
|
||||||
var _instrumentation = require("./instrumentation");
|
|
||||||
var _errors = require("./errors");
|
var _errors = require("./errors");
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
var _instrumentation = require("./instrumentation");
|
||||||
|
var _manualPromise = require("../utils/isomorphic/manualPromise");
|
||||||
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
|
|||||||
4
tvapp2/node_modules/playwright-core/lib/server/bidi/bidiBrowser.js
generated
vendored
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.Network = exports.BidiBrowserContext = exports.BidiBrowser = void 0;
|
exports.Network = exports.BidiBrowserContext = exports.BidiBrowser = void 0;
|
||||||
var _eventsHelper = require("../../utils/eventsHelper");
|
var _eventsHelper = require("../utils/eventsHelper");
|
||||||
var _browser = require("../browser");
|
var _browser = require("../browser");
|
||||||
var _browserContext = require("../browserContext");
|
var _browserContext = require("../browserContext");
|
||||||
var network = _interopRequireWildcard(require("../network"));
|
var network = _interopRequireWildcard(require("../network"));
|
||||||
@@ -13,7 +13,7 @@ var _bidiNetworkManager = require("./bidiNetworkManager");
|
|||||||
var _bidiPage = require("./bidiPage");
|
var _bidiPage = require("./bidiPage");
|
||||||
var bidi = _interopRequireWildcard(require("./third_party/bidiProtocol"));
|
var bidi = _interopRequireWildcard(require("./third_party/bidiProtocol"));
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
|
|||||||
7
tvapp2/node_modules/playwright-core/lib/server/bidi/bidiChromium.js
generated
vendored
@@ -6,11 +6,12 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
exports.BidiChromium = void 0;
|
exports.BidiChromium = void 0;
|
||||||
var _os = _interopRequireDefault(require("os"));
|
var _os = _interopRequireDefault(require("os"));
|
||||||
var _utils = require("../../utils");
|
var _utils = require("../../utils");
|
||||||
|
var _ascii = require("../utils/ascii");
|
||||||
var _browserType = require("../browserType");
|
var _browserType = require("../browserType");
|
||||||
var _chromiumSwitches = require("../chromium/chromiumSwitches");
|
|
||||||
var _bidiBrowser = require("./bidiBrowser");
|
var _bidiBrowser = require("./bidiBrowser");
|
||||||
var _bidiConnection = require("./bidiConnection");
|
var _bidiConnection = require("./bidiConnection");
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
var _chromiumSwitches = require("../chromium/chromiumSwitches");
|
||||||
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -42,7 +43,7 @@ class BidiChromium extends _browserType.BrowserType {
|
|||||||
}
|
}
|
||||||
doRewriteStartupLog(error) {
|
doRewriteStartupLog(error) {
|
||||||
if (!error.logs) return error;
|
if (!error.logs) return error;
|
||||||
if (error.logs.includes('Missing X server')) error.logs = '\n' + (0, _utils.wrapInASCIIBox)(_browserType.kNoXServerRunningError, 1);
|
if (error.logs.includes('Missing X server')) error.logs = '\n' + (0, _ascii.wrapInASCIIBox)(_browserType.kNoXServerRunningError, 1);
|
||||||
// These error messages are taken from Chromium source code as of July, 2020:
|
// These error messages are taken from Chromium source code as of July, 2020:
|
||||||
// https://github.com/chromium/chromium/blob/70565f67e79f79e17663ad1337dc6e63ee207ce9/content/browser/zygote_host/zygote_host_impl_linux.cc
|
// https://github.com/chromium/chromium/blob/70565f67e79f79e17663ad1337dc6e63ee207ce9/content/browser/zygote_host/zygote_host_impl_linux.cc
|
||||||
if (!error.logs.includes('crbug.com/357670') && !error.logs.includes('No usable sandbox!') && !error.logs.includes('crbug.com/638180')) return error;
|
if (!error.logs.includes('crbug.com/357670') && !error.logs.includes('No usable sandbox!') && !error.logs.includes('crbug.com/638180')) return error;
|
||||||
|
|||||||
2
tvapp2/node_modules/playwright-core/lib/server/bidi/bidiConnection.js
generated
vendored
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
});
|
});
|
||||||
exports.kBrowserCloseMessageId = exports.BidiSession = exports.BidiConnection = void 0;
|
exports.kBrowserCloseMessageId = exports.BidiSession = exports.BidiConnection = void 0;
|
||||||
var _events = require("events");
|
var _events = require("events");
|
||||||
var _debugLogger = require("../../utils/debugLogger");
|
var _debugLogger = require("../utils/debugLogger");
|
||||||
var _helper = require("../helper");
|
var _helper = require("../helper");
|
||||||
var _protocolError = require("../protocolError");
|
var _protocolError = require("../protocolError");
|
||||||
/**
|
/**
|
||||||
|
|||||||
86
tvapp2/node_modules/playwright-core/lib/server/bidi/bidiExecutionContext.js
generated
vendored
@@ -4,13 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
exports.BidiExecutionContext = void 0;
|
exports.BidiExecutionContext = void 0;
|
||||||
|
exports.createHandle = createHandle;
|
||||||
|
var _utils = require("../../utils");
|
||||||
var _utilityScriptSerializers = require("../isomorphic/utilityScriptSerializers");
|
var _utilityScriptSerializers = require("../isomorphic/utilityScriptSerializers");
|
||||||
var js = _interopRequireWildcard(require("../javascript"));
|
var js = _interopRequireWildcard(require("../javascript"));
|
||||||
|
var dom = _interopRequireWildcard(require("../dom"));
|
||||||
var _bidiDeserializer = require("./third_party/bidiDeserializer");
|
var _bidiDeserializer = require("./third_party/bidiDeserializer");
|
||||||
var bidi = _interopRequireWildcard(require("./third_party/bidiProtocol"));
|
var bidi = _interopRequireWildcard(require("./third_party/bidiProtocol"));
|
||||||
var _bidiSerializer = require("./third_party/bidiSerializer");
|
var _bidiSerializer = require("./third_party/bidiSerializer");
|
||||||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||||||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -59,7 +62,7 @@ class BidiExecutionContext {
|
|||||||
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
||||||
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
||||||
}
|
}
|
||||||
async rawEvaluateHandle(expression) {
|
async rawEvaluateHandle(context, expression) {
|
||||||
const response = await this._session.send('script.evaluate', {
|
const response = await this._session.send('script.evaluate', {
|
||||||
expression,
|
expression,
|
||||||
target: this._target,
|
target: this._target,
|
||||||
@@ -73,20 +76,20 @@ class BidiExecutionContext {
|
|||||||
userActivation: true
|
userActivation: true
|
||||||
});
|
});
|
||||||
if (response.type === 'success') {
|
if (response.type === 'success') {
|
||||||
if ('handle' in response.result) return response.result.handle;
|
if ('handle' in response.result) return createHandle(context, response.result);
|
||||||
throw new js.JavaScriptErrorInEvaluate('Cannot get handle: ' + JSON.stringify(response.result));
|
throw new js.JavaScriptErrorInEvaluate('Cannot get handle: ' + JSON.stringify(response.result));
|
||||||
}
|
}
|
||||||
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
||||||
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
||||||
}
|
}
|
||||||
async evaluateWithArguments(functionDeclaration, returnByValue, utilityScript, values, objectIds) {
|
async evaluateWithArguments(functionDeclaration, returnByValue, utilityScript, values, handles) {
|
||||||
const response = await this._session.send('script.callFunction', {
|
const response = await this._session.send('script.callFunction', {
|
||||||
functionDeclaration,
|
functionDeclaration,
|
||||||
target: this._target,
|
target: this._target,
|
||||||
arguments: [{
|
arguments: [{
|
||||||
handle: utilityScript._objectId
|
handle: utilityScript._objectId
|
||||||
}, ...values.map(_bidiSerializer.BidiSerializer.serialize), ...objectIds.map(handle => ({
|
}, ...values.map(_bidiSerializer.BidiSerializer.serialize), ...handles.map(handle => ({
|
||||||
handle
|
handle: handle._objectId
|
||||||
}))],
|
}))],
|
||||||
resultOwnership: returnByValue ? undefined : bidi.Script.ResultOwnership.Root,
|
resultOwnership: returnByValue ? undefined : bidi.Script.ResultOwnership.Root,
|
||||||
// Necessary for the handle to be returned.
|
// Necessary for the handle to be returned.
|
||||||
@@ -100,19 +103,11 @@ class BidiExecutionContext {
|
|||||||
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
if (response.type === 'exception') throw new js.JavaScriptErrorInEvaluate(response.exceptionDetails.text + '\nFull val: ' + JSON.stringify(response.exceptionDetails));
|
||||||
if (response.type === 'success') {
|
if (response.type === 'success') {
|
||||||
if (returnByValue) return (0, _utilityScriptSerializers.parseEvaluationResultValue)(_bidiDeserializer.BidiDeserializer.deserialize(response.result));
|
if (returnByValue) return (0, _utilityScriptSerializers.parseEvaluationResultValue)(_bidiDeserializer.BidiDeserializer.deserialize(response.result));
|
||||||
const objectId = 'handle' in response.result ? response.result.handle : undefined;
|
return createHandle(utilityScript._context, response.result);
|
||||||
return utilityScript._context.createHandle({
|
|
||||||
objectId,
|
|
||||||
...response.result
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
throw new js.JavaScriptErrorInEvaluate('Unexpected response type: ' + JSON.stringify(response));
|
||||||
}
|
}
|
||||||
async getProperties(context, objectId) {
|
async getProperties(handle) {
|
||||||
const handle = this.createHandle(context, {
|
|
||||||
objectId
|
|
||||||
});
|
|
||||||
try {
|
|
||||||
const names = await handle.evaluate(object => {
|
const names = await handle.evaluate(object => {
|
||||||
const names = [];
|
const names = [];
|
||||||
const descriptors = Object.getOwnPropertyDescriptors(object);
|
const descriptors = Object.getOwnPropertyDescriptors(object);
|
||||||
@@ -126,27 +121,54 @@ class BidiExecutionContext {
|
|||||||
const map = new Map();
|
const map = new Map();
|
||||||
for (let i = 0; i < names.length; i++) map.set(names[i], values[i]);
|
for (let i = 0; i < names.length; i++) map.set(names[i], values[i]);
|
||||||
return map;
|
return map;
|
||||||
} finally {
|
|
||||||
handle.dispose();
|
|
||||||
}
|
}
|
||||||
}
|
async releaseHandle(handle) {
|
||||||
createHandle(context, jsRemoteObject) {
|
if (!handle._objectId) return;
|
||||||
const remoteObject = jsRemoteObject;
|
|
||||||
return new js.JSHandle(context, remoteObject.type, renderPreview(remoteObject), jsRemoteObject.objectId, remoteObjectValue(remoteObject));
|
|
||||||
}
|
|
||||||
async releaseHandle(objectId) {
|
|
||||||
await this._session.send('script.disown', {
|
await this._session.send('script.disown', {
|
||||||
target: this._target,
|
target: this._target,
|
||||||
handles: [objectId]
|
handles: [handle._objectId]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async rawCallFunction(functionDeclaration, arg) {
|
async nodeIdForElementHandle(handle) {
|
||||||
|
const shared = await this._remoteValueForReference({
|
||||||
|
handle: handle._objectId
|
||||||
|
});
|
||||||
|
// TODO: store sharedId in the handle.
|
||||||
|
if (!('sharedId' in shared)) throw new Error('Element is not a node');
|
||||||
|
return {
|
||||||
|
sharedId: shared.sharedId
|
||||||
|
};
|
||||||
|
}
|
||||||
|
async remoteObjectForNodeId(context, nodeId) {
|
||||||
|
const result = await this._remoteValueForReference(nodeId, true);
|
||||||
|
if (!('handle' in result)) throw new Error('Can\'t get remote object for nodeId');
|
||||||
|
return createHandle(context, result);
|
||||||
|
}
|
||||||
|
async contentFrameIdForFrame(handle) {
|
||||||
|
const contentWindow = await this._rawCallFunction('e => e.contentWindow', {
|
||||||
|
handle: handle._objectId
|
||||||
|
});
|
||||||
|
if ((contentWindow === null || contentWindow === void 0 ? void 0 : contentWindow.type) === 'window') return contentWindow.value.context;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
async frameIdForWindowHandle(handle) {
|
||||||
|
if (!handle._objectId) throw new Error('JSHandle is not a DOM node handle');
|
||||||
|
const contentWindow = await this._remoteValueForReference({
|
||||||
|
handle: handle._objectId
|
||||||
|
});
|
||||||
|
if (contentWindow.type === 'window') return contentWindow.value.context;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
async _remoteValueForReference(reference, createHandle) {
|
||||||
|
return await this._rawCallFunction('e => e', reference, createHandle);
|
||||||
|
}
|
||||||
|
async _rawCallFunction(functionDeclaration, arg, createHandle) {
|
||||||
const response = await this._session.send('script.callFunction', {
|
const response = await this._session.send('script.callFunction', {
|
||||||
functionDeclaration,
|
functionDeclaration,
|
||||||
target: this._target,
|
target: this._target,
|
||||||
arguments: [arg],
|
arguments: [arg],
|
||||||
resultOwnership: bidi.Script.ResultOwnership.Root,
|
// "Root" is necessary for the handle to be returned.
|
||||||
// Necessary for the handle to be returned.
|
resultOwnership: createHandle ? bidi.Script.ResultOwnership.Root : bidi.Script.ResultOwnership.None,
|
||||||
serializationOptions: {
|
serializationOptions: {
|
||||||
maxObjectDepth: 0,
|
maxObjectDepth: 0,
|
||||||
maxDomDepth: 0
|
maxDomDepth: 0
|
||||||
@@ -173,3 +195,11 @@ function remoteObjectValue(remoteObject) {
|
|||||||
if ('value' in remoteObject) return remoteObject.value;
|
if ('value' in remoteObject) return remoteObject.value;
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
function createHandle(context, remoteObject) {
|
||||||
|
if (remoteObject.type === 'node') {
|
||||||
|
(0, _utils.assert)(context instanceof dom.FrameExecutionContext);
|
||||||
|
return new dom.ElementHandle(context, remoteObject.handle);
|
||||||
|
}
|
||||||
|
const objectId = 'handle' in remoteObject ? remoteObject.handle : undefined;
|
||||||
|
return new js.JSHandle(context, remoteObject.type, renderPreview(remoteObject), objectId, remoteObjectValue(remoteObject));
|
||||||
|
}
|
||||||
7
tvapp2/node_modules/playwright-core/lib/server/bidi/bidiFirefox.js
generated
vendored
@@ -7,11 +7,12 @@ exports.BidiFirefox = void 0;
|
|||||||
var _os = _interopRequireDefault(require("os"));
|
var _os = _interopRequireDefault(require("os"));
|
||||||
var _path = _interopRequireDefault(require("path"));
|
var _path = _interopRequireDefault(require("path"));
|
||||||
var _utils = require("../../utils");
|
var _utils = require("../../utils");
|
||||||
|
var _ascii = require("../utils/ascii");
|
||||||
var _browserType = require("../browserType");
|
var _browserType = require("../browserType");
|
||||||
var _bidiBrowser = require("./bidiBrowser");
|
var _bidiBrowser = require("./bidiBrowser");
|
||||||
var _bidiConnection = require("./bidiConnection");
|
var _bidiConnection = require("./bidiConnection");
|
||||||
var _firefoxPrefs = require("./third_party/firefoxPrefs");
|
var _firefoxPrefs = require("./third_party/firefoxPrefs");
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||||
/**
|
/**
|
||||||
* Copyright (c) Microsoft Corporation.
|
* Copyright (c) Microsoft Corporation.
|
||||||
*
|
*
|
||||||
@@ -39,8 +40,8 @@ class BidiFirefox extends _browserType.BrowserType {
|
|||||||
doRewriteStartupLog(error) {
|
doRewriteStartupLog(error) {
|
||||||
if (!error.logs) return error;
|
if (!error.logs) return error;
|
||||||
// https://github.com/microsoft/playwright/issues/6500
|
// https://github.com/microsoft/playwright/issues/6500
|
||||||
if (error.logs.includes(`as root in a regular user's session is not supported.`)) error.logs = '\n' + (0, _utils.wrapInASCIIBox)(`Firefox is unable to launch if the $HOME folder isn't owned by the current user.\nWorkaround: Set the HOME=/root environment variable${process.env.GITHUB_ACTION ? ' in your GitHub Actions workflow file' : ''} when running Playwright.`, 1);
|
if (error.logs.includes(`as root in a regular user's session is not supported.`)) error.logs = '\n' + (0, _ascii.wrapInASCIIBox)(`Firefox is unable to launch if the $HOME folder isn't owned by the current user.\nWorkaround: Set the HOME=/root environment variable${process.env.GITHUB_ACTION ? ' in your GitHub Actions workflow file' : ''} when running Playwright.`, 1);
|
||||||
if (error.logs.includes('no DISPLAY environment variable specified')) error.logs = '\n' + (0, _utils.wrapInASCIIBox)(_browserType.kNoXServerRunningError, 1);
|
if (error.logs.includes('no DISPLAY environment variable specified')) error.logs = '\n' + (0, _ascii.wrapInASCIIBox)(_browserType.kNoXServerRunningError, 1);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
amendEnvironment(env, userDataDir, executable, browserArguments) {
|
amendEnvironment(env, userDataDir, executable, browserArguments) {
|
||||||
|
|||||||