Skip to content

Commit

Permalink
✨feat: CT8 login support and Telegram Bot notifications (#5)
Browse files Browse the repository at this point in the history
* Update  .github/workflows/login.yml

* Update index.html

* Add node dependencies: package.json

* Rename login.js -> main.js

* Rename serv00-ssh/Auto_connect_SSH.py -> main.py

* Update README_CN.md && README.md

BREAKING CHANGE:ACCOUNTS_JSON Variables

Close issue(#5): [能不能增加上CT8啊](#5)
  • Loading branch information
lopins committed Nov 3, 2024
1 parent 77dd8ce commit cc93fd0
Show file tree
Hide file tree
Showing 14 changed files with 984 additions and 151 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/login.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,43 @@
name: Login
name: Serv00/CT8 Login Tasks

on:
workflow_dispatch:

schedule:
- cron: '7 12 */7 * *'
- cron: "14 13 */10 * *" # 每月1号开始,每10天运行一次,运行时间为13:14
# push:
# paths-ignore:
# - "LICENSE"
# - "README.md"
# - "README_**"
# - "README-**"
# branches:
# - main

env:
ACCOUNTS_JSON: ${{ secrets.ACCOUNTS_JSON }}
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}

jobs:
login:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create accounts.json
run: echo "$ACCOUNTS_JSON" > accounts.json

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install dependencies
run: npm install puppeteer
run: npm install puppeteer axios

- name: Create accounts.json
run: echo "$ACCOUNTS_JSON" > accounts.json

- name: Login to website
- name: Login into Serv00/CT8
run: |
set -e
xvfb-run --server-args="-screen 0 1280x1024x24" node login.js
xvfb-run --server-args="-screen 0 1366x768x32" node main.js
168 changes: 168 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
accounts.json

.vercel
node_modules/
package-lock.json

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
41 changes: 20 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,32 @@
<a href="README_CN.md">中文</a> | <strong>English</strong>
</div>

<img src="https://www.serv00.com/static/ct8/img/logo.jpg" alt="serv00 logo" width="100" height="100" align="right" />
<img src="https://www.serv00.com/static/ct8/img/logo.jpg" alt="serv00 logo" width="50" height="50" align="right" />

<div align="center">

<h1> serv00-auto-scripts </h1>

<p>Serv00 - Free Host Auto Renewal (Automatic SSH and PM2) and Other Scripts</p>
<p>Serv00/CT8 - Free Host Auto Renewal (Automatic SSH and PM2) and Other Scripts</p>

</div>

<hr/>

<div align="center">
<a href="https://panel.serv00.com/">Demo</a> |
<a href="https://www.serv00.com/">Official</a> |
<a href="https://docs.serv00.com/">Docs</a> |
<a href="https://forum.serv00.com/">Forum</a>
<a href="https://panel.serv00.com/">serv00 Demo</a> |
<a href="https://www.serv00.com/">serv00 Official</a> |
<a href="https://docs.serv00.com/">serv00 Docs</a> |
<a href="https://forum.serv00.com/">serv00 Forum</a>
</div>

<hr/>

<div align="center">
<a href="https://panel.ct8.pl/">CT8 Demo</a> |
<a href="https://www.ct8.pl/">CT8 Official</a> |
<a href="https://wiki.mydevil.net/">CT8 Docs</a> |
<a href="https://forum.ct8.pl/">CT8 Forum</a>
</div>

<hr/>
Expand All @@ -33,25 +42,15 @@

``` json
[
{ "username": "qishihuang", "password": "zhanghao", "panelnum": "3" },
{ "username": "zhaogao", "password": "daqinzhonggong", "panelnum": "1" },
{ "username": "heiheihei", "password": "shaibopengke", "panelnum": "2" }
{ "username": "qishihuang", "password": "zhanghao", "panel": "panel3.serv00.com" },
{ "username": "zhaogao", "password": "daqinzhonggong", "panel": "panel1.serv00.com" },
{ "username": "heiheihei", "password": "shaibopengke", "panel": "panel.ct8.pl" }
]
```

> The `panelnum` parameter is the panel number, which is the `*` value in the `panel*.serv00.com` from the registration email you received.
## Contributions

|Name|Homepage|Content|
| :------------: | :------------: | :------------: |
|linzjian666|https://github.com/linzjian666|Add support for multiple panels|

## Reference Information
> The `panel` parameter is the panel number, which is the value in the `panel*.serv00.com` from the registration email you received.
| Name |Source|Address|
| :------------: | :------------: | :------------: |
|Limkon|Github|https://github.com/Limkon|
4. **Optional** Creating two parameters `Secret` for the Telegram bot: `TELEGRAM_BOT_TOKEN` and `TELEGRAM_CHAT_ID`

## Unable to SSH Login

Expand Down
Loading

0 comments on commit cc93fd0

Please sign in to comment.