Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(default-flatpaks): version 2 (nushell) #336

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft

Conversation

xynydev
Copy link
Member

@xynydev xynydev commented Sep 22, 2024

This PR is a draft of the rewrite of default-flatpaks to support multiple repositories, pioneer Nushell-based modules, and rethink the config structure.

Current version implements only the build-time part. Plan is to write to /usr/share/bluebuild/default-flatpaks/configuration.json at build time and read from there in the post-boot parts.

The recipe format is still up for debate. I didn't end up using anything in #146 for now. The current approach is basically the same as my original suggestion, except that one module call can install Flatpaks in multiple scopes from multiple repositories. The terminology still feels off. Feel free to suggest improvements.

Also feel free to look at the source code to see if you mostly understand it and if it is more readable than the v1 source.

The syntax highlighting on GitHub might be a bit weird, though, because I had to make the file end in .sh due to our current system hardcoding that in. I'm not sure what we could do about that, maybe make it possible to omit the file extension entirely.

Testing

recipe:

modules:
  - type: containerfile
    snippets:
      - "COPY --from=ghcr.io/blue-build/nushell-image:0.98.0 /nu/nu /usr/bin/nu"
  - source: ghcr.io/blue-build/modules:nu-flatpaks
    type: default-flatpaks
    installations:
      - notify: true
        scope: user
        repo:
          title: Flathub (user)
        install:
          - io.gitlab.leesonwai.Sums
          - io.github.nokse22.minitext
      - notify: true
        scope: system
        install:
          - xyz.splashmapper.Splash
          - xyz.safeworlds.hiit

example output:
image

this version just sets up the config file but nothing to read it and install the flatpaks after boot
@xynydev xynydev self-assigned this Sep 22, 2024
@fiftydinar
Copy link
Collaborator

Regarding code structure, it looks cleaner, simpler & I generally like it.

Only thing which clutters things very much is echo-ing in different colours. So message is harder to see in code.
Also, we use colours in bluebuild cli for start & end of the module, so maybe it's better to use message colours only when necessarry for better visualization (f.e. red colour for error message).

Is JSON as a config format necessarry? I find .yml format cleaner. As you said, nu can be used to read/modify YAML files.

Also printing the message for every checked FlatHub flatpak ID is too much imo, it should only print success message once & print error when ID is wrong.

Recipe format looks good to me, except maybe instead of installations, modifications can be used.

Thanks for starting this PR, I'll look into learning Nushell, so I can also contribute

@xynydev
Copy link
Member Author

xynydev commented Sep 23, 2024

Regarding code structure, it looks cleaner, simpler & I generally like it.
...
Thanks for starting this PR, I'll look into learning Nushell, so I can also contribute

Nice!

Only thing which clutters things very much is echo-ing in different colours. So message is harder to see in code.
...
Also printing the message for every checked FlatHub flatpak ID is too much imo, it should only print success message once & print error when ID is wrong.

Ok, maybe I went a bit overboard with that. I'll fix that in the next commits.

Sure

Also, we use colours in bluebuild cli for start & end of the module, so maybe it's better to use message colours only when necessarry for better visualization (f.e. red colour for error message).

Do we? I haven't seen that.

Is JSON as a config format necessarry? I find .yml format cleaner. As you said, nu can be used to read/modify YAML files.

It's not a config format for humans, it won't be writeable as it will exist only in the /usr/share/ directory. I thought that JSON would be better as a serialization format for data written and read by computers only. We can change that though if you wish, it's not a big deal.

Recipe format looks good to me, except maybe instead of installations, modifications can be used.

Those "modifications" can't actually modify each other, though... I chose "installations", because it IMO reflects that each entry means one set of Flatpaks installed from a specific repo to a specific scope. I guess it feels redundant with the install: key though. We might consider renaming that to applications: or something.

@fiftydinar
Copy link
Collaborator

fiftydinar commented Sep 23, 2024

Also, we use colours in bluebuild cli for start & end of the module, so maybe it's better to use message colours only when necessarry for better visualization (f.e. red colour for error message).

Do we? I haven't seen that.

image

We can change that though if you wish, it's not a big deal.

It's easier to read for users who want to know what's modified in the image, hence the reason I insist on it.
But it's not a big deal.

Those "modifications" can't actually modify each other, though... I chose "installations", because it IMO reflects that each entry means one set of Flatpaks installed from a specific repo to a specific scope. I guess it feels redundant with the install: key though. We might consider renaming that to applications: or something.

default-configuration:?

@xynydev
Copy link
Member Author

