Cookies 2

This commit is contained in:
Guillem Hernandez Sola
2026-05-19 11:02:44 +02:00
parent 5cf0b6e915
commit b319536e01

View File

@@ -19,25 +19,38 @@ pipeline {
} }
stages { stages {
// ─────────────────────────────────────────────
// 1. Checkout
// ─────────────────────────────────────────────
stage('Checkout Code') { stage('Checkout Code') {
steps { steps {
checkout scm checkout scm
} }
} }
// ─────────────────────────────────────────────
// 2. Python env + dependencies
// ─────────────────────────────────────────────
stage('Setup Python & Install Dependencies') { stage('Setup Python & Install Dependencies') {
steps { steps {
sh ''' sh '''
set -euxo pipefail set -euxo pipefail
# Create venv
python3 -m venv "${VENV_DIR}" python3 -m venv "${VENV_DIR}"
# Upgrade pip toolchain
"${VENV_DIR}/bin/python" -m pip install --upgrade pip wheel setuptools "${VENV_DIR}/bin/python" -m pip install --upgrade pip wheel setuptools
"${VENV_DIR}/bin/pip" install --cache-dir "${PIP_CACHE_DIR}" -U \ # Install all required packages
"${VENV_DIR}/bin/pip" install \
--cache-dir "${PIP_CACHE_DIR}" \
-U \
atproto \ atproto \
playwright \ playwright \
playwright-stealth \ playwright-stealth \
yt-dlp \
httpx \ httpx \
arrow \ arrow \
python-dotenv \ python-dotenv \
@@ -47,46 +60,95 @@ pipeline {
Pillow \ Pillow \
grapheme grapheme
# Verify required imports # ── Sanity checks ──────────────────────────────────
"${VENV_DIR}/bin/python" -c "import moviepy; print('moviepy OK')" "${VENV_DIR}/bin/python" -c "import moviepy; print('moviepy OK')"
"${VENV_DIR}/bin/python" -c "import atproto; print('atproto OK')" "${VENV_DIR}/bin/python" -c "import atproto; print('atproto OK')"
"${VENV_DIR}/bin/python" -c "import playwright; print('playwright OK')" "${VENV_DIR}/bin/python" -c "import playwright; print('playwright OK')"
"${VENV_DIR}/bin/python" -c "import playwright_stealth; print('playwright-stealth OK')" "${VENV_DIR}/bin/python" -c "import playwright_stealth; print('playwright_stealth OK')"
"${VENV_DIR}/bin/python" -c "import yt_dlp; print('yt_dlp OK')"
# Check FFmpeg # ── System tools ───────────────────────────────────
ffmpeg -version ffmpeg -version | head -1
ffprobe -version | head -1
# Install Playwright browser binaries only (no system deps — no sudo needed) # ── Playwright browser binaries (no sudo needed) ───
"${VENV_DIR}/bin/python" -m playwright install chromium "${VENV_DIR}/bin/python" -m playwright install chromium
''' '''
} }
} }
// ─────────────────────────────────────────────
// 3. Run the bot
// ─────────────────────────────────────────────
stage('Run Script') { stage('Run Script') {
steps { steps {
withCredentials([ withCredentials([
string(credentialsId: 'TIKTOK_JIJANTESFC_HANDLE', variable: 'TIKTOK_JIJANTESFC_HANDLE'), string(
string(credentialsId: 'BSKY_JIJANTESFC_HANDLE', variable: 'BSKY_JIJANTESFC_HANDLE'), credentialsId: 'TIKTOK_JIJANTESFC_HANDLE',
string(credentialsId: 'BSKY_JIJANTESFC_APP_PASSWORD', variable: 'BSKY_JIJANTESFC_APP_PASSWORD') variable: 'TIKTOK_JIJANTESFC_HANDLE'
),
string(
credentialsId: 'BSKY_JIJANTESFC_HANDLE',
variable: 'BSKY_JIJANTESFC_HANDLE'
),
string(
credentialsId: 'BSKY_JIJANTESFC_APP_PASSWORD',
variable: 'BSKY_JIJANTESFC_APP_PASSWORD'
),
// Secret File: upload tiktok_cookies.json once via
// Jenkins → Manage Credentials → Secret file
// ID: TIKTOK_COOKIES_JSON
file(
credentialsId: 'TIKTOK_COOKIES_JSON',
variable: 'TIKTOK_COOKIES_FILE'
)
]) { ]) {
sh ''' sh '''
set -euxo pipefail set -euxo pipefail
# Inject the secret cookies file into the workspace
cp "$TIKTOK_COOKIES_FILE" tiktok_cookies.json
"${VENV_DIR}/bin/python" tiktok2bsky.py \ "${VENV_DIR}/bin/python" tiktok2bsky.py \
--tiktok-handle "$TIKTOK_JIJANTESFC_HANDLE" \ --tiktok-handle "$TIKTOK_JIJANTESFC_HANDLE" \
--bsky-handle "$BSKY_JIJANTESFC_HANDLE" \ --bsky-handle "$BSKY_JIJANTESFC_HANDLE" \
--bsky-password "$BSKY_JIJANTESFC_APP_PASSWORD" \ --bsky-password "$BSKY_JIJANTESFC_APP_PASSWORD" \
--bsky-base-url https://eurosky.social \ --bsky-base-url https://eurosky.social \
--bsky-langs es --bsky-langs es \
--cookies-path tiktok_cookies.json
''' '''
} }
} }
} }
} }
// ─────────────────────────────────────────────
// Post actions
// ─────────────────────────────────────────────
post { post {
always { always {
archiveArtifacts artifacts: '*.log, *.json', allowEmptyArchive: true // Archive logs, state, and any CAPTCHA screenshots
archiveArtifacts(
artifacts: '*.log, *.json, screenshot_*.png',
allowEmptyArchive: true
)
// Clean up the injected cookies file from workspace
// so it is never left on disk between runs
sh 'rm -f tiktok_cookies.json || true'
}
success {
echo '✅ Sync cycle completed successfully.'
}
failure {
echo '❌ Sync cycle failed — check archived logs and screenshots.'
}
unstable {
echo '⚠️ Sync cycle finished with warnings.'
} }
} }
} }