1 Commits

Author SHA1 Message Date
ca7d142451 Add renovate.json
Some checks failed
FanslySync Build & Test / FanslySync Test Runner (push) Failing after 23m12s
2025-04-28 09:57:09 +00:00
6 changed files with 50 additions and 38 deletions

View File

@ -1,45 +1,46 @@
name: Release FanslySync
on:
workflow_dispatch:
inputs:
app-slug:
type: string
description: Slug of the application
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CN_APPLICATION: "fansly-creator-bot/fansly-sync"
CN_APP_SLUG: ${{ github.event.inputs.app-slug }}
jobs:
draft:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: create draft release
uses: crabnebula-dev/cloud-release@v0
uses: crabnebula-dev/cloud-release@v0.1.0
with:
command: release draft ${{ env.CN_APPLICATION }} --framework tauri
command: release draft ${{ env.CN_APP_SLUG }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}
build_desktop:
build:
needs: draft
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
- os: windows
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install stable toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
@ -47,35 +48,48 @@ jobs:
cache: true
- name: install Linux dependencies
if: matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.1
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: build Tauri app for Windows, Linux
- name: Install x86_64-apple-darwin for mac and build FanslySync binaries
if: matrix.os == 'macos-latest'
run: |
rustup target add x86_64-apple-darwin
npm i
npm run tauri build -- --target x86_64-apple-darwin
npm run tauri build -- --target aarch64-apple-darwin
env:
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
- name: build FanslySync app for Windows, Linux
if: matrix.os != 'macos-latest'
run: |
npm ci
npm exec tauri build
npm i
npm run tauri build
env:
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
- name: upload assets
uses: crabnebula-dev/cloud-release@v0
uses: crabnebula-dev/cloud-release@v0.1.0
with:
command: release upload ${{ env.CN_APPLICATION }} --framework tauri
command: release upload ${{ env.CN_APP_SLUG }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}
path: ./src-tauri
publish:
needs: [build_desktop]
runs-on: ubuntu-22.04
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: publish release
uses: crabnebula-dev/cloud-release@v0
uses: crabnebula-dev/cloud-release@v0.1.0
with:
command: release publish ${{ env.CN_APPLICATION }} --framework tauri
command: release publish ${{ env.CN_APP_SLUG }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}

3
renovate.json Normal file
View File

@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}

View File

@ -117,19 +117,15 @@ impl Fansly {
.await?;
if !response.status().is_success() {
log::error!("[sync::process::get_profile] No successful response from API. Setting error state.");
eprintln!("[sync::process::get_profile] No successful response from API. Setting error state.");
return Err(response.error_for_status().unwrap_err());
} else {
log::info!("[sync::process::get_profile] Successfully fetched profile data.");
println!("[sync::process::get_profile] Got successful response from API.");
}
let profile = response
.json::<FanslyBaseResponse<FanslyAccountResponse>>()
.await?;
// Show the profile data
log::info!("[sync::process::get_profile] Profile data: {:?}", profile);
Ok(profile)
}
@ -161,12 +157,12 @@ impl Fansly {
let response = self.client.get(url).headers(headers).send().await?;
if !response.status().is_success() {
log::error!("[sync::process::fetch_followers] No successful response from API. Setting error state.");
eprintln!("[sync::process::fetch_followers] No successful response from API. Setting error state.");
return Err(response.error_for_status().unwrap_err());
}
let followers: FanslyBaseResponseList<FanslyFollowersResponse> = response.json().await?;
log::info!(
println!(
"[sync::process::fetch_followers] Got {} followers from API.",
followers.response.len()
);
@ -427,7 +423,7 @@ impl Fansly {
.await;
// Every 10 requests, sleep for a bit to avoid rate limiting
if total_requests % 50 == 0 {
if total_requests % 10 == 0 {
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
}
@ -467,7 +463,7 @@ impl Fansly {
.await;
// Every 10 requests, sleep for a bit to avoid rate limiting
if total_requests % 50 == 0 {
if total_requests % 10 == 0 {
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
}

View File

@ -89,7 +89,7 @@ pub struct Account {
pub id: String,
pub email: String,
pub username: String,
pub display_name: Option<String>,
pub display_name: String,
pub flags: i64,
pub version: i64,
pub created_at: i64,

View File

@ -53,7 +53,7 @@ export interface AccountInfoResponse {
export interface AccountInfo {
id: string;
username: string;
displayName: string | null;
displayName: string;
flags: number;
version: number;
createdAt: number;
@ -76,6 +76,8 @@ export interface AccountInfo {
banner: Avatar;
postLikes: number;
streaming: Streaming;
subscriptionTiers: SubscriptionTier[];
profileAccess: boolean;
}
export interface SubscriptionTier {

View File

@ -54,9 +54,6 @@
unknown
];
if (err || !me?.success) {
if (err) {
console.error('Error fetching account info:', err);
}
validationErrors.fanslyToken =
'Authentication failed. Please check your token and try again.';
step = 1;