xynydev commented Sep 26, 2024

default-configuration:?

I don't really like that either, because it's two-parted and does not feel like it makes sense for a list of separate configurations. Maybe configurations: would make sense?

@fiftydinar
Copy link
Collaborator

Maybe configurations: would make sense?

Looks good to me

@fiftydinar
Copy link
Collaborator

fiftydinar commented Oct 10, 2024

Looking at flatpak repo, I see that it got support for specifying system repos in /usr/share/flatpak/remotes.d/.

I think that we can specify repos there, with disadvantage that it can't be removed by local-user (or advantage, depending on how you look at it). In that case, /etc/flatpak/remotes.d/ can be used.

Shipping disabled repos OOTB is not supported though, so Fedora does it in a different way (just saying if wondering why Fedora doesn't utilize remotes.d).

This would need to be tested though.

@xynydev
Copy link
Member Author

xynydev commented Oct 11, 2024

@fiftydinar

Latest commit contains initial implementation of the post-boot parts. There might be some overlooked functionality. You should look through especially the TODOs in the system setup script, if you want to implement some part of this PR.

@xynydev
Copy link
Member Author

xynydev commented Oct 11, 2024

I tried to search for information about flatpak/remotes.d/ but couldn't find anything substantial. We or you shall look into it again later.

Copy link
Collaborator

@fiftydinar fiftydinar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not all points addressed (will think later about notify-send), but here's my initial feedback

modules/default-flatpaks/v2/default-flatpaks.sh Outdated Show resolved Hide resolved
modules/default-flatpaks/v2/post-boot/user-flatpak-setup Outdated Show resolved Hide resolved
modules/default-flatpaks/v2/post-boot/system-flatpak-setup Outdated Show resolved Hide resolved
@fiftydinar
Copy link
Collaborator

fiftydinar commented Oct 14, 2024

I merged the changes I mentioned in review to default-flatpaks-v1. They are even more improved.

So please look there for my updated suggestions.

@fiftydinar
Copy link
Collaborator

fiftydinar commented Oct 16, 2024

@xynydev
About making it easier for users to disable the module, I agree. That can be maybe implemented in default-flatpaks-v1 even.
But, what is the definition of module disablement by the user to you?
Disabling systemd services from running? Or additionally, erasing any modifications that the module did (installation of flatpaks)?

About not implementing flatpak removal & by that, user-config functionality for default-flatpaks-v2, I have an opinion that this should be ideally implemented when we have the solution for issue #188, but since we don't have a solution for that, I think that I agree with you on this one when looking from general angle, even if I subjectively find this feature useful.

@xynydev
Copy link
Member Author

xynydev commented Nov 10, 2024

About making it easier for users to disable the module, I agree. That can be maybe implemented in default-flatpaks-v1 even.
But, what is the definition of module disablement by the user to you?
Disabling systemd services from running? Or additionally, erasing any modifications that the module did (installation of flatpaks)?

I think my definition is just disabling the systemd services. But it may be documented that a user could cat the file with the Flatpak configurations to see if there's any there that they want to undo manually. We could also provide scripts in libexec (that downstreams could hook up to ujust or something if they want to) that would undo all the changes automatically I guess.

Ideally the same scripts that are used as systemd services could also be run manually from the terminal. Those scripts would also be able to confirm the changes (including deletions, if we implement that) before doing them. There's possibilities there, one is allowing image maintainers to set how deletions are done and what changes need user confirmation, how that can be given, etc.

@xynydev
Copy link
Member Author

xynydev commented Nov 10, 2024

will think later about notify-send

If there's no clean way, we could just say that it's unsupported. It seems you solved this in v1 somehow, though.

@fiftydinar
Copy link
Collaborator

If there's no clean way, we could just say that it's unsupported. It seems you solved this in v1 somehow, though.

Well, you can implement it the way I did in v1, or if you think it's too hackable, drop it. I think it is the only way to reliably show notifications.

@fiftydinar
Copy link
Collaborator

fiftydinar commented Nov 10, 2024

Our current setup is to only put what's necessary in /usr/share/bluebuild/${module}/. And that's configuration.

Currently, we additionally put binaries & systemd services + timers there. I think that we should copy them directly to their appropriate locations instead of having them in /usr/share/bluebuild/${module}/ location.

What do you think?

@xynydev
Copy link
Member Author

xynydev commented Nov 10, 2024

Sure, sounds reasonable. I initially tried to do with everything being symlinks from there, but that ended up not being functional.

@xynydev
Copy link
Member Author

xynydev commented Nov 12, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants