1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
use crate::CACHEDIR;
use anyhow::{anyhow, Context, Result};
use ijson::IString;
use log::{info, debug};
use serde::Deserialize;
use std::{
collections::{HashMap, HashSet},
fs::{self, File},
io::{BufReader, Write},
path::Path,
process::Command,
};
use super::{channel, flakes};
pub fn nixospkgs() -> Result<String> {
let versionout = Command::new("nixos-version").output()?;
let numver = &String::from_utf8(versionout.stdout)?[0..5];
let version = if numver == "22.11" {
"unstable"
} else {
numver
};
if !std::path::Path::new(&*CACHEDIR).exists() {
std::fs::create_dir_all(&*CACHEDIR)?;
}
let verurl = format!("https://channels.nixos.org/nixos-{}", version);
let resp = reqwest::blocking::get(&verurl)?;
let latestnixosver = resp
.url()
.path_segments()
.context("No path segments found")?
.last()
.context("Last element not found")?
.to_string();
info!("latestnixosver: {}", latestnixosver);
if let Ok(prevver) = fs::read_to_string(&format!("{}/nixospkgs.ver", &*CACHEDIR)) {
if prevver == latestnixosver
&& Path::new(&format!("{}/nixospkgs.json", &*CACHEDIR)).exists()
{
debug!("No new version of NixOS found");
return Ok(format!("{}/nixospkgs.json", &*CACHEDIR));
}
}
let url = format!(
"https://channels.nixos.org/nixos-{}/packages.json.br",
version
);
let client = reqwest::blocking::Client::builder().brotli(true).build()?;
let mut resp = client.get(url).send()?;
if resp.status().is_success() {
let mut out = File::create(&format!("{}/nixospkgs.json", &*CACHEDIR))?;
resp.copy_to(&mut out)?;
File::create(format!("{}/nixospkgs.ver", &*CACHEDIR))?
.write_all(latestnixosver.as_bytes())?;
} else {
return Err(anyhow!("Failed to download latest packages.json"));
}
Ok(format!("{}/nixospkgs.json", &*CACHEDIR))
}
pub fn nixosoptions() -> Result<String> {
let versionout = Command::new("nixos-version").output()?;
let numver = &String::from_utf8(versionout.stdout)?[0..5];
let version = if numver == "22.11" {
"unstable"
} else {
numver
};
if !std::path::Path::new(&*CACHEDIR).exists() {
std::fs::create_dir_all(&*CACHEDIR)?;
}
let verurl = format!("https://channels.nixos.org/nixos-{}", version);
let resp = reqwest::blocking::get(&verurl)?;
let latestnixosver = resp
.url()
.path_segments()
.context("No path segments found")?
.last()
.context("Last element not found")?
.to_string();
info!("latestnixosver: {}", latestnixosver);
if let Ok(prevver) = fs::read_to_string(&format!("{}/nixosoptions.ver", &*CACHEDIR)) {
if prevver == latestnixosver
&& Path::new(&format!("{}/nixosoptions.json", &*CACHEDIR)).exists()
{
debug!("No new version of NixOS found");
return Ok(format!("{}/nixosoptions.json", &*CACHEDIR));
}
}
let url = format!(
"https://channels.nixos.org/nixos-{}/options.json.br",
version
);
let client = reqwest::blocking::Client::builder().brotli(true).build()?;
let mut resp = client.get(url).send()?;
if resp.status().is_success() {
let mut out = File::create(&format!("{}/nixosoptions.json", &*CACHEDIR))?;
resp.copy_to(&mut out)?;
File::create(format!("{}/nixosoptions.ver", &*CACHEDIR))?
.write_all(latestnixosver.as_bytes())?;
} else {
return Err(anyhow!("Failed to download latest options.json"));
}
Ok(format!("{}/nixosoptions.json", &*CACHEDIR))
}
#[derive(Debug, Deserialize)]
struct NixosPkg {
version: IString,
}
pub ( super ) enum NixosType {
Flake,
Legacy,
}
pub ( super ) fn getnixospkgs(paths: &[&str], nixos: NixosType) -> Result<HashMap<String, String>> {
let pkgs = {
let mut allpkgs: HashSet<String> = HashSet::new();
for path in paths {
if let Ok(filepkgs) = nix_editor::read::getarrvals(
&fs::read_to_string(path)?,
"environment.systemPackages",
) {
let filepkgset = filepkgs.into_iter().collect::<HashSet<_>>();
allpkgs = allpkgs.union(&filepkgset).map(|x| x.to_string()).collect();
}
}
allpkgs
};
let pkgsjson: HashMap<String, NixosPkg> =
serde_json::from_reader(BufReader::new(File::open(match nixos {
NixosType::Flake => flakes::flakespkgs()?,
NixosType::Legacy => channel::legacypkgs()?,
})?))?;
let mut out = HashMap::new();
for pkg in pkgs {
if let Some(p) = pkgsjson.get(&pkg) {
out.insert(pkg, p.version.as_str().to_string());
}
}
Ok(out)
}