Files
modrinth/packages/app-lib/src/state/instances/commands/launch_context.rs
T
734720e11e feat: instances v2 (#6431)
* feat: base of instances v2

* feat: use old profiles with compat layer

* prototype: instances v2

* fix: install_from using profile

* fix: skins migration fix

* fix: frontend still using profile path

* fix: add update proj multiselect guard

* fix: cargo fmt

* fix: content missing fields

* feat: break up app-lib/api/instance.rs

* fix: check_content_updates mismatch

* fix: updater modal cleanup w/new structure

* feat: better update all handling

* fix: remove preview_update_all

* fix: feedback on bulk update + lint

* fix: rem transitions

* fix: change to jsonb

* feat: app db backup after update

* fix: lint

* fix: sqlx prepare + use sqlx macros

* fix: lint

* fix: bugs

* feat: defuck the installing process up

* fix: bug of hell

* fix: shear

* fix: fmt

* fix: install progress spacing + change mc/content/overrides to bytes

* fix: lint

* fix: prepr

* fix: navtabs anim not working in app

* fix: worlds.vue improvements + browse page fixes

* feat: optimise queries + adapter fns

* fix: lint

* fix: lint

* feat: shared modrinth-content-management crate (#6469)

* feat: disable warnings setting

* feat: add instances shortcuts (#6329)

* Add modrinth://launch deep link to start a profile

Support external profile launching via modrinth://launch/{profile_path} for integrations such as Stream Deck.

* Change route to /launch/profile/{id} for future extensibility

* fix: ensure profile path is url decoded

* fix: URL-decode profile path from deep link

* fix: use urlencoding crate for URL decoding

* feat: implement app instance shortcuts

* feat: change windows shortcut creation to use windows api instead

* feat: implement creating a shortcut launching world/server

* format

* fmt

* fix multiline inline tables

* pnpm prepr

* feat: move create shortcut to last item

* refactor: split up shortcuts.rs for individual platforms

* refactor: turn profile launch url into url type

* use string literal and add safety comment

* pt2

* refactor: rename anything that's profile into instance

* update mac shortcut

---------

Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>

---------

Co-authored-by: Truman Gao <106889354+tdgao@users.noreply.github.com>
Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>
2026-06-25 21:19:29 +00:00

168 lines
3.4 KiB
Rust

use crate::state::InstanceInstallStage;
use crate::state::instances::{
InstanceLaunchContext, adapters::sqlite::instance_rows,
};
use chrono::{DateTime, Utc};
use sqlx::SqlitePool;
pub(crate) async fn get_instance_launch_context(
instance_id: &str,
pool: &SqlitePool,
) -> crate::Result<Option<InstanceLaunchContext>> {
instance_rows::get_instance_launch_context(instance_id, pool).await
}
pub(crate) async fn set_instance_install_stage(
instance_id: &str,
install_stage: InstanceInstallStage,
pool: &SqlitePool,
) -> crate::Result<()> {
let install_stage = install_stage.as_str();
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instances
SET install_stage = ?, modified = ?
WHERE id = ?
",
install_stage,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}
pub(crate) async fn set_applied_content_set_loader_version(
instance_id: &str,
loader_version: Option<&str>,
pool: &SqlitePool,
) -> crate::Result<()> {
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instance_content_sets
SET loader_version = ?, modified = ?
WHERE id = (
SELECT applied_content_set_id
FROM instances
WHERE id = ?
)
",
loader_version,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}
pub(crate) async fn set_applied_content_set_protocol_version(
instance_id: &str,
protocol_version: Option<u32>,
pool: &SqlitePool,
) -> crate::Result<()> {
let protocol_version = protocol_version.map(i64::from);
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instance_content_sets
SET protocol_version = ?, modified = ?
WHERE id = (
SELECT applied_content_set_id
FROM instances
WHERE id = ?
)
",
protocol_version,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}
pub(crate) async fn set_instance_last_played(
instance_id: &str,
last_played: DateTime<Utc>,
pool: &SqlitePool,
) -> crate::Result<()> {
let last_played = last_played.timestamp();
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instances
SET last_played = ?, modified = ?
WHERE id = ?
",
last_played,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}
pub(crate) async fn add_instance_recent_playtime(
instance_id: &str,
seconds: u64,
pool: &SqlitePool,
) -> crate::Result<()> {
let seconds = seconds as i64;
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instances
SET recent_time_played = recent_time_played + ?, modified = ?
WHERE id = ?
",
seconds,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}
pub(crate) async fn mark_instance_playtime_submitted(
instance_id: &str,
recent_time_played: u64,
pool: &SqlitePool,
) -> crate::Result<()> {
let recent_time_played = recent_time_played as i64;
let modified = Utc::now().timestamp();
sqlx::query!(
"
UPDATE instances
SET
submitted_time_played = submitted_time_played + ?,
recent_time_played = 0,
modified = ?
WHERE id = ?
",
recent_time_played,
modified,
instance_id,
)
.execute(pool)
.await?;
Ok(())
}