Shared Module
allsky_shared
¶
allsky_shared.py
Part of allsky postprocess.py modules. https://github.com/AllskyTeam/allsky
This module is a common dumping ground for shared variables and functions used by various Allsky components.
It provides helpers for:
- Reading environment variables and Allsky configuration
- Managing small on-disk "databases" used as debug stores
- Filesystem utilities (paths, permissions, extra-data files)
- Database connection helpers and automatic purge routines
- Overlay "extra data" JSON formatting and persistence
convert_lat_lon(input)
¶
Helper for converting latitude/longitude strings.
This wrapper calls the legacy :func:convertLatLon. New code should
use this snake_case name; the camelCase function is kept so existing
callers continue to work.
See :func:convertLatLon for details.
Source code in scripts/modules/allsky_shared.py
478 479 480 481 482 483 484 485 486 487 488 | |
count_starts_in_image(image, mask_file_name=None)
¶
Detect stars in an image using Photutils' DAOStarFinder.
The image is converted to grayscale if needed, optionally masked with
:func:mask_image, and then processed with sigma-clipped statistics
and DAOStarFinder to locate star centroids.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
ndarray
|
Input image (grayscale or BGR). |
required |
mask_file_name
|
str | None
|
Optional mask file name to apply before detection. |
None
|
Returns:
| Type | Description |
|---|---|
|
tuple[list[tuple[float, float]], numpy.ndarray]: A tuple containing:
|
Source code in scripts/modules/allsky_shared.py
5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 | |
create_cardinal(degrees)
¶
Convert a wind direction in degrees into a cardinal point.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
degrees
|
Direction in degrees (0–360). North is 0°/360°, east is 90°, and so on. |
required |
Returns:
| Type | Description |
|---|---|
|
A string containing one of the 16-point compass directions |
|
|
(e.g., |
|
|
cannot be interpreted. |
Source code in scripts/modules/allsky_shared.py
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | |
create_device(import_name, class_name, bus_number, i2c_address='')
¶
Instantiate an I2C device class on a given bus.
The device class is imported dynamically and initialised with an
Adafruit Blinka busio.I2C object constructed from a known set of
SCL/SDA pins for the requested bus number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
import_name
|
str
|
Module path to import (e.g. |
required |
class_name
|
str
|
Name of the device class in that module. |
required |
bus_number
|
int
|
I2C bus number (e.g. 1, 3, 4, 5, 6). |
required |
i2c_address
|
str
|
Optional I2C address string (e.g. |
''
|
Returns:
| Name | Type | Description |
|---|---|---|
Any |
An instance of the requested device class. |
Raises:
| Type | Description |
|---|---|
ImportError
|
If the module or class cannot be imported. |
ValueError
|
If no pin mapping exists for the given bus number. |
Source code in scripts/modules/allsky_shared.py
4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 | |
delete_extra_data(fileName)
¶
Preferred wrapper for removing extra data files.
This is the underscore version and should be used in new code. It simply
delegates to :func:deleteExtraData, which contains the legacy
implementation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fileName
|
str
|
File name to remove from all configured extra data directories. |
required |
Source code in scripts/modules/allsky_shared.py
3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 | |
get_all_allsky_variables(show_empty=True, module='', indexed=False, raw=False)
¶
Retrieve all known Allsky variables via the ALLSKYVARIABLES helper.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
show_empty
|
bool
|
Whether to include variables that have no value. Defaults to True. |
True
|
module
|
str
|
Optional module filter, depending on the ALLSKYVARIABLES implementation. |
''
|
indexed
|
bool
|
If True, variables may be returned in an indexed form. |
False
|
raw
|
bool
|
If True, return raw data structures from ALLSKYVARIABLES. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Whatever is returned by |
Source code in scripts/modules/allsky_shared.py
4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 | |
get_allsky_variable(variable)
¶
Look up a single Allsky variable from environment or extra-data files.
The lookup order is:
- Environment via :func:
getEnvironmentVariable. - JSON extra-data files in all extra-data directories.
- Text extra-data files in all extra-data directories.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
variable
|
str
|
The variable name to retrieve. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
The variable value if found, otherwise None. |
Source code in scripts/modules/allsky_shared.py
4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 | |
get_allsky_version()
¶
Convenience helper to retrieve and parse the Allsky version.
The version file path is taken from the ALLSKY_VERSION_FILE
environment variable and passed to :func:parse_version.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed version info as returned by :func: |
Source code in scripts/modules/allsky_shared.py
5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 | |
get_api_url()
¶
Resolve the Allsky API base URL from the environment.
If ALLSKY_API_URL is not present in the current environment, this
helper calls :func:setupForCommandLine to load variables from the
usual variables.json file, and then re-reads the environment.
Returns:
| Name | Type | Description |
|---|---|---|
str |
The API base URL from |
Source code in scripts/modules/allsky_shared.py
3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 | |
get_camera_gain()
¶
Get the current camera gain.
For Raspberry Pi cameras, this reads the AnalogueGain value from the
Pi metadata. For other camera types it uses the AS_GAIN environment
variable.
If no gain can be determined, 0.0 is returned.
Returns:
| Name | Type | Description |
|---|---|---|
float |
Camera gain value. |
Source code in scripts/modules/allsky_shared.py
4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 | |
get_camera_type()
¶
Get the configured camera type from the environment.
Returns:
| Name | Type | Description |
|---|---|---|
str |
Lowercase camera type string (e.g. |
Source code in scripts/modules/allsky_shared.py
4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 | |
get_ecowitt_data(api_key, app_key, mac_address, temp_unitid=1, pressure_unitid=3)
¶
Fetch live weather data from the remote Ecowitt cloud API.
If all of the required credentials are non-empty, the function builds an API URL and attempts to parse a range of fields such as outdoor and indoor temperatures, humidity, rainfall, wind, pressure, and lightning.
All fields are returned in a nested dict with sensible defaults of None.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
api_key
|
str
|
Ecowitt API key. |
required |
app_key
|
str
|
Ecowitt application key. |
required |
mac_address
|
str
|
Device MAC address registered with Ecowitt. |
required |
temp_unitid
|
int
|
Temperature unit ID expected by the API. Defaults to 1. |
1
|
pressure_unitid
|
int
|
Pressure unit ID expected by the API. Defaults to 3. |
3
|
Returns:
| Type | Description |
|---|---|
|
dict | str: On success, a nested dictionary of parsed values. On HTTP error, a descriptive error string may be returned instead. |
Source code in scripts/modules/allsky_shared.py
4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 | |
get_ecowitt_local_data(address, password=None)
¶
Fetch live weather data directly from a local Ecowitt gateway.
This variant talks to the gateway's local HTTP API and parses a variety of metrics such as temperatures, humidity, rainfall, wind, pressure and lightning. Values are returned in a nested dict with None defaults.
Units are parsed from the API response and temperature values are converted to Celsius when needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
str
|
Base URL or IP address of the Ecowitt gateway. |
required |
password
|
str
|
Reserved for password-protected gateways (currently unused). |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Nested dictionary of parsed values. |
Source code in scripts/modules/allsky_shared.py
4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 | |
get_environment_variable(name, fatal=False, debug=False, try_allsky_debug_file=False)
¶
Helper for reading an environment variable.
This is the modern, snake_case wrapper around the legacy
:func:getEnvironmentVariable implementation. New code should call this
function rather than the camelCase version.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Name of the environment variable to read. |
required | |
fatal
|
If True and the variable cannot be resolved, the process will terminate with an error. |
False
|
|
debug
|
If True, values are read from the debug database instead of the real environment. |
False
|
|
try_allsky_debug_file
|
When False (default), the function will fall
back to loading variables from |
False
|
Returns:
| Type | Description |
|---|---|
|
The resolved value as a string, or None if not found (and |
|
|
is False). |
Source code in scripts/modules/allsky_shared.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
get_extra_dir(current_only=False)
¶
Helper to get the "extra data" directory or directories.
This simply calls :func:getExtraDir. New code should use this
snake_case name.
Source code in scripts/modules/allsky_shared.py
1582 1583 1584 1585 1586 1587 1588 1589 | |
get_flows_with_module(module_name)
¶
Scan module flow files and return those containing a given module.
Only postprocessing_*.json files that are not debug variants are
considered. Files that fail to parse are quietly ignored.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
module_name
|
str
|
Name of the module to search for in the flow definitions. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Mapping of filename to parsed JSON content for flows that contain the given module. |
Source code in scripts/modules/allsky_shared.py
4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 | |
get_gpio_pin(gpio_pin, pi=None, show_errors=False)
¶
Read the logical state of a GPIO pin via the Allsky API (legacy alias).
This definition simply calls :func:read_gpio_pin. It is kept for
backward compatibility with existing code that expects get_gpio_pin
to return a pin value rather than a board pin object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpio_pin
|
int | str
|
Pin identifier understood by the Allsky API. |
required |
pi
|
Any
|
Unused placeholder kept for interface compatibility. |
None
|
show_errors
|
bool
|
Currently unused; kept for interface compatibility. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if the GPIO is reported as |
Source code in scripts/modules/allsky_shared.py
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 | |
get_gpio_pin_details(pin)
¶
Get the CircuitPython board pin object for a given numeric pin.
This is a convenience wrapper around :func:getGPIOPin and should be
used by new code.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pin
|
int
|
Numeric pin index (0–27) corresponding to a board pin. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
The matching |
Source code in scripts/modules/allsky_shared.py
3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 | |
get_hass_sensor_value(ha_url, ha_ltt, ha_sensor)
¶
Query a Home Assistant sensor and return its numeric state.
A GET request is sent to the Home Assistant REST API using the supplied long-lived token. The sensor's state is parsed as a float on success.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ha_url
|
str
|
Base URL of the Home Assistant instance (e.g. |
required |
ha_ltt
|
str
|
Long-lived access token for Home Assistant. |
required |
ha_sensor
|
str
|
Entity ID of the sensor (e.g. |
required |
Returns:
| Type | Description |
|---|---|
|
float | None: The sensor state as a float, or None if the sensor cannot be read. |
Source code in scripts/modules/allsky_shared.py
4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 | |
get_lat_lon()
¶
Read latitude and longitude from settings and return them as floats.
The settings latitude and longitude may be stored in a variety
of formats supported by :func:convert_lat_lon (for example,
51.5N or -0.13). If a value is empty, the corresponding
return value is None.
Returns:
| Type | Description |
|---|---|
|
Tuple of |
|
|
None if not defined. |
Source code in scripts/modules/allsky_shared.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | |
get_pi_info(info)
¶
Query simple hardware details about the Raspberry Pi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
info
|
One of the predefined constants:
|
required |
Returns:
| Type | Description |
|---|---|
|
The requested value, or None if |
|
|
supported constant. |
Source code in scripts/modules/allsky_shared.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | |
get_rpi_meta_value(key)
¶
Read a single value from the Raspberry Pi camera metadata file.
The metadata file format can be either JSON or simple key=value text.
This helper tries JSON first and falls back to line-based parsing.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
Metadata key to retrieve. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
The value if found, or 0 if the file is missing, unreadable, or the key is not present. |
Source code in scripts/modules/allsky_shared.py
4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 | |
get_rpi_metadata()
¶
Determine the path to the Raspberry Pi camera metadata file.
The metadata path is extracted from the extraargs in the main
settings file if a --metadata argument is present. If no explicit
path is found, a default of metadata.txt in the current directory
is used.
Returns:
| Name | Type | Description |
|---|---|---|
str |
Path to the metadata file. |
Source code in scripts/modules/allsky_shared.py
4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 | |
get_secrets(keys)
¶
Load one or more secrets from env.json in ALLSKYPATH.
The file is expected to contain a flat JSON object mapping key names to secret values. Only the requested keys are returned; missing keys are silently ignored.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys
|
Union[str, List[str]]
|
Either a single key (string) or a list of key names to fetch. |
required |
Returns:
| Type | Description |
|---|---|
Union[str, Dict[str, str], None]
|
If a single key was requested, the value as a string (or None if |
Union[str, Dict[str, str], None]
|
it is not present). |
Union[str, Dict[str, str], None]
|
If multiple keys were requested, a |
Union[str, Dict[str, str], None]
|
its value. Keys that are not found are omitted from the mapping. |
Union[str, Dict[str, str], None]
|
If the file cannot be read or parsed, returns None (single key) or |
Union[str, Dict[str, str], None]
|
an empty dict (multiple keys). |
Source code in scripts/modules/allsky_shared.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | |
get_sensor_temperature()
¶
Get the current sensor temperature for the active camera.
For Raspberry Pi cameras, this reads the SensorTemperature value
from the Pi metadata. For other camera types it uses the
AS_TEMPERATURE_C environment variable.
If no temperature can be determined, 0.0 is returned.
Returns:
| Name | Type | Description |
|---|---|---|
float |
Sensor temperature in °C. |
Source code in scripts/modules/allsky_shared.py
4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 | |
get_setting(settingName)
¶
Helper for reading a setting from the loaded settings JSON.
This wraps the legacy :func:getSetting and should be used in new
code. See :func:getSetting for details.
Source code in scripts/modules/allsky_shared.py
758 759 760 761 762 763 764 765 | |
get_value_from_debug_data(key)
¶
Look up a key in the overlay debug file.
This function is used when running in debug mode to retrieve values that would normally be supplied via environment variables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
Name of the value to retrieve. |
required |
Returns:
| Type | Description |
|---|---|
str | None
|
The corresponding value as a string with whitespace removed, or |
str | None
|
None if the file does not exist, cannot be read, or the key is |
str | None
|
not present. |
Source code in scripts/modules/allsky_shared.py
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 | |
load_extra_data_file(file_name, type='')
¶
Load an extra data file from one or more ALLSKY_EXTRA directories.
This helper looks for the given file name in all configured extra-data
directories (via :func:get_extra_dir). If it finds a readable file,
it will attempt to parse it according to its extension.
Currently only JSON files are parsed. Text files are recognised but not yet processed (the block is a placeholder).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_name
|
str
|
Name of the extra data file to load (e.g. |
required |
type
|
str
|
Force the file type. If set to |
''
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed JSON data if successful; otherwise an empty dict. |
Source code in scripts/modules/allsky_shared.py
3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 | |
load_json_file(path)
¶
Load a JSON file and return its parsed contents.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the JSON file. |
required |
Returns:
| Type | Description |
|---|---|
|
The parsed JSON data (dict or list). If the file does not exist, |
|
|
cannot be read, or contains invalid JSON, an empty dict is |
|
|
returned. |
Source code in scripts/modules/allsky_shared.py
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 | |
load_mask(mask_file_name, target_image)
¶
Load a grayscale mask image and resize it to match a target image.
The mask is loaded from ALLSKY_OVERLAY/images/<mask_file_name> and
converted to a float mask in the range [0, 1]. If the mask dimensions do
not match the target image, it is resized accordingly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mask_file_name
|
str
|
Name of the mask file to load. |
required |
target_image
|
ndarray
|
Target image whose shape is used for resizing. |
required |
Returns:
| Type | Description |
|---|---|
|
numpy.ndarray | None: Float mask array in the range [0, 1], or None if the mask could not be loaded. |
Source code in scripts/modules/allsky_shared.py
5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 | |
load_secrets_file()
¶
Load environment-style secrets from env.json in the Allsky home directory.
Any JSON decoding errors are treated as an empty file.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Dict[str, Any]
|
Parsed secrets dictionary, or an empty dict if missing/invalid. |
Source code in scripts/modules/allsky_shared.py
4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 | |
log(level, text, preventNewline=False, exitCode=None, sendToAllsky=False)
¶
Very simple method to log data if in verbose mode
Log a message to stdout (depending on log level) and optionally forward it to the Allsky WebUI.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
level
|
Numeric log level. The message is printed if the global
|
required | |
text
|
The message to log. |
required | |
preventNewline
|
If True, the message is printed without a trailing newline. |
False
|
|
exitCode
|
If not None, the process exits with this code after logging the message. |
None
|
|
sendToAllsky
|
If True, the message is also passed to the Allsky WebUI via
|
False
|
Notes
The function does not raise exceptions. If the WebUI message script fails, the error is silently ignored.
Source code in scripts/modules/allsky_shared.py
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 | |
mask_image(image, mask_file_name='', log_info=False)
¶
Apply a mask to an image, returning a masked copy.
The mask is loaded via :func:load_mask and applied either directly
(for grayscale images) or per-channel (for colour images). The result
is clipped and converted back to uint8.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
ndarray
|
Input image (grayscale or BGR). |
required |
mask_file_name
|
str
|
Name of the mask image file. If empty, no masking is performed and None is returned. |
''
|
log_info
|
bool
|
If True, log a message at level 4 when a mask is applied. |
False
|
Returns:
| Type | Description |
|---|---|
|
numpy.ndarray | None: Masked image, or None if no mask is applied or an error occurs. |
Source code in scripts/modules/allsky_shared.py
5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 | |
normalise_on_off(value)
¶
Normalise an on/off style value to the strings "on" or "off".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Any
|
Raw value (e.g. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
|
Source code in scripts/modules/allsky_shared.py
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 | |
obfuscate_password(password)
¶
Obfuscate a password, leaving the first and last characters visible.
This is used when logging configuration without exposing full credentials.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
password
|
str
|
Original password string. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Obfuscated password. Very short passwords are completely masked. |
Source code in scripts/modules/allsky_shared.py
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 | |
read_environment_variable(name)
¶
Read an environment variable without any Allsky-specific fallback.
This is a very thin wrapper around os.environ access and does not
attempt to pull values from variables.json or any debug store.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Environment variable name. |
required |
Returns:
| Type | Description |
|---|---|
|
The value as a string, or None if the variable is not defined. |
Source code in scripts/modules/allsky_shared.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
read_gpio_pin(gpio_pin, pi=None, show_errors=False)
¶
Read the logical state of a GPIO pin via the Allsky HTTP API.
A GET request is sent to the Allsky API, and the returned JSON is
expected to contain a "value" field with the string "on" or
"off".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpio_pin
|
int | str
|
Pin identifier understood by the Allsky API. |
required |
pi
|
Any
|
Unused placeholder for compatibility with other GPIO interfaces. |
None
|
show_errors
|
bool
|
Currently unused; errors are propagated via exceptions. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if the GPIO value is |
Raises:
| Type | Description |
|---|---|
HTTPError
|
If the HTTP request fails (via |
Source code in scripts/modules/allsky_shared.py
3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 | |
run_python_script(script, args=None, cwd=None)
¶
Run a Python script using the same interpreter as the current process (e.g., inside a venv).
This function ensures the target script is executed with the current Python interpreter
(sys.executable), so that packages installed in the active virtual environment are available.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
script
|
str
|
Path to the Python script to execute. |
required |
args
|
Optional[List[str]]
|
Additional arguments to pass to the script. Defaults to None. |
None
|
cwd
|
Optional[str]
|
Working directory in which to run the script. If None, uses the current directory. |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[int, str]
|
Tuple[int, str]: A tuple containing: - return code (int): The process's exit code, or 127 if the script is not found. - output (str): Combined standard output and standard error from the script, stripped of trailing whitespace. |
Example
code, output = run_python_script("myscript.py", ["--option", "value"]) print(code, output) 0 Script ran successfully
Source code in scripts/modules/allsky_shared.py
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 | |
run_script(script)
¶
Run an arbitrary executable script and capture its output.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
script
|
str
|
Path to the script or binary to execute. |
required |
Returns:
| Type | Description |
|---|---|
int
|
Tuple |
str
|
|
Tuple[int, str]
|
|
Source code in scripts/modules/allsky_shared.py
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 | |
save_extra_data(file_name='', extra_data={}, source='', structure={}, custom_fields={}, event='postcapture')
¶
Persist "extra data" for use by Allsky overlay modules.
This function writes the provided data to a file inside the current
ALLSKY_EXTRA directory (resolved via get_extra_dir(True)), using a
temporary file in ALLSKY_TMP and an atomic move to avoid partial writes.
It ensures the destination directory exists and is web-server accessible,
applies final permissions, and (optionally) updates a database when the
structure indicates one is in use.
Behavior
1) Ensure extra data directory exists (checkAndCreateDirectory) and
enable web access (create_file_web_server_access).
2) If the target filename ends with .json, normalize/shape the payload
via format_extra_data_json(extra_data, structure, source).
3) Merge any custom_fields into the payload (overrides existing keys).
4) Serialize to JSON (pretty-printed) and write to a temp file created in
ALLSKY_TMP, then atomically move it to the final path.
5) Set mode 0o770 and call set_permissions() for owner/group alignment.
6) If structure contains a "database" key, call update_database().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_name
|
str
|
File name (with extension) to write into the extra data directory. |
''
|
extra_data
|
Any
|
Data to persist. If |
{}
|
source
|
str
|
Context or origin tag passed to the JSON formatter. Default: ''. |
''
|
structure
|
dict
|
Schema/metadata guiding JSON formatting and optional DB updates.
If it contains |
{}
|
custom_fields
|
dict
|
Extra key/values to inject into the payload before serialization.
Keys here override the same keys in |
{}
|
event
|
str
|
Event type (e.g. |
'postcapture'
|
Returns:
| Type | Description |
|---|---|
|
None |
Side Effects
- Creates/updates a file in ALLSKY_EXTRA.
- Applies filesystem permissions to the output file.
- May perform a database update if requested by
structure.
Error Handling
Any exception is (currently) allowed to propagate only into the surrounding code; earlier versions logged and swallowed errors.
Source code in scripts/modules/allsky_shared.py
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 | |
save_json_file(data, filename)
¶
Save a dictionary to a JSON file with pretty formatting.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict
|
Dictionary to save. Must be JSON-serializable. |
required |
filename
|
Union[str, Path]
|
Path or string of the file to write. |
required |
Returns:
| Type | Description |
|---|---|
None
|
True if the file could be written successfully, False otherwise. |
Source code in scripts/modules/allsky_shared.py
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 | |
set_gpio_pin(gpio_pin, state, name='', pi=None, show_errors=False)
¶
Set the logical state of a GPIO pin via the Allsky HTTP API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpio_pin
|
int | str
|
Pin identifier understood by the Allsky API. |
required |
state
|
Any
|
Desired state; normalised using :func: |
required |
pi
|
Any
|
Unused placeholder for compatibility with other GPIO interfaces. |
None
|
show_errors
|
bool
|
Currently unused; errors are propagated via exceptions. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed JSON response from the API. |
Raises:
| Type | Description |
|---|---|
HTTPError
|
If the HTTP request fails (via |
Source code in scripts/modules/allsky_shared.py
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 | |
set_last_run(module)
¶
Helper to record that a module has just run.
This function simply calls the legacy :func:setLastRun. New code
should use this name; the camelCase variant is kept for older code.
Source code in scripts/modules/allsky_shared.py
449 450 451 452 453 454 455 456 | |
set_pwm(gpio_pin, duty_cycle, name='', pi=None, show_errors=False)
¶
Set PWM output on a GPIO pin via the Allsky HTTP API.
This helper posts the requested duty cycle (and a fixed frequency of 1000Hz) to the API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpio_pin
|
int | str
|
Pin identifier understood by the Allsky API. |
required |
duty_cycle
|
int | float
|
Duty cycle value; interpreted by the remote API. |
required |
pi
|
Any
|
Unused placeholder for compatibility with other GPIO interfaces. |
None
|
show_errors
|
bool
|
Currently unused; errors are propagated via exceptions. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed JSON response from the API. |
Raises:
| Type | Description |
|---|---|
HTTPError
|
If the HTTP request fails (via |
Source code in scripts/modules/allsky_shared.py
3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 | |
should_run(module, period)
¶
Helper to check whether a module should run again.
This wrapper simply calls the legacy :func:shouldRun. New code
should use this snake_case name; the camelCase version is retained
for backwards compatibility.
See :func:shouldRun for details.
Source code in scripts/modules/allsky_shared.py
402 403 404 405 406 407 408 409 410 411 412 | |
stop_pwm(gpio_pin)
¶
Stop PWM output on a GPIO pin via the Allsky HTTP API.
This is implemented by sending a PWM request with 0% duty cycle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpio_pin
|
int | str
|
Pin identifier understood by the Allsky API. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed JSON response from the API. |
Raises:
| Type | Description |
|---|---|
HTTPError
|
If the HTTP request fails (via |
Source code in scripts/modules/allsky_shared.py
3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 | |
to_bool(v)
¶
Normalise a value to a boolean, supporting several truthy strings.
This version differs slightly from the earlier :func:to_bool in this
file: it treats "true", "1", "yes" and "y" (case-
insensitive) as True, and everything else as False. It is used when
normalising configuration dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
v
|
bool | str | None
|
Input value. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
Normalised boolean value. |
Source code in scripts/modules/allsky_shared.py
4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 | |
update_setting(values)
¶
Helper to update one or more settings.
This wraps the legacy :func:updateSetting. New code should use
this snake_case name.
Source code in scripts/modules/allsky_shared.py
835 836 837 838 839 840 841 842 | |