Compare commits
	
		
			1 Commits
		
	
	
		
			v0.2.5
			...
			5a7c65741b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 5a7c65741b | 
@@ -1,23 +0,0 @@
 | 
			
		||||
name: CI
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches:
 | 
			
		||||
      - main
 | 
			
		||||
  pull_request: {}
 | 
			
		||||
jobs:
 | 
			
		||||
  ci:
 | 
			
		||||
    name: CI
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: https://gitea.com/actions/checkout@v3
 | 
			
		||||
      - uses: https://github.com/actions-rs/toolchain@v1
 | 
			
		||||
        with:
 | 
			
		||||
          toolchain: stable
 | 
			
		||||
          profile: minimal
 | 
			
		||||
          components: clippy, rustfmt
 | 
			
		||||
      - name: clippy
 | 
			
		||||
        run: cargo clippy --all-targets --all-features -- -D warnings
 | 
			
		||||
      - name: formatting
 | 
			
		||||
        run: cargo fmt --check
 | 
			
		||||
      - name: test
 | 
			
		||||
        run: cargo test --release
 | 
			
		||||
@@ -1,49 +0,0 @@
 | 
			
		||||
name: Release
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    tags:
 | 
			
		||||
      - "v*.*.*"
 | 
			
		||||
jobs:
 | 
			
		||||
  release-crate:
 | 
			
		||||
    name: Publish to crates.io
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: https://gitea.com/actions/checkout@v3
 | 
			
		||||
      - uses: https://github.com/actions-rs/toolchain@v1
 | 
			
		||||
        with:
 | 
			
		||||
          toolchain: stable
 | 
			
		||||
          profile: minimal
 | 
			
		||||
      - name: Publish release
 | 
			
		||||
        run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}
 | 
			
		||||
  release-docker:
 | 
			
		||||
    name: Publish to Docker Hub
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: install docker
 | 
			
		||||
        run: |
 | 
			
		||||
          apt update
 | 
			
		||||
          DEBIAN_FRONTEND=noninteractive apt install -y docker.io
 | 
			
		||||
          apt clean
 | 
			
		||||
      - uses: https://gitea.com/actions/checkout@v3
 | 
			
		||||
      - name: docker meta
 | 
			
		||||
        id: meta
 | 
			
		||||
        uses: https://github.com/docker/metadata-action@v4
 | 
			
		||||
        with:
 | 
			
		||||
          images: |
 | 
			
		||||
            kelnos/bebot
 | 
			
		||||
          tags: |
 | 
			
		||||
            type=semver,pattern={{version}}
 | 
			
		||||
            type=semver,pattern={{major}}.{{minor}}
 | 
			
		||||
            type=semver,pattern={{major}}
 | 
			
		||||
      - uses: https://gitea.com/docker/setup-qemu-action@v2
 | 
			
		||||
      - uses: https://gitea.com/docker/setup-buildx-action@v2
 | 
			
		||||
      - uses: https://gitea.com/docker/login-action@v2
 | 
			
		||||
        with:
 | 
			
		||||
          username: ${{ secrets.DOCKERHUB_USERNAME }}
 | 
			
		||||
          password: ${{ secrets.DOCKERHUB_PASSWORD }}
 | 
			
		||||
      - uses: https://gitea.com/docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
 | 
			
		||||
        with:
 | 
			
		||||
          context: .
 | 
			
		||||
          push: true
 | 
			
		||||
          tags: ${{ steps.meta.outputs.tags }}
 | 
			
		||||
          labels: ${{ steps.meta.output.labels }}
 | 
			
		||||
							
								
								
									
										3452
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										3452
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										46
									
								
								Cargo.toml
									
									
									
									
									
								
							
							
						
						
									
										46
									
								
								Cargo.toml
									
									
									
									
									
								
							@@ -1,47 +1,19 @@
 | 
			
		||||
[package]
 | 
			
		||||
name = "bebot"
 | 
			
		||||
version = "0.2.5"
 | 
			
		||||
description = "Gitlab webhook bot that publishes events to Matrix"
 | 
			
		||||
license = "AGPL-3.0"
 | 
			
		||||
authors = [
 | 
			
		||||
    "Brian J. Tarricone <brian@tarricone.org>",
 | 
			
		||||
]
 | 
			
		||||
homepage = "https://git.spurint.org/brian/bebot"
 | 
			
		||||
repository = "https://git.spurint.org/brian/bebot"
 | 
			
		||||
version = "0.1.0"
 | 
			
		||||
edition = "2021"
 | 
			
		||||
categories = [
 | 
			
		||||
    "development-tools",
 | 
			
		||||
]
 | 
			
		||||
keywords = [
 | 
			
		||||
    "gitlab",
 | 
			
		||||
    "matrix",
 | 
			
		||||
    "bot",
 | 
			
		||||
    "webhook",
 | 
			
		||||
]
 | 
			
		||||
exclude = [
 | 
			
		||||
    ".gitea/*",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
			
		||||
 | 
			
		||||
[dependencies]
 | 
			
		||||
anyhow = "1"
 | 
			
		||||
axum = "0.8.4"
 | 
			
		||||
axum-extra = { version = "0.10.1", features = ["typed-header"] }
 | 
			
		||||
chrono = { version = "0.4", features = ["serde"] }
 | 
			
		||||
constant_time_eq = "0.4"
 | 
			
		||||
dateparser = "0.2"
 | 
			
		||||
env_logger = "0.11"
 | 
			
		||||
futures = "0.3"
 | 
			
		||||
http = "1.3"
 | 
			
		||||
constant_time_eq = "0.3"
 | 
			
		||||
env_logger = "0.10"
 | 
			
		||||
http = "0.2"
 | 
			
		||||
log = { version = "0.4", features = ["std"] }
 | 
			
		||||
matrix-sdk = { version = "0.13", features = ["anyhow", "markdown", "rustls-tls"], default-features = false }
 | 
			
		||||
mime = "0.3"
 | 
			
		||||
mime-sniffer = "0.1"
 | 
			
		||||
mime_guess2 = "2"
 | 
			
		||||
quick-xml = { version = "0.38", features = ["serialize"] }
 | 
			
		||||
regex = "1"
 | 
			
		||||
reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "gzip", "rustls-tls-native-roots", "system-proxy"] }
 | 
			
		||||
matrix-sdk = { version = "0.6", features = ["anyhow", "markdown", "rustls-tls"], default-features = false }
 | 
			
		||||
serde = { version = "1", features = ["derive"] }
 | 
			
		||||
serde_json = "1"
 | 
			
		||||
serde_regex = "1"
 | 
			
		||||
serde_yaml = "0.9"
 | 
			
		||||
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros", "time"] }
 | 
			
		||||
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
 | 
			
		||||
warp = "0.3"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										14
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								Dockerfile
									
									
									
									
									
								
							@@ -1,16 +1,8 @@
 | 
			
		||||
FROM rust:1.88-slim-bookworm AS builder
 | 
			
		||||
FROM rust:1.72-slim-bullseye AS builder
 | 
			
		||||
 | 
			
		||||
WORKDIR /bebot-build
 | 
			
		||||
 | 
			
		||||
# Build and cache dependencies
 | 
			
		||||
COPY Cargo.toml Cargo.lock ./
 | 
			
		||||
RUN mkdir -p src && echo 'fn main() {}' > src/main.rs
 | 
			
		||||
RUN cargo build --release
 | 
			
		||||
 | 
			
		||||
# Build and link our app
 | 
			
		||||
RUN rm -rf src
 | 
			
		||||
COPY src ./src
 | 
			
		||||
RUN touch src/main.rs
 | 
			
		||||
COPY . ./
 | 
			
		||||
RUN cargo build --release
 | 
			
		||||
 | 
			
		||||
FROM debian:bookworm-slim
 | 
			
		||||
@@ -19,4 +11,4 @@ WORKDIR /bebot
 | 
			
		||||
 | 
			
		||||
COPY --from=builder /bebot-build/target/release/bebot ./
 | 
			
		||||
 | 
			
		||||
ENTRYPOINT [ "/bebot/bebot", "/bebot/config/bebot.yaml" ]
 | 
			
		||||
ENTRYPOINT [ "/bebot/bebot", "/bebot/config/bebot/yaml" ]
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										661
									
								
								LICENSE
									
									
									
									
									
								
							
							
						
						
									
										661
									
								
								LICENSE
									
									
									
									
									
								
							@@ -1,661 +0,0 @@
 | 
			
		||||
                    GNU AFFERO GENERAL PUBLIC LICENSE
 | 
			
		||||
                       Version 3, 19 November 2007
 | 
			
		||||
 | 
			
		||||
 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 | 
			
		||||
 Everyone is permitted to copy and distribute verbatim copies
 | 
			
		||||
 of this license document, but changing it is not allowed.
 | 
			
		||||
 | 
			
		||||
                            Preamble
 | 
			
		||||
 | 
			
		||||
  The GNU Affero General Public License is a free, copyleft license for
 | 
			
		||||
software and other kinds of works, specifically designed to ensure
 | 
			
		||||
cooperation with the community in the case of network server software.
 | 
			
		||||
 | 
			
		||||
  The licenses for most software and other practical works are designed
 | 
			
		||||
to take away your freedom to share and change the works.  By contrast,
 | 
			
		||||
our General Public Licenses are intended to guarantee your freedom to
 | 
			
		||||
share and change all versions of a program--to make sure it remains free
 | 
			
		||||
software for all its users.
 | 
			
		||||
 | 
			
		||||
  When we speak of free software, we are referring to freedom, not
 | 
			
		||||
price.  Our General Public Licenses are designed to make sure that you
 | 
			
		||||
have the freedom to distribute copies of free software (and charge for
 | 
			
		||||
them if you wish), that you receive source code or can get it if you
 | 
			
		||||
want it, that you can change the software or use pieces of it in new
 | 
			
		||||
free programs, and that you know you can do these things.
 | 
			
		||||
 | 
			
		||||
  Developers that use our General Public Licenses protect your rights
 | 
			
		||||
with two steps: (1) assert copyright on the software, and (2) offer
 | 
			
		||||
you this License which gives you legal permission to copy, distribute
 | 
			
		||||
and/or modify the software.
 | 
			
		||||
 | 
			
		||||
  A secondary benefit of defending all users' freedom is that
 | 
			
		||||
improvements made in alternate versions of the program, if they
 | 
			
		||||
receive widespread use, become available for other developers to
 | 
			
		||||
incorporate.  Many developers of free software are heartened and
 | 
			
		||||
encouraged by the resulting cooperation.  However, in the case of
 | 
			
		||||
software used on network servers, this result may fail to come about.
 | 
			
		||||
The GNU General Public License permits making a modified version and
 | 
			
		||||
letting the public access it on a server without ever releasing its
 | 
			
		||||
source code to the public.
 | 
			
		||||
 | 
			
		||||
  The GNU Affero General Public License is designed specifically to
 | 
			
		||||
ensure that, in such cases, the modified source code becomes available
 | 
			
		||||
to the community.  It requires the operator of a network server to
 | 
			
		||||
provide the source code of the modified version running there to the
 | 
			
		||||
users of that server.  Therefore, public use of a modified version, on
 | 
			
		||||
a publicly accessible server, gives the public access to the source
 | 
			
		||||
code of the modified version.
 | 
			
		||||
 | 
			
		||||
  An older license, called the Affero General Public License and
 | 
			
		||||
published by Affero, was designed to accomplish similar goals.  This is
 | 
			
		||||
a different license, not a version of the Affero GPL, but Affero has
 | 
			
		||||
released a new version of the Affero GPL which permits relicensing under
 | 
			
		||||
this license.
 | 
			
		||||
 | 
			
		||||
  The precise terms and conditions for copying, distribution and
 | 
			
		||||
modification follow.
 | 
			
		||||
 | 
			
		||||
                       TERMS AND CONDITIONS
 | 
			
		||||
 | 
			
		||||
  0. Definitions.
 | 
			
		||||
 | 
			
		||||
  "This License" refers to version 3 of the GNU Affero General Public License.
 | 
			
		||||
 | 
			
		||||
  "Copyright" also means copyright-like laws that apply to other kinds of
 | 
			
		||||
works, such as semiconductor masks.
 | 
			
		||||
 | 
			
		||||
  "The Program" refers to any copyrightable work licensed under this
 | 
			
		||||
License.  Each licensee is addressed as "you".  "Licensees" and
 | 
			
		||||
"recipients" may be individuals or organizations.
 | 
			
		||||
 | 
			
		||||
  To "modify" a work means to copy from or adapt all or part of the work
 | 
			
		||||
in a fashion requiring copyright permission, other than the making of an
 | 
			
		||||
exact copy.  The resulting work is called a "modified version" of the
 | 
			
		||||
earlier work or a work "based on" the earlier work.
 | 
			
		||||
 | 
			
		||||
  A "covered work" means either the unmodified Program or a work based
 | 
			
		||||
on the Program.
 | 
			
		||||
 | 
			
		||||
  To "propagate" a work means to do anything with it that, without
 | 
			
		||||
permission, would make you directly or secondarily liable for
 | 
			
		||||
infringement under applicable copyright law, except executing it on a
 | 
			
		||||
computer or modifying a private copy.  Propagation includes copying,
 | 
			
		||||
distribution (with or without modification), making available to the
 | 
			
		||||
public, and in some countries other activities as well.
 | 
			
		||||
 | 
			
		||||
  To "convey" a work means any kind of propagation that enables other
 | 
			
		||||
parties to make or receive copies.  Mere interaction with a user through
 | 
			
		||||
a computer network, with no transfer of a copy, is not conveying.
 | 
			
		||||
 | 
			
		||||
  An interactive user interface displays "Appropriate Legal Notices"
 | 
			
		||||
to the extent that it includes a convenient and prominently visible
 | 
			
		||||
feature that (1) displays an appropriate copyright notice, and (2)
 | 
			
		||||
tells the user that there is no warranty for the work (except to the
 | 
			
		||||
extent that warranties are provided), that licensees may convey the
 | 
			
		||||
work under this License, and how to view a copy of this License.  If
 | 
			
		||||
the interface presents a list of user commands or options, such as a
 | 
			
		||||
menu, a prominent item in the list meets this criterion.
 | 
			
		||||
 | 
			
		||||
  1. Source Code.
 | 
			
		||||
 | 
			
		||||
  The "source code" for a work means the preferred form of the work
 | 
			
		||||
for making modifications to it.  "Object code" means any non-source
 | 
			
		||||
form of a work.
 | 
			
		||||
 | 
			
		||||
  A "Standard Interface" means an interface that either is an official
 | 
			
		||||
standard defined by a recognized standards body, or, in the case of
 | 
			
		||||
interfaces specified for a particular programming language, one that
 | 
			
		||||
is widely used among developers working in that language.
 | 
			
		||||
 | 
			
		||||
  The "System Libraries" of an executable work include anything, other
 | 
			
		||||
than the work as a whole, that (a) is included in the normal form of
 | 
			
		||||
packaging a Major Component, but which is not part of that Major
 | 
			
		||||
Component, and (b) serves only to enable use of the work with that
 | 
			
		||||
Major Component, or to implement a Standard Interface for which an
 | 
			
		||||
implementation is available to the public in source code form.  A
 | 
			
		||||
"Major Component", in this context, means a major essential component
 | 
			
		||||
(kernel, window system, and so on) of the specific operating system
 | 
			
		||||
(if any) on which the executable work runs, or a compiler used to
 | 
			
		||||
produce the work, or an object code interpreter used to run it.
 | 
			
		||||
 | 
			
		||||
  The "Corresponding Source" for a work in object code form means all
 | 
			
		||||
the source code needed to generate, install, and (for an executable
 | 
			
		||||
work) run the object code and to modify the work, including scripts to
 | 
			
		||||
control those activities.  However, it does not include the work's
 | 
			
		||||
System Libraries, or general-purpose tools or generally available free
 | 
			
		||||
programs which are used unmodified in performing those activities but
 | 
			
		||||
which are not part of the work.  For example, Corresponding Source
 | 
			
		||||
includes interface definition files associated with source files for
 | 
			
		||||
the work, and the source code for shared libraries and dynamically
 | 
			
		||||
linked subprograms that the work is specifically designed to require,
 | 
			
		||||
such as by intimate data communication or control flow between those
 | 
			
		||||
subprograms and other parts of the work.
 | 
			
		||||
 | 
			
		||||
  The Corresponding Source need not include anything that users
 | 
			
		||||
can regenerate automatically from other parts of the Corresponding
 | 
			
		||||
Source.
 | 
			
		||||
 | 
			
		||||
  The Corresponding Source for a work in source code form is that
 | 
			
		||||
same work.
 | 
			
		||||
 | 
			
		||||
  2. Basic Permissions.
 | 
			
		||||
 | 
			
		||||
  All rights granted under this License are granted for the term of
 | 
			
		||||
copyright on the Program, and are irrevocable provided the stated
 | 
			
		||||
conditions are met.  This License explicitly affirms your unlimited
 | 
			
		||||
permission to run the unmodified Program.  The output from running a
 | 
			
		||||
covered work is covered by this License only if the output, given its
 | 
			
		||||
content, constitutes a covered work.  This License acknowledges your
 | 
			
		||||
rights of fair use or other equivalent, as provided by copyright law.
 | 
			
		||||
 | 
			
		||||
  You may make, run and propagate covered works that you do not
 | 
			
		||||
convey, without conditions so long as your license otherwise remains
 | 
			
		||||
in force.  You may convey covered works to others for the sole purpose
 | 
			
		||||
of having them make modifications exclusively for you, or provide you
 | 
			
		||||
with facilities for running those works, provided that you comply with
 | 
			
		||||
the terms of this License in conveying all material for which you do
 | 
			
		||||
not control copyright.  Those thus making or running the covered works
 | 
			
		||||
for you must do so exclusively on your behalf, under your direction
 | 
			
		||||
and control, on terms that prohibit them from making any copies of
 | 
			
		||||
your copyrighted material outside their relationship with you.
 | 
			
		||||
 | 
			
		||||
  Conveying under any other circumstances is permitted solely under
 | 
			
		||||
the conditions stated below.  Sublicensing is not allowed; section 10
 | 
			
		||||
makes it unnecessary.
 | 
			
		||||
 | 
			
		||||
  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
 | 
			
		||||
 | 
			
		||||
  No covered work shall be deemed part of an effective technological
 | 
			
		||||
measure under any applicable law fulfilling obligations under article
 | 
			
		||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
 | 
			
		||||
similar laws prohibiting or restricting circumvention of such
 | 
			
		||||
measures.
 | 
			
		||||
 | 
			
		||||
  When you convey a covered work, you waive any legal power to forbid
 | 
			
		||||
circumvention of technological measures to the extent such circumvention
 | 
			
		||||
is effected by exercising rights under this License with respect to
 | 
			
		||||
the covered work, and you disclaim any intention to limit operation or
 | 
			
		||||
modification of the work as a means of enforcing, against the work's
 | 
			
		||||
users, your or third parties' legal rights to forbid circumvention of
 | 
			
		||||
technological measures.
 | 
			
		||||
 | 
			
		||||
  4. Conveying Verbatim Copies.
 | 
			
		||||
 | 
			
		||||
  You may convey verbatim copies of the Program's source code as you
 | 
			
		||||
receive it, in any medium, provided that you conspicuously and
 | 
			
		||||
appropriately publish on each copy an appropriate copyright notice;
 | 
			
		||||
keep intact all notices stating that this License and any
 | 
			
		||||
non-permissive terms added in accord with section 7 apply to the code;
 | 
			
		||||
keep intact all notices of the absence of any warranty; and give all
 | 
			
		||||
recipients a copy of this License along with the Program.
 | 
			
		||||
 | 
			
		||||
  You may charge any price or no price for each copy that you convey,
 | 
			
		||||
and you may offer support or warranty protection for a fee.
 | 
			
		||||
 | 
			
		||||
  5. Conveying Modified Source Versions.
 | 
			
		||||
 | 
			
		||||
  You may convey a work based on the Program, or the modifications to
 | 
			
		||||
produce it from the Program, in the form of source code under the
 | 
			
		||||
terms of section 4, provided that you also meet all of these conditions:
 | 
			
		||||
 | 
			
		||||
    a) The work must carry prominent notices stating that you modified
 | 
			
		||||
    it, and giving a relevant date.
 | 
			
		||||
 | 
			
		||||
    b) The work must carry prominent notices stating that it is
 | 
			
		||||
    released under this License and any conditions added under section
 | 
			
		||||
    7.  This requirement modifies the requirement in section 4 to
 | 
			
		||||
    "keep intact all notices".
 | 
			
		||||
 | 
			
		||||
    c) You must license the entire work, as a whole, under this
 | 
			
		||||
    License to anyone who comes into possession of a copy.  This
 | 
			
		||||
    License will therefore apply, along with any applicable section 7
 | 
			
		||||
    additional terms, to the whole of the work, and all its parts,
 | 
			
		||||
    regardless of how they are packaged.  This License gives no
 | 
			
		||||
    permission to license the work in any other way, but it does not
 | 
			
		||||
    invalidate such permission if you have separately received it.
 | 
			
		||||
 | 
			
		||||
    d) If the work has interactive user interfaces, each must display
 | 
			
		||||
    Appropriate Legal Notices; however, if the Program has interactive
 | 
			
		||||
    interfaces that do not display Appropriate Legal Notices, your
 | 
			
		||||
    work need not make them do so.
 | 
			
		||||
 | 
			
		||||
  A compilation of a covered work with other separate and independent
 | 
			
		||||
works, which are not by their nature extensions of the covered work,
 | 
			
		||||
and which are not combined with it such as to form a larger program,
 | 
			
		||||
in or on a volume of a storage or distribution medium, is called an
 | 
			
		||||
"aggregate" if the compilation and its resulting copyright are not
 | 
			
		||||
used to limit the access or legal rights of the compilation's users
 | 
			
		||||
beyond what the individual works permit.  Inclusion of a covered work
 | 
			
		||||
in an aggregate does not cause this License to apply to the other
 | 
			
		||||
parts of the aggregate.
 | 
			
		||||
 | 
			
		||||
  6. Conveying Non-Source Forms.
 | 
			
		||||
 | 
			
		||||
  You may convey a covered work in object code form under the terms
 | 
			
		||||
of sections 4 and 5, provided that you also convey the
 | 
			
		||||
machine-readable Corresponding Source under the terms of this License,
 | 
			
		||||
in one of these ways:
 | 
			
		||||
 | 
			
		||||
    a) Convey the object code in, or embodied in, a physical product
 | 
			
		||||
    (including a physical distribution medium), accompanied by the
 | 
			
		||||
    Corresponding Source fixed on a durable physical medium
 | 
			
		||||
    customarily used for software interchange.
 | 
			
		||||
 | 
			
		||||
    b) Convey the object code in, or embodied in, a physical product
 | 
			
		||||
    (including a physical distribution medium), accompanied by a
 | 
			
		||||
    written offer, valid for at least three years and valid for as
 | 
			
		||||
    long as you offer spare parts or customer support for that product
 | 
			
		||||
    model, to give anyone who possesses the object code either (1) a
 | 
			
		||||
    copy of the Corresponding Source for all the software in the
 | 
			
		||||
    product that is covered by this License, on a durable physical
 | 
			
		||||
    medium customarily used for software interchange, for a price no
 | 
			
		||||
    more than your reasonable cost of physically performing this
 | 
			
		||||
    conveying of source, or (2) access to copy the
 | 
			
		||||
    Corresponding Source from a network server at no charge.
 | 
			
		||||
 | 
			
		||||
    c) Convey individual copies of the object code with a copy of the
 | 
			
		||||
    written offer to provide the Corresponding Source.  This
 | 
			
		||||
    alternative is allowed only occasionally and noncommercially, and
 | 
			
		||||
    only if you received the object code with such an offer, in accord
 | 
			
		||||
    with subsection 6b.
 | 
			
		||||
 | 
			
		||||
    d) Convey the object code by offering access from a designated
 | 
			
		||||
    place (gratis or for a charge), and offer equivalent access to the
 | 
			
		||||
    Corresponding Source in the same way through the same place at no
 | 
			
		||||
    further charge.  You need not require recipients to copy the
 | 
			
		||||
    Corresponding Source along with the object code.  If the place to
 | 
			
		||||
    copy the object code is a network server, the Corresponding Source
 | 
			
		||||
    may be on a different server (operated by you or a third party)
 | 
			
		||||
    that supports equivalent copying facilities, provided you maintain
 | 
			
		||||
    clear directions next to the object code saying where to find the
 | 
			
		||||
    Corresponding Source.  Regardless of what server hosts the
 | 
			
		||||
    Corresponding Source, you remain obligated to ensure that it is
 | 
			
		||||
    available for as long as needed to satisfy these requirements.
 | 
			
		||||
 | 
			
		||||
    e) Convey the object code using peer-to-peer transmission, provided
 | 
			
		||||
    you inform other peers where the object code and Corresponding
 | 
			
		||||
    Source of the work are being offered to the general public at no
 | 
			
		||||
    charge under subsection 6d.
 | 
			
		||||
 | 
			
		||||
  A separable portion of the object code, whose source code is excluded
 | 
			
		||||
from the Corresponding Source as a System Library, need not be
 | 
			
		||||
included in conveying the object code work.
 | 
			
		||||
 | 
			
		||||
  A "User Product" is either (1) a "consumer product", which means any
 | 
			
		||||
tangible personal property which is normally used for personal, family,
 | 
			
		||||
or household purposes, or (2) anything designed or sold for incorporation
 | 
			
		||||
into a dwelling.  In determining whether a product is a consumer product,
 | 
			
		||||
doubtful cases shall be resolved in favor of coverage.  For a particular
 | 
			
		||||
product received by a particular user, "normally used" refers to a
 | 
			
		||||
typical or common use of that class of product, regardless of the status
 | 
			
		||||
of the particular user or of the way in which the particular user
 | 
			
		||||
actually uses, or expects or is expected to use, the product.  A product
 | 
			
		||||
is a consumer product regardless of whether the product has substantial
 | 
			
		||||
commercial, industrial or non-consumer uses, unless such uses represent
 | 
			
		||||
the only significant mode of use of the product.
 | 
			
		||||
 | 
			
		||||
  "Installation Information" for a User Product means any methods,
 | 
			
		||||
procedures, authorization keys, or other information required to install
 | 
			
		||||
and execute modified versions of a covered work in that User Product from
 | 
			
		||||
a modified version of its Corresponding Source.  The information must
 | 
			
		||||
suffice to ensure that the continued functioning of the modified object
 | 
			
		||||
code is in no case prevented or interfered with solely because
 | 
			
		||||
modification has been made.
 | 
			
		||||
 | 
			
		||||
  If you convey an object code work under this section in, or with, or
 | 
			
		||||
specifically for use in, a User Product, and the conveying occurs as
 | 
			
		||||
part of a transaction in which the right of possession and use of the
 | 
			
		||||
User Product is transferred to the recipient in perpetuity or for a
 | 
			
		||||
fixed term (regardless of how the transaction is characterized), the
 | 
			
		||||
Corresponding Source conveyed under this section must be accompanied
 | 
			
		||||
by the Installation Information.  But this requirement does not apply
 | 
			
		||||
if neither you nor any third party retains the ability to install
 | 
			
		||||
modified object code on the User Product (for example, the work has
 | 
			
		||||
been installed in ROM).
 | 
			
		||||
 | 
			
		||||
  The requirement to provide Installation Information does not include a
 | 
			
		||||
requirement to continue to provide support service, warranty, or updates
 | 
			
		||||
for a work that has been modified or installed by the recipient, or for
 | 
			
		||||
the User Product in which it has been modified or installed.  Access to a
 | 
			
		||||
network may be denied when the modification itself materially and
 | 
			
		||||
adversely affects the operation of the network or violates the rules and
 | 
			
		||||
protocols for communication across the network.
 | 
			
		||||
 | 
			
		||||
  Corresponding Source conveyed, and Installation Information provided,
 | 
			
		||||
in accord with this section must be in a format that is publicly
 | 
			
		||||
documented (and with an implementation available to the public in
 | 
			
		||||
source code form), and must require no special password or key for
 | 
			
		||||
unpacking, reading or copying.
 | 
			
		||||
 | 
			
		||||
  7. Additional Terms.
 | 
			
		||||
 | 
			
		||||
  "Additional permissions" are terms that supplement the terms of this
 | 
			
		||||
License by making exceptions from one or more of its conditions.
 | 
			
		||||
Additional permissions that are applicable to the entire Program shall
 | 
			
		||||
be treated as though they were included in this License, to the extent
 | 
			
		||||
that they are valid under applicable law.  If additional permissions
 | 
			
		||||
apply only to part of the Program, that part may be used separately
 | 
			
		||||
under those permissions, but the entire Program remains governed by
 | 
			
		||||
this License without regard to the additional permissions.
 | 
			
		||||
 | 
			
		||||
  When you convey a copy of a covered work, you may at your option
 | 
			
		||||
remove any additional permissions from that copy, or from any part of
 | 
			
		||||
it.  (Additional permissions may be written to require their own
 | 
			
		||||
removal in certain cases when you modify the work.)  You may place
 | 
			
		||||
additional permissions on material, added by you to a covered work,
 | 
			
		||||
for which you have or can give appropriate copyright permission.
 | 
			
		||||
 | 
			
		||||
  Notwithstanding any other provision of this License, for material you
 | 
			
		||||
add to a covered work, you may (if authorized by the copyright holders of
 | 
			
		||||
that material) supplement the terms of this License with terms:
 | 
			
		||||
 | 
			
		||||
    a) Disclaiming warranty or limiting liability differently from the
 | 
			
		||||
    terms of sections 15 and 16 of this License; or
 | 
			
		||||
 | 
			
		||||
    b) Requiring preservation of specified reasonable legal notices or
 | 
			
		||||
    author attributions in that material or in the Appropriate Legal
 | 
			
		||||
    Notices displayed by works containing it; or
 | 
			
		||||
 | 
			
		||||
    c) Prohibiting misrepresentation of the origin of that material, or
 | 
			
		||||
    requiring that modified versions of such material be marked in
 | 
			
		||||
    reasonable ways as different from the original version; or
 | 
			
		||||
 | 
			
		||||
    d) Limiting the use for publicity purposes of names of licensors or
 | 
			
		||||
    authors of the material; or
 | 
			
		||||
 | 
			
		||||
    e) Declining to grant rights under trademark law for use of some
 | 
			
		||||
    trade names, trademarks, or service marks; or
 | 
			
		||||
 | 
			
		||||
    f) Requiring indemnification of licensors and authors of that
 | 
			
		||||
    material by anyone who conveys the material (or modified versions of
 | 
			
		||||
    it) with contractual assumptions of liability to the recipient, for
 | 
			
		||||
    any liability that these contractual assumptions directly impose on
 | 
			
		||||
    those licensors and authors.
 | 
			
		||||
 | 
			
		||||
  All other non-permissive additional terms are considered "further
 | 
			
		||||
restrictions" within the meaning of section 10.  If the Program as you
 | 
			
		||||
received it, or any part of it, contains a notice stating that it is
 | 
			
		||||
governed by this License along with a term that is a further
 | 
			
		||||
restriction, you may remove that term.  If a license document contains
 | 
			
		||||
a further restriction but permits relicensing or conveying under this
 | 
			
		||||
License, you may add to a covered work material governed by the terms
 | 
			
		||||
of that license document, provided that the further restriction does
 | 
			
		||||
not survive such relicensing or conveying.
 | 
			
		||||
 | 
			
		||||
  If you add terms to a covered work in accord with this section, you
 | 
			
		||||
must place, in the relevant source files, a statement of the
 | 
			
		||||
additional terms that apply to those files, or a notice indicating
 | 
			
		||||
where to find the applicable terms.
 | 
			
		||||
 | 
			
		||||
  Additional terms, permissive or non-permissive, may be stated in the
 | 
			
		||||
form of a separately written license, or stated as exceptions;
 | 
			
		||||
the above requirements apply either way.
 | 
			
		||||
 | 
			
		||||
  8. Termination.
 | 
			
		||||
 | 
			
		||||
  You may not propagate or modify a covered work except as expressly
 | 
			
		||||
provided under this License.  Any attempt otherwise to propagate or
 | 
			
		||||
modify it is void, and will automatically terminate your rights under
 | 
			
		||||
this License (including any patent licenses granted under the third
 | 
			
		||||
paragraph of section 11).
 | 
			
		||||
 | 
			
		||||
  However, if you cease all violation of this License, then your
 | 
			
		||||
license from a particular copyright holder is reinstated (a)
 | 
			
		||||
provisionally, unless and until the copyright holder explicitly and
 | 
			
		||||
finally terminates your license, and (b) permanently, if the copyright
 | 
			
		||||
holder fails to notify you of the violation by some reasonable means
 | 
			
		||||
prior to 60 days after the cessation.
 | 
			
		||||
 | 
			
		||||
  Moreover, your license from a particular copyright holder is
 | 
			
		||||
reinstated permanently if the copyright holder notifies you of the
 | 
			
		||||
violation by some reasonable means, this is the first time you have
 | 
			
		||||
received notice of violation of this License (for any work) from that
 | 
			
		||||
copyright holder, and you cure the violation prior to 30 days after
 | 
			
		||||
your receipt of the notice.
 | 
			
		||||
 | 
			
		||||
  Termination of your rights under this section does not terminate the
 | 
			
		||||
licenses of parties who have received copies or rights from you under
 | 
			
		||||
this License.  If your rights have been terminated and not permanently
 | 
			
		||||
reinstated, you do not qualify to receive new licenses for the same
 | 
			
		||||
material under section 10.
 | 
			
		||||
 | 
			
		||||
  9. Acceptance Not Required for Having Copies.
 | 
			
		||||
 | 
			
		||||
  You are not required to accept this License in order to receive or
 | 
			
		||||
run a copy of the Program.  Ancillary propagation of a covered work
 | 
			
		||||
occurring solely as a consequence of using peer-to-peer transmission
 | 
			
		||||
to receive a copy likewise does not require acceptance.  However,
 | 
			
		||||
nothing other than this License grants you permission to propagate or
 | 
			
		||||
modify any covered work.  These actions infringe copyright if you do
 | 
			
		||||
not accept this License.  Therefore, by modifying or propagating a
 | 
			
		||||
covered work, you indicate your acceptance of this License to do so.
 | 
			
		||||
 | 
			
		||||
  10. Automatic Licensing of Downstream Recipients.
 | 
			
		||||
 | 
			
		||||
  Each time you convey a covered work, the recipient automatically
 | 
			
		||||
receives a license from the original licensors, to run, modify and
 | 
			
		||||
propagate that work, subject to this License.  You are not responsible
 | 
			
		||||
for enforcing compliance by third parties with this License.
 | 
			
		||||
 | 
			
		||||
  An "entity transaction" is a transaction transferring control of an
 | 
			
		||||
organization, or substantially all assets of one, or subdividing an
 | 
			
		||||
organization, or merging organizations.  If propagation of a covered
 | 
			
		||||
work results from an entity transaction, each party to that
 | 
			
		||||
transaction who receives a copy of the work also receives whatever
 | 
			
		||||
licenses to the work the party's predecessor in interest had or could
 | 
			
		||||
give under the previous paragraph, plus a right to possession of the
 | 
			
		||||
Corresponding Source of the work from the predecessor in interest, if
 | 
			
		||||
the predecessor has it or can get it with reasonable efforts.
 | 
			
		||||
 | 
			
		||||
  You may not impose any further restrictions on the exercise of the
 | 
			
		||||
rights granted or affirmed under this License.  For example, you may
 | 
			
		||||
not impose a license fee, royalty, or other charge for exercise of
 | 
			
		||||
rights granted under this License, and you may not initiate litigation
 | 
			
		||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
 | 
			
		||||
any patent claim is infringed by making, using, selling, offering for
 | 
			
		||||
sale, or importing the Program or any portion of it.
 | 
			
		||||
 | 
			
		||||
  11. Patents.
 | 
			
		||||
 | 
			
		||||
  A "contributor" is a copyright holder who authorizes use under this
 | 
			
		||||
License of the Program or a work on which the Program is based.  The
 | 
			
		||||
work thus licensed is called the contributor's "contributor version".
 | 
			
		||||
 | 
			
		||||
  A contributor's "essential patent claims" are all patent claims
 | 
			
		||||
owned or controlled by the contributor, whether already acquired or
 | 
			
		||||
hereafter acquired, that would be infringed by some manner, permitted
 | 
			
		||||
by this License, of making, using, or selling its contributor version,
 | 
			
		||||
but do not include claims that would be infringed only as a
 | 
			
		||||
consequence of further modification of the contributor version.  For
 | 
			
		||||
purposes of this definition, "control" includes the right to grant
 | 
			
		||||
patent sublicenses in a manner consistent with the requirements of
 | 
			
		||||
this License.
 | 
			
		||||
 | 
			
		||||
  Each contributor grants you a non-exclusive, worldwide, royalty-free
 | 
			
		||||
patent license under the contributor's essential patent claims, to
 | 
			
		||||
make, use, sell, offer for sale, import and otherwise run, modify and
 | 
			
		||||
propagate the contents of its contributor version.
 | 
			
		||||
 | 
			
		||||
  In the following three paragraphs, a "patent license" is any express
 | 
			
		||||
agreement or commitment, however denominated, not to enforce a patent
 | 
			
		||||
(such as an express permission to practice a patent or covenant not to
 | 
			
		||||
sue for patent infringement).  To "grant" such a patent license to a
 | 
			
		||||
party means to make such an agreement or commitment not to enforce a
 | 
			
		||||
patent against the party.
 | 
			
		||||
 | 
			
		||||
  If you convey a covered work, knowingly relying on a patent license,
 | 
			
		||||
and the Corresponding Source of the work is not available for anyone
 | 
			
		||||
to copy, free of charge and under the terms of this License, through a
 | 
			
		||||
publicly available network server or other readily accessible means,
 | 
			
		||||
then you must either (1) cause the Corresponding Source to be so
 | 
			
		||||
available, or (2) arrange to deprive yourself of the benefit of the
 | 
			
		||||
patent license for this particular work, or (3) arrange, in a manner
 | 
			
		||||
consistent with the requirements of this License, to extend the patent
 | 
			
		||||
license to downstream recipients.  "Knowingly relying" means you have
 | 
			
		||||
actual knowledge that, but for the patent license, your conveying the
 | 
			
		||||
covered work in a country, or your recipient's use of the covered work
 | 
			
		||||
in a country, would infringe one or more identifiable patents in that
 | 
			
		||||
country that you have reason to believe are valid.
 | 
			
		||||
 | 
			
		||||
  If, pursuant to or in connection with a single transaction or
 | 
			
		||||
arrangement, you convey, or propagate by procuring conveyance of, a
 | 
			
		||||
covered work, and grant a patent license to some of the parties
 | 
			
		||||
receiving the covered work authorizing them to use, propagate, modify
 | 
			
		||||
or convey a specific copy of the covered work, then the patent license
 | 
			
		||||
you grant is automatically extended to all recipients of the covered
 | 
			
		||||
work and works based on it.
 | 
			
		||||
 | 
			
		||||
  A patent license is "discriminatory" if it does not include within
 | 
			
		||||
the scope of its coverage, prohibits the exercise of, or is
 | 
			
		||||
conditioned on the non-exercise of one or more of the rights that are
 | 
			
		||||
specifically granted under this License.  You may not convey a covered
 | 
			
		||||
work if you are a party to an arrangement with a third party that is
 | 
			
		||||
in the business of distributing software, under which you make payment
 | 
			
		||||
to the third party based on the extent of your activity of conveying
 | 
			
		||||
the work, and under which the third party grants, to any of the
 | 
			
		||||
parties who would receive the covered work from you, a discriminatory
 | 
			
		||||
patent license (a) in connection with copies of the covered work
 | 
			
		||||
conveyed by you (or copies made from those copies), or (b) primarily
 | 
			
		||||
for and in connection with specific products or compilations that
 | 
			
		||||
contain the covered work, unless you entered into that arrangement,
 | 
			
		||||
or that patent license was granted, prior to 28 March 2007.
 | 
			
		||||
 | 
			
		||||
  Nothing in this License shall be construed as excluding or limiting
 | 
			
		||||
any implied license or other defenses to infringement that may
 | 
			
		||||
otherwise be available to you under applicable patent law.
 | 
			
		||||
 | 
			
		||||
  12. No Surrender of Others' Freedom.
 | 
			
		||||
 | 
			
		||||
  If conditions are imposed on you (whether by court order, agreement or
 | 
			
		||||
otherwise) that contradict the conditions of this License, they do not
 | 
			
		||||
excuse you from the conditions of this License.  If you cannot convey a
 | 
			
		||||
covered work so as to satisfy simultaneously your obligations under this
 | 
			
		||||
License and any other pertinent obligations, then as a consequence you may
 | 
			
		||||
not convey it at all.  For example, if you agree to terms that obligate you
 | 
			
		||||
to collect a royalty for further conveying from those to whom you convey
 | 
			
		||||
the Program, the only way you could satisfy both those terms and this
 | 
			
		||||
License would be to refrain entirely from conveying the Program.
 | 
			
		||||
 | 
			
		||||
  13. Remote Network Interaction; Use with the GNU General Public License.
 | 
			
		||||
 | 
			
		||||
  Notwithstanding any other provision of this License, if you modify the
 | 
			
		||||
Program, your modified version must prominently offer all users
 | 
			
		||||
interacting with it remotely through a computer network (if your version
 | 
			
		||||
supports such interaction) an opportunity to receive the Corresponding
 | 
			
		||||
Source of your version by providing access to the Corresponding Source
 | 
			
		||||
from a network server at no charge, through some standard or customary
 | 
			
		||||
means of facilitating copying of software.  This Corresponding Source
 | 
			
		||||
shall include the Corresponding Source for any work covered by version 3
 | 
			
		||||
of the GNU General Public License that is incorporated pursuant to the
 | 
			
		||||
following paragraph.
 | 
			
		||||
 | 
			
		||||
  Notwithstanding any other provision of this License, you have
 | 
			
		||||
permission to link or combine any covered work with a work licensed
 | 
			
		||||
under version 3 of the GNU General Public License into a single
 | 
			
		||||
combined work, and to convey the resulting work.  The terms of this
 | 
			
		||||
License will continue to apply to the part which is the covered work,
 | 
			
		||||
but the work with which it is combined will remain governed by version
 | 
			
		||||
3 of the GNU General Public License.
 | 
			
		||||
 | 
			
		||||
  14. Revised Versions of this License.
 | 
			
		||||
 | 
			
		||||
  The Free Software Foundation may publish revised and/or new versions of
 | 
			
		||||
the GNU Affero General Public License from time to time.  Such new versions
 | 
			
		||||
will be similar in spirit to the present version, but may differ in detail to
 | 
			
		||||
address new problems or concerns.
 | 
			
		||||
 | 
			
		||||
  Each version is given a distinguishing version number.  If the
 | 
			
		||||
Program specifies that a certain numbered version of the GNU Affero General
 | 
			
		||||
Public License "or any later version" applies to it, you have the
 | 
			
		||||
option of following the terms and conditions either of that numbered
 | 
			
		||||
version or of any later version published by the Free Software
 | 
			
		||||
Foundation.  If the Program does not specify a version number of the
 | 
			
		||||
GNU Affero General Public License, you may choose any version ever published
 | 
			
		||||
by the Free Software Foundation.
 | 
			
		||||
 | 
			
		||||
  If the Program specifies that a proxy can decide which future
 | 
			
		||||
versions of the GNU Affero General Public License can be used, that proxy's
 | 
			
		||||
public statement of acceptance of a version permanently authorizes you
 | 
			
		||||
to choose that version for the Program.
 | 
			
		||||
 | 
			
		||||
  Later license versions may give you additional or different
 | 
			
		||||
permissions.  However, no additional obligations are imposed on any
 | 
			
		||||
author or copyright holder as a result of your choosing to follow a
 | 
			
		||||
later version.
 | 
			
		||||
 | 
			
		||||
  15. Disclaimer of Warranty.
 | 
			
		||||
 | 
			
		||||
  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
 | 
			
		||||
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
 | 
			
		||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
 | 
			
		||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
 | 
			
		||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 | 
			
		||||
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
 | 
			
		||||
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
 | 
			
		||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
 | 
			
		||||
 | 
			
		||||
  16. Limitation of Liability.
 | 
			
		||||
 | 
			
		||||
  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
 | 
			
		||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
 | 
			
		||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
 | 
			
		||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
 | 
			
		||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
 | 
			
		||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
 | 
			
		||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
 | 
			
		||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
SUCH DAMAGES.
 | 
			
		||||
 | 
			
		||||
  17. Interpretation of Sections 15 and 16.
 | 
			
		||||
 | 
			
		||||
  If the disclaimer of warranty and limitation of liability provided
 | 
			
		||||
above cannot be given local legal effect according to their terms,
 | 
			
		||||
reviewing courts shall apply local law that most closely approximates
 | 
			
		||||
an absolute waiver of all civil liability in connection with the
 | 
			
		||||
Program, unless a warranty or assumption of liability accompanies a
 | 
			
		||||
copy of the Program in return for a fee.
 | 
			
		||||
 | 
			
		||||
                     END OF TERMS AND CONDITIONS
 | 
			
		||||
 | 
			
		||||
            How to Apply These Terms to Your New Programs
 | 
			
		||||
 | 
			
		||||
  If you develop a new program, and you want it to be of the greatest
 | 
			
		||||
possible use to the public, the best way to achieve this is to make it
 | 
			
		||||
free software which everyone can redistribute and change under these terms.
 | 
			
		||||
 | 
			
		||||
  To do so, attach the following notices to the program.  It is safest
 | 
			
		||||
to attach them to the start of each source file to most effectively
 | 
			
		||||
state the exclusion of warranty; and each file should have at least
 | 
			
		||||
the "copyright" line and a pointer to where the full notice is found.
 | 
			
		||||
 | 
			
		||||
    <one line to give the program's name and a brief idea of what it does.>
 | 
			
		||||
    Copyright (C) <year>  <name of author>
 | 
			
		||||
 | 
			
		||||
    This program is free software: you can redistribute it and/or modify
 | 
			
		||||
    it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
    the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
    (at your option) any later version.
 | 
			
		||||
 | 
			
		||||
    This program is distributed in the hope that it will be useful,
 | 
			
		||||
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
    GNU Affero General Public License for more details.
 | 
			
		||||
 | 
			
		||||
    You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
Also add information on how to contact you by electronic and paper mail.
 | 
			
		||||
 | 
			
		||||
  If your software can interact with users remotely through a computer
 | 
			
		||||
network, you should also make sure that it provides a way for users to
 | 
			
		||||
get its source.  For example, if your program is a web application, its
 | 
			
		||||
interface could display a "Source" link that leads users to an archive
 | 
			
		||||
of the code.  There are many ways you could offer source, and different
 | 
			
		||||
solutions will be better for different programs; see section 13 for the
 | 
			
		||||
specific requirements.
 | 
			
		||||
 | 
			
		||||
  You should also get your employer (if you work as a programmer) or school,
 | 
			
		||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
 | 
			
		||||
For more information on this, and how to apply and follow the GNU AGPL, see
 | 
			
		||||
<https://www.gnu.org/licenses/>.
 | 
			
		||||
							
								
								
									
										94
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										94
									
								
								README.md
									
									
									
									
									
								
							@@ -1,94 +0,0 @@
 | 
			
		||||
# `bebot`
 | 
			
		||||
 | 
			
		||||
Bebot is a Gitlab webhook handler that publishes messages to Matrix when
 | 
			
		||||
interesting things happen in your configured repos.
 | 
			
		||||
 | 
			
		||||
Currently-supported Gitlab event types:
 | 
			
		||||
 | 
			
		||||
* Push events
 | 
			
		||||
* Tag push events
 | 
			
		||||
* Issue events
 | 
			
		||||
* Merge request events
 | 
			
		||||
* Pipeline events (only publishes on failure for now)
 | 
			
		||||
 | 
			
		||||
It can also watch for new messages in a mailing list (assuming that
 | 
			
		||||
mailing list is tracked by [The Mail
 | 
			
		||||
Archive](https://mail-archive.com/)), and publish notifications of new
 | 
			
		||||
messages to Matrix.
 | 
			
		||||
 | 
			
		||||
## Building
 | 
			
		||||
 | 
			
		||||
Bebot is written in Rust, and requires a Rust toolchain in order to
 | 
			
		||||
build.  I'm actually not sure what Bebot's MSRV is, but as of this
 | 
			
		||||
writing, 1.72 worked.  The usual `cargo build` or `cargo build
 | 
			
		||||
--release` will do the trick.
 | 
			
		||||
 | 
			
		||||
You can also build and install the latest released version of Bebot by
 | 
			
		||||
running `cargo install bebot`.
 | 
			
		||||
 | 
			
		||||
## Setup
 | 
			
		||||
 | 
			
		||||
Bebot requires a configuration file in YAML format.  See
 | 
			
		||||
`sample-config.yaml` for all existing configuration options, as well as
 | 
			
		||||
documentation on what each option does.
 | 
			
		||||
 | 
			
		||||
### Gitlab Hooks
 | 
			
		||||
 | 
			
		||||
When setting up the webhook in Gitlab, use the same `token` from the
 | 
			
		||||
configuration file in the webhook's "Secret token" field.  You should
 | 
			
		||||
only select "Push events", "Tag push events", "Issues events", "Merge
 | 
			
		||||
request events", and "Pipeline events".  You can leave some of these out
 | 
			
		||||
if you don't want Bebot to publish messages for everything.
 | 
			
		||||
 | 
			
		||||
Bebot does not support serving the webhook over TLS, so you will
 | 
			
		||||
probably want to put it behind a reverse-proxy such as nginx.
 | 
			
		||||
 | 
			
		||||
In the `scripts` directory is a `set-webhook.py` script that can set up
 | 
			
		||||
(or update) webhooks for your repository, automatically generating a
 | 
			
		||||
token for you.  If setting up the webhook for the first time, it will
 | 
			
		||||
output to stdout a YAML snippet that goes under the `repo_configs`
 | 
			
		||||
section of the configuration file.  If you run the script with no
 | 
			
		||||
arguments, it will print out usage details.
 | 
			
		||||
 | 
			
		||||
### `mail-archive.com`
 | 
			
		||||
 | 
			
		||||
If you want Bebot to publish a Matrix message when a new email hits one
 | 
			
		||||
of your configured mailing lists, you need to provide a directory for
 | 
			
		||||
Bebot to store state, so it can keep track of what emails it has already
 | 
			
		||||
sent a Matrix message for.  Otherwise, it will re-publish messages every
 | 
			
		||||
time you restart Bebot.
 | 
			
		||||
 | 
			
		||||
Remember that if you are running Bebot in a Docker container, you'll
 | 
			
		||||
need to mount a volume to store state so it persists across container
 | 
			
		||||
restarts and upgrades.
 | 
			
		||||
 | 
			
		||||
## Running
 | 
			
		||||
 | 
			
		||||
After you've done all that, simply run Bebot:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
bebot /path/to/config-file.yaml
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
You can set the `BEBOT_LOG` environment variable to increase or decrease
 | 
			
		||||
logging verbosity.  (Try `debug`, `info`, `warn` `error`, or `off`.)
 | 
			
		||||
 | 
			
		||||
### Docker
 | 
			
		||||
 | 
			
		||||
A `Dockerfile` is also provided.  When running the container it builds,
 | 
			
		||||
mount the configuration file so it appears inside the container as
 | 
			
		||||
`/bebot/config/bebot.yaml`.  If you are publishing from
 | 
			
		||||
`mail-archive.com`, also remember to mount a state storage directory or
 | 
			
		||||
volume wherever you've specified in the configuration file.
 | 
			
		||||
 | 
			
		||||
Release images are [published to Docker
 | 
			
		||||
Hub](https://hub.docker.com/r/kelnos/bebot).
 | 
			
		||||
 | 
			
		||||
## Contributing
 | 
			
		||||
 | 
			
		||||
I currently host Bebot on my [private Gitea
 | 
			
		||||
server](https://git.spurint.org/brian/bebot).  Since I don't want to
 | 
			
		||||
deal with spam, I don't enable user registrations.  If you'd like to
 | 
			
		||||
submit issues and/or merge requests, please [message me on
 | 
			
		||||
Matrix](https://matrix.to/#/@brian:tarricone.org) with your email
 | 
			
		||||
address and preferred username, and I'll create an account for you.
 | 
			
		||||
@@ -1,87 +0,0 @@
 | 
			
		||||
# Address/interface the webhook listener should bind to (default is 127.0.0.1).
 | 
			
		||||
bind_address: 127.0.0.1
 | 
			
		||||
# Port the webhook listener should bind to (default is 3000).
 | 
			
		||||
bind_port: 3000
 | 
			
		||||
# Matrix user to sign in as.
 | 
			
		||||
user_id: "@mybebot:example.com"
 | 
			
		||||
# Password for Matrix user.
 | 
			
		||||
password: "secret-matrix-account-password"
 | 
			
		||||
# Optional path to an image file to use as the bot account's avatar.
 | 
			
		||||
avatar_image_path: "/path/to/avatar.jpg"
 | 
			
		||||
# All Gitlab-specific settings are under here.
 | 
			
		||||
gitlab_webhook:
 | 
			
		||||
  # Optional prefix to serve the webhook path under (default is empty string).
 | 
			
		||||
  url_prefix: "/bebot"
 | 
			
		||||
  # Default Matrix room to publish Gitlab events to.
 | 
			
		||||
  default_room: "#my-project-commits:example.com"
 | 
			
		||||
  # Default set of events to publish.  If left out, all events will be published.
 | 
			
		||||
  default_publish_events:
 | 
			
		||||
    - name: push
 | 
			
		||||
      # Regexes of branch names.  Leave out entirely for "all branches".
 | 
			
		||||
      branches:
 | 
			
		||||
        - '^main$'
 | 
			
		||||
        - '^xfce-.+'
 | 
			
		||||
    - name: tag_push
 | 
			
		||||
    - name: issues
 | 
			
		||||
      # See the Gitlab docs for a full list of actions.  If left out, all actions
 | 
			
		||||
      # will be published.
 | 
			
		||||
      actions:
 | 
			
		||||
        - open
 | 
			
		||||
        - close
 | 
			
		||||
    - name: merge_request
 | 
			
		||||
      # See the Gitlab docs for a full list of actions.  If left out, all actions
 | 
			
		||||
      # will be published.
 | 
			
		||||
      actions:
 | 
			
		||||
        - open
 | 
			
		||||
        - merge
 | 
			
		||||
    - name: pipeline
 | 
			
		||||
      # See the Gitlab docs for a full list of statuses.  If left out, all
 | 
			
		||||
      # actions will be published.
 | 
			
		||||
      statuses:
 | 
			
		||||
        - failed
 | 
			
		||||
  # Key-value configuration for repositories.
 | 
			
		||||
  repo_configs:
 | 
			
		||||
    # Keys are the instance name / namespace / repository name
 | 
			
		||||
    "gitlab.example.com/myorg/my-cool-app":
 | 
			
		||||
      # Each repository should use a unique, randomly-generated token.  Enter
 | 
			
		||||
      # this token in the webhook configuration's "Secret token" on Gitlab.
 | 
			
		||||
      token: "abcdefg12345"
 | 
			
		||||
      # You can override the default_room above.  Leave out to use the default.
 | 
			
		||||
      room: "#my-cool-app-events:example.com"
 | 
			
		||||
      # You can override default_events above.  Leave out this section to
 | 
			
		||||
      # use the defaults.
 | 
			
		||||
      publish_events:
 | 
			
		||||
        - name: push
 | 
			
		||||
          branches:
 | 
			
		||||
            - main
 | 
			
		||||
        - name: pipeline
 | 
			
		||||
          statuses:
 | 
			
		||||
            - failed
 | 
			
		||||
    "gitlab.example.com/myuser/some-other-less-cool-app":
 | 
			
		||||
      token: "kljaslkdjaklsdjalksd"
 | 
			
		||||
      # This repo uses the default events and room.
 | 
			
		||||
# The mail_archive configuration section allows you to set up bebot to publish
 | 
			
		||||
# messages based on RSS feeds from mail-archive.com.
 | 
			
		||||
mail_archive:
 | 
			
		||||
    # List of rooms that will be published to by default, unless overridden by
 | 
			
		||||
    # a per-list config.
 | 
			
		||||
    default_rooms:
 | 
			
		||||
      - "#some-room:example.com"
 | 
			
		||||
      - "#some-other-room:example.com"
 | 
			
		||||
    # How often bebot will fetch the RSS feed to check for updates, in seconds.
 | 
			
		||||
    update_interval: 60
 | 
			
		||||
    # A directory where bebot can store state, such as the data of the last
 | 
			
		||||
    # entry in the RSS feed it has seen.
 | 
			
		||||
    state_dir: "/var/lib/bebot/mail-archive-state"
 | 
			
		||||
    # A list of mailing lists.
 | 
			
		||||
    lists:
 | 
			
		||||
        # This is the list name as is displayed in mail-archive.com URLS.
 | 
			
		||||
      - name: "my-list@example.com"
 | 
			
		||||
        # Disable publishing a matrix message for replies sent to the list
 | 
			
		||||
        # (default true).  This isn't perfect, and can only guess if a message
 | 
			
		||||
        # is a reply based on the subject line.
 | 
			
		||||
        publish_on_replies: false
 | 
			
		||||
        # An optional list of rooms to publish to.  If not specified, the
 | 
			
		||||
        # default_rooms setting above will be used.
 | 
			
		||||
        rooms:
 | 
			
		||||
          - "#yet-some-other-room:example.com"
 | 
			
		||||
@@ -1,59 +0,0 @@
 | 
			
		||||
#!/usr/bin/env python3
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
import os
 | 
			
		||||
import requests
 | 
			
		||||
import secrets
 | 
			
		||||
import sys
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def die(s):
 | 
			
		||||
    print(s, file=sys.stderr)
 | 
			
		||||
    sys.exit(1)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
gitlab_token = os.getenv('GITLAB_TOKEN')
 | 
			
		||||
if gitlab_token is None:
 | 
			
		||||
    die("GITLAB_TOKEN must be set in the environment")
 | 
			
		||||
 | 
			
		||||
if len(sys.argv) < 4:
 | 
			
		||||
    die("Usage: {} GITLAB_INSTANCE HOOK_URL_BASE NAMESPACE/REPO\n\nExample: {} gitlab.example.com https://bot.example.com/bebot stuff/myrepo")
 | 
			
		||||
 | 
			
		||||
gitlab_instance = sys.argv[1]
 | 
			
		||||
hook_url = f"{sys.argv[2]}/hooks/gitlab"
 | 
			
		||||
repo_name = sys.argv[3]
 | 
			
		||||
 | 
			
		||||
gl_base = 'https://{}/api/v4/projects/{}/hooks'.format(
 | 
			
		||||
    gitlab_instance,
 | 
			
		||||
    re.sub('/', '%2F', repo_name)
 | 
			
		||||
)
 | 
			
		||||
headers = {
 | 
			
		||||
    'authorization': 'Bearer {}'.format(gitlab_token),
 | 
			
		||||
}
 | 
			
		||||
payload = {
 | 
			
		||||
    "issues_events": True,
 | 
			
		||||
    "merge_requests_events": True,
 | 
			
		||||
    "pipeline_events": True,
 | 
			
		||||
    "push_events": True,
 | 
			
		||||
    "tag_push_events": True,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
resp = requests.get(gl_base, headers=headers)
 | 
			
		||||
if resp.status_code != 200:
 | 
			
		||||
    resp.raise_for_status()
 | 
			
		||||
existing = resp.json()
 | 
			
		||||
 | 
			
		||||
for hook in existing:
 | 
			
		||||
    if hook['url'] == hook_url:
 | 
			
		||||
        upd_url = '{}/{}'.format(gl_base, hook['id'])
 | 
			
		||||
        resp = requests.put(upd_url, headers=headers, json=payload)
 | 
			
		||||
        print("Updated existing hook for {}".format(repo_name))
 | 
			
		||||
        sys.exit(0)
 | 
			
		||||
 | 
			
		||||
token = secrets.token_urlsafe(32)
 | 
			
		||||
payload["url"] = hook_url
 | 
			
		||||
payload["token"] = token
 | 
			
		||||
resp = requests.post(gl_base, headers=headers, json=payload)
 | 
			
		||||
resp.raise_for_status()
 | 
			
		||||
print('  "{}/{}":'.format(gitlab_instance, repo_name))
 | 
			
		||||
print('    token: "{}"'.format(token))
 | 
			
		||||
							
								
								
									
										174
									
								
								src/config.rs
									
									
									
									
									
								
							
							
						
						
									
										174
									
								
								src/config.rs
									
									
									
									
									
								
							@@ -1,99 +1,115 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
use std::{collections::HashMap, fs::File, io::BufReader, path::PathBuf};
 | 
			
		||||
use std::{collections::HashMap, fmt, fs::File, io::BufReader};
 | 
			
		||||
 | 
			
		||||
use anyhow::Context;
 | 
			
		||||
use matrix_sdk::ruma::{OwnedRoomOrAliasId, OwnedUserId};
 | 
			
		||||
use regex::Regex;
 | 
			
		||||
 | 
			
		||||
use crate::gitlab_event::{IssueAction, MergeRequestAction, PipelineStatus};
 | 
			
		||||
 | 
			
		||||
#[derive(Deserialize)]
 | 
			
		||||
#[serde(tag = "name", rename_all = "snake_case")]
 | 
			
		||||
pub enum PublishEvent {
 | 
			
		||||
    Push {
 | 
			
		||||
        #[serde(default)]
 | 
			
		||||
        #[serde(with = "serde_regex")]
 | 
			
		||||
        branches: Option<Vec<Regex>>,
 | 
			
		||||
    },
 | 
			
		||||
    TagPush,
 | 
			
		||||
    Issues {
 | 
			
		||||
        actions: Option<Vec<IssueAction>>,
 | 
			
		||||
    },
 | 
			
		||||
    MergeRequest {
 | 
			
		||||
        actions: Option<Vec<MergeRequestAction>>,
 | 
			
		||||
    },
 | 
			
		||||
    Pipeline {
 | 
			
		||||
        statuses: Option<Vec<PipelineStatus>>,
 | 
			
		||||
    },
 | 
			
		||||
}
 | 
			
		||||
use matrix_sdk::ruma::{OwnedRoomOrAliasId, OwnedUserId, RoomOrAliasId, UserId};
 | 
			
		||||
use serde::de;
 | 
			
		||||
 | 
			
		||||
#[derive(Deserialize)]
 | 
			
		||||
pub struct RepoConfig {
 | 
			
		||||
    pub token: String,
 | 
			
		||||
    #[serde(default)]
 | 
			
		||||
    #[serde(deserialize_with = "crate::matrix::deser_optional_room_or_alias_id")]
 | 
			
		||||
    #[serde(deserialize_with = "deser_optional_room_or_alias_id")]
 | 
			
		||||
    pub room: Option<OwnedRoomOrAliasId>,
 | 
			
		||||
    pub publish_events: Option<Vec<PublishEvent>>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Deserialize)]
 | 
			
		||||
pub struct GitlabWebhookConfig {
 | 
			
		||||
    pub url_prefix: Option<String>,
 | 
			
		||||
    #[serde(default)]
 | 
			
		||||
    #[serde(deserialize_with = "crate::matrix::deser_optional_room_or_alias_id")]
 | 
			
		||||
    pub default_room: Option<OwnedRoomOrAliasId>,
 | 
			
		||||
    pub default_publish_events: Option<Vec<PublishEvent>>,
 | 
			
		||||
    pub repo_configs: HashMap<String, RepoConfig>, // key is repo url without scheme; e.g.
 | 
			
		||||
                                                   // gitlab.xfce.org/xfce/xfdesktop
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Clone, Deserialize)]
 | 
			
		||||
pub struct MailListConfig {
 | 
			
		||||
    pub name: String,
 | 
			
		||||
    #[serde(default = "default_true")]
 | 
			
		||||
    pub publish_on_replies: bool,
 | 
			
		||||
    #[serde(default)]
 | 
			
		||||
    pub rooms: Vec<OwnedRoomOrAliasId>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Deserialize)]
 | 
			
		||||
pub struct MailArchiveConfig {
 | 
			
		||||
    #[serde(default)]
 | 
			
		||||
    pub default_rooms: Vec<OwnedRoomOrAliasId>,
 | 
			
		||||
    pub update_interval: u64, // seconds
 | 
			
		||||
    pub state_dir: PathBuf,
 | 
			
		||||
    pub lists: Vec<MailListConfig>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Deserialize)]
 | 
			
		||||
pub struct Config {
 | 
			
		||||
    pub bind_address: Option<String>,
 | 
			
		||||
    pub bind_port: Option<u16>,
 | 
			
		||||
    #[serde(deserialize_with = "crate::matrix::deser_user_id")]
 | 
			
		||||
    #[serde(deserialize_with = "deser_user_id")]
 | 
			
		||||
    pub user_id: OwnedUserId,
 | 
			
		||||
    pub password: String,
 | 
			
		||||
    pub avatar_image_path: Option<PathBuf>,
 | 
			
		||||
    pub gitlab_webhook: Option<GitlabWebhookConfig>,
 | 
			
		||||
    pub mail_archive: Option<MailArchiveConfig>,
 | 
			
		||||
    #[serde(default)]
 | 
			
		||||
    #[serde(deserialize_with = "deser_optional_room_or_alias_id")]
 | 
			
		||||
    pub default_room: Option<OwnedRoomOrAliasId>,
 | 
			
		||||
    pub repo_configs: HashMap<String, RepoConfig>, // key is repo url without scheme; e.g.
 | 
			
		||||
                                                   // gitlab.xfce.org/xfce/xfdesktop
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn default_true() -> bool {
 | 
			
		||||
    true
 | 
			
		||||
fn deser_user_id<'de, D>(deserializer: D) -> Result<OwnedUserId, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct UserIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for UserIdVisitor {
 | 
			
		||||
        type Value = OwnedUserId;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("a matrix user ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            UserId::parse(v).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(UserIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn deser_room_or_alias_id<'de, D>(deserializer: D) -> Result<OwnedRoomOrAliasId, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct RoomOrAliasIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for RoomOrAliasIdVisitor {
 | 
			
		||||
        type Value = OwnedRoomOrAliasId;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("a matrix room ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            RoomOrAliasId::parse(v).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(RoomOrAliasIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn deser_optional_room_or_alias_id<'de, D>(deserializer: D) -> Result<Option<OwnedRoomOrAliasId>, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct OptionalRoomOrAliasIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for OptionalRoomOrAliasIdVisitor {
 | 
			
		||||
        type Value = Option<OwnedRoomOrAliasId>;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("null or matrix room ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_none<E>(self) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            Ok(None)
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
 | 
			
		||||
        where
 | 
			
		||||
            D: serde::Deserializer<'de>,
 | 
			
		||||
        {
 | 
			
		||||
            Ok(Some(deser_room_or_alias_id(deserializer)?))
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            RoomOrAliasId::parse(v).map(Some).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(OptionalRoomOrAliasIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn load_blocking(path: &String) -> anyhow::Result<Config> {
 | 
			
		||||
@@ -106,7 +122,7 @@ fn load_blocking(path: &String) -> anyhow::Result<Config> {
 | 
			
		||||
pub async fn load<S: AsRef<str>>(path: S) -> anyhow::Result<Config> {
 | 
			
		||||
    let p = String::from(path.as_ref());
 | 
			
		||||
    let config = tokio::task::spawn_blocking(move || {
 | 
			
		||||
        load_blocking(&p).with_context(|| format!("Failed to load config from {p}"))
 | 
			
		||||
        load_blocking(&p).with_context(|| format!("Failed to load config from {}", p))
 | 
			
		||||
    })
 | 
			
		||||
    .await??;
 | 
			
		||||
    Ok(config)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										224
									
								
								src/event.rs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										224
									
								
								src/event.rs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,224 @@
 | 
			
		||||
pub trait GitlabEventExt {
 | 
			
		||||
    fn project(&self) -> &Project;
 | 
			
		||||
    fn r#ref(&self) -> &str;
 | 
			
		||||
    fn user(&self) -> &str;
 | 
			
		||||
    fn url(&self) -> String;
 | 
			
		||||
    fn title(&self) -> String;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Project {
 | 
			
		||||
    pub id: u64,
 | 
			
		||||
    pub name: String,
 | 
			
		||||
    pub description: String,
 | 
			
		||||
    pub web_url: String,
 | 
			
		||||
    pub avatar_url: Option<String>,
 | 
			
		||||
    pub git_ssh_url: String,
 | 
			
		||||
    pub git_http_url: String,
 | 
			
		||||
    pub namespace: String,
 | 
			
		||||
    pub visibility_level: u32,
 | 
			
		||||
    pub path_with_namespace: String,
 | 
			
		||||
    pub default_branch: String,
 | 
			
		||||
    pub homepage: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
    pub ssh_url: String,
 | 
			
		||||
    pub http_url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Repository {
 | 
			
		||||
    pub name: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
    pub description: String,
 | 
			
		||||
    pub homepage: String,
 | 
			
		||||
    pub git_http_url: String,
 | 
			
		||||
    pub git_ssh_url: String,
 | 
			
		||||
    pub visibility_level: u32,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Commit {
 | 
			
		||||
    pub id: String,
 | 
			
		||||
    pub title: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
#[serde(tag = "object_kind")]
 | 
			
		||||
pub enum GitlabEvent {
 | 
			
		||||
    #[serde(rename = "push")]
 | 
			
		||||
    Push {
 | 
			
		||||
        event_name: String,
 | 
			
		||||
        before: String,
 | 
			
		||||
        after: String,
 | 
			
		||||
        r#ref: String,
 | 
			
		||||
        ref_protected: bool,
 | 
			
		||||
        checkout_sha: String,
 | 
			
		||||
        user_id: u64,
 | 
			
		||||
        user_name: String,
 | 
			
		||||
        user_username: String,
 | 
			
		||||
        user_email: String,
 | 
			
		||||
        user_avatar: Option<String>,
 | 
			
		||||
        project_id: u64,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        repository: Repository,
 | 
			
		||||
        commits: Vec<Commit>,
 | 
			
		||||
        total_commits_count: u64,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(rename = "tag_push")]
 | 
			
		||||
    TagPush {
 | 
			
		||||
        event_name: String,
 | 
			
		||||
        before: String,
 | 
			
		||||
        after: String,
 | 
			
		||||
        r#ref: String,
 | 
			
		||||
        ref_protected: bool,
 | 
			
		||||
        checkout_sha: String,
 | 
			
		||||
        user_id: u64,
 | 
			
		||||
        user_name: String,
 | 
			
		||||
        user_avatar: Option<String>,
 | 
			
		||||
        project_id: u64,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        repository: Repository,
 | 
			
		||||
        commits: Vec<Commit>,
 | 
			
		||||
        total_commits_count: u64,
 | 
			
		||||
    },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl GitlabEventExt for GitlabEvent {
 | 
			
		||||
    fn project(&self) -> &Project {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { project, .. } => &project,
 | 
			
		||||
            GitlabEvent::TagPush { project, .. } => &project,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn r#ref(&self) -> &str {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { r#ref, .. } => &r#ref,
 | 
			
		||||
            GitlabEvent::TagPush { r#ref, .. } => &r#ref,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn user(&self) -> &str {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { user_name, .. } => &user_name,
 | 
			
		||||
            GitlabEvent::TagPush { user_name, .. } => &user_name,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn url(&self) -> String {
 | 
			
		||||
        let url = match self {
 | 
			
		||||
            GitlabEvent::Push { after, project, .. } => format!("{}/-/commits/{}", project.web_url, after),
 | 
			
		||||
            GitlabEvent::TagPush {
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                project,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                let refname = r#ref.split('/').into_iter().last().unwrap_or(checkout_sha);
 | 
			
		||||
                format!("{}/-/tags/{}", project.web_url, refname)
 | 
			
		||||
            }
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        url.replace("http://", "https://").to_string()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn title(&self) -> String {
 | 
			
		||||
        fn find_commit<'a>(commits: &'a Vec<Commit>, sha: &str) -> Option<&'a Commit> {
 | 
			
		||||
            commits.iter().find(|commit| commit.id == sha)
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { after, commits, .. } => find_commit(commits, &after)
 | 
			
		||||
                .map(|commit| commit.title.clone())
 | 
			
		||||
                .unwrap_or_else(|| "New commit(s) pushed".to_string()),
 | 
			
		||||
            GitlabEvent::TagPush {
 | 
			
		||||
                checkout_sha, commits, ..
 | 
			
		||||
            } => find_commit(commits, &checkout_sha)
 | 
			
		||||
                .map(|commit| commit.title.clone())
 | 
			
		||||
                .unwrap_or_else(|| "New tag pushed".to_string()),
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[cfg(test)]
 | 
			
		||||
mod test {
 | 
			
		||||
    use super::*;
 | 
			
		||||
    use std::{fs::File, io::BufReader};
 | 
			
		||||
 | 
			
		||||
    fn load_test_data(name: &str) -> anyhow::Result<GitlabEvent> {
 | 
			
		||||
        let f = File::open(&format!("{}/test-data/{}.json", env!("CARGO_MANIFEST_DIR"), name))?;
 | 
			
		||||
        let r = BufReader::new(f);
 | 
			
		||||
        let event: GitlabEvent = serde_json::from_reader(r)?;
 | 
			
		||||
        Ok(event)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_push_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("push-event")?;
 | 
			
		||||
 | 
			
		||||
        match event {
 | 
			
		||||
            GitlabEvent::Push {
 | 
			
		||||
                event_name,
 | 
			
		||||
                before,
 | 
			
		||||
                after,
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                user_username,
 | 
			
		||||
                project,
 | 
			
		||||
                repository,
 | 
			
		||||
                total_commits_count,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(event_name, "push");
 | 
			
		||||
                assert_eq!(before, "95790bf891e76fee5e1747ab589903a6a1f80f22");
 | 
			
		||||
                assert_eq!(after, "da1560886d4f094c3e6c9ef40349f7d38b5d27d7");
 | 
			
		||||
                assert_eq!(r#ref, "refs/heads/master");
 | 
			
		||||
                assert_eq!(checkout_sha, "da1560886d4f094c3e6c9ef40349f7d38b5d27d7");
 | 
			
		||||
                assert_eq!(user_username, "jsmith");
 | 
			
		||||
                assert_eq!(project.name, "Diaspora");
 | 
			
		||||
                assert_eq!(project.namespace, "Mike");
 | 
			
		||||
                assert_eq!(repository.name, "Diaspora");
 | 
			
		||||
                assert_eq!(repository.url, "git@example.com:mike/diaspora.git");
 | 
			
		||||
                assert_eq!(total_commits_count, 4);
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a push event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_tag_push_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("tag-push-event")?;
 | 
			
		||||
 | 
			
		||||
        match event {
 | 
			
		||||
            GitlabEvent::TagPush {
 | 
			
		||||
                event_name,
 | 
			
		||||
                before,
 | 
			
		||||
                after,
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                user_name,
 | 
			
		||||
                project,
 | 
			
		||||
                repository,
 | 
			
		||||
                total_commits_count,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(event_name, "tag_push");
 | 
			
		||||
                assert_eq!(before, "0000000000000000000000000000000000000000");
 | 
			
		||||
                assert_eq!(after, "82b3d5ae55f7080f1e6022629cdb57bfae7cccc7");
 | 
			
		||||
                assert_eq!(r#ref, "refs/tags/v1.0.0");
 | 
			
		||||
                assert_eq!(checkout_sha, "82b3d5ae55f7080f1e6022629cdb57bfae7cccc7");
 | 
			
		||||
                assert_eq!(user_name, "John Smith");
 | 
			
		||||
                assert_eq!(project.name, "Example");
 | 
			
		||||
                assert_eq!(project.namespace, "Jsmith");
 | 
			
		||||
                assert_eq!(repository.name, "Example");
 | 
			
		||||
                assert_eq!(total_commits_count, 0);
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a tag push event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,691 +0,0 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
#![allow(unused)]
 | 
			
		||||
 | 
			
		||||
use core::fmt;
 | 
			
		||||
 | 
			
		||||
use crate::config::PublishEvent;
 | 
			
		||||
 | 
			
		||||
pub trait GitlabEventExt {
 | 
			
		||||
    fn should_publish(&self, publish_events: &[PublishEvent]) -> bool;
 | 
			
		||||
    fn project(&self) -> &Project;
 | 
			
		||||
    fn r#ref(&self) -> Option<&str>;
 | 
			
		||||
    fn user(&self) -> &str;
 | 
			
		||||
    fn titles(&self) -> Vec<String>;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct User {
 | 
			
		||||
    name: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Project {
 | 
			
		||||
    pub name: String,
 | 
			
		||||
    pub web_url: String,
 | 
			
		||||
    pub namespace: String,
 | 
			
		||||
    pub path_with_namespace: String,
 | 
			
		||||
    pub default_branch: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Repository {
 | 
			
		||||
    pub name: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct Commit {
 | 
			
		||||
    pub id: String,
 | 
			
		||||
    pub title: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(PartialEq, Debug, Deserialize)]
 | 
			
		||||
#[serde(rename_all = "snake_case")]
 | 
			
		||||
pub enum MergeRequestAction {
 | 
			
		||||
    Open,
 | 
			
		||||
    Close,
 | 
			
		||||
    Reopen,
 | 
			
		||||
    Update,
 | 
			
		||||
    Approve,
 | 
			
		||||
    Unapprove,
 | 
			
		||||
    Merged,
 | 
			
		||||
    Approval,
 | 
			
		||||
    Unapproval,
 | 
			
		||||
    #[serde(other)]
 | 
			
		||||
    Other,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl fmt::Display for MergeRequestAction {
 | 
			
		||||
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
 | 
			
		||||
        write!(
 | 
			
		||||
            f,
 | 
			
		||||
            "{}",
 | 
			
		||||
            match self {
 | 
			
		||||
                MergeRequestAction::Open => "opened",
 | 
			
		||||
                MergeRequestAction::Close => "closed",
 | 
			
		||||
                MergeRequestAction::Reopen => "reopened",
 | 
			
		||||
                MergeRequestAction::Update => "updated",
 | 
			
		||||
                MergeRequestAction::Approve => "approved",
 | 
			
		||||
                MergeRequestAction::Unapprove => "unapproved",
 | 
			
		||||
                MergeRequestAction::Approval => "approval",
 | 
			
		||||
                MergeRequestAction::Unapproval => "unapproval",
 | 
			
		||||
                MergeRequestAction::Merged => "merged",
 | 
			
		||||
                MergeRequestAction::Other => "other",
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct MergeRequestObjectAttributes {
 | 
			
		||||
    pub iid: u64,
 | 
			
		||||
    pub target_branch: String,
 | 
			
		||||
    pub source_branch: String,
 | 
			
		||||
    pub title: String,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
    pub source: Project,
 | 
			
		||||
    pub target: Project,
 | 
			
		||||
    pub action: MergeRequestAction,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(PartialEq, Debug, Deserialize)]
 | 
			
		||||
#[serde(rename_all = "snake_case")]
 | 
			
		||||
pub enum PipelineStatus {
 | 
			
		||||
    Created,
 | 
			
		||||
    WaitingForResource,
 | 
			
		||||
    Preparing,
 | 
			
		||||
    Pending,
 | 
			
		||||
    Running,
 | 
			
		||||
    Success,
 | 
			
		||||
    Failed,
 | 
			
		||||
    Canceled,
 | 
			
		||||
    Skipped,
 | 
			
		||||
    Manual,
 | 
			
		||||
    Scheduled,
 | 
			
		||||
    #[serde(other)]
 | 
			
		||||
    Other,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl fmt::Display for PipelineStatus {
 | 
			
		||||
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
 | 
			
		||||
        write!(
 | 
			
		||||
            f,
 | 
			
		||||
            "{}",
 | 
			
		||||
            match self {
 | 
			
		||||
                PipelineStatus::Created => "created",
 | 
			
		||||
                PipelineStatus::WaitingForResource => "waiting for resource",
 | 
			
		||||
                PipelineStatus::Preparing => "preparing",
 | 
			
		||||
                PipelineStatus::Pending => "pending",
 | 
			
		||||
                PipelineStatus::Running => "running",
 | 
			
		||||
                PipelineStatus::Success => "succeeded",
 | 
			
		||||
                PipelineStatus::Failed => "failed",
 | 
			
		||||
                PipelineStatus::Canceled => "canceled",
 | 
			
		||||
                PipelineStatus::Skipped => "skipped",
 | 
			
		||||
                PipelineStatus::Manual => "manual",
 | 
			
		||||
                PipelineStatus::Scheduled => "scheduled",
 | 
			
		||||
                PipelineStatus::Other => "other",
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct PipelineObjectAttributes {
 | 
			
		||||
    pub name: Option<String>,
 | 
			
		||||
    pub r#ref: String,
 | 
			
		||||
    pub status: PipelineStatus,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct PipelineMergeRequest {
 | 
			
		||||
    pub title: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(PartialEq, Debug, Deserialize)]
 | 
			
		||||
#[serde(rename_all = "snake_case")]
 | 
			
		||||
pub enum IssueAction {
 | 
			
		||||
    Open,
 | 
			
		||||
    Close,
 | 
			
		||||
    Reopen,
 | 
			
		||||
    Update,
 | 
			
		||||
    #[serde(other)]
 | 
			
		||||
    Other,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl fmt::Display for IssueAction {
 | 
			
		||||
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
 | 
			
		||||
        write!(
 | 
			
		||||
            f,
 | 
			
		||||
            "{}",
 | 
			
		||||
            match self {
 | 
			
		||||
                IssueAction::Open => "opened",
 | 
			
		||||
                IssueAction::Close => "closed",
 | 
			
		||||
                IssueAction::Reopen => "reopened",
 | 
			
		||||
                IssueAction::Update => "updated",
 | 
			
		||||
                IssueAction::Other => "other",
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
pub struct IssueObjectAttributes {
 | 
			
		||||
    pub iid: u32,
 | 
			
		||||
    pub title: String,
 | 
			
		||||
    pub action: IssueAction,
 | 
			
		||||
    pub url: String,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
#[serde(tag = "object_kind")]
 | 
			
		||||
pub enum GitlabEvent {
 | 
			
		||||
    #[serde(rename = "push")]
 | 
			
		||||
    Push {
 | 
			
		||||
        event_name: String,
 | 
			
		||||
        before: String,
 | 
			
		||||
        after: String,
 | 
			
		||||
        r#ref: String,
 | 
			
		||||
        ref_protected: bool,
 | 
			
		||||
        checkout_sha: String,
 | 
			
		||||
        user_id: u64,
 | 
			
		||||
        user_name: String,
 | 
			
		||||
        user_username: String,
 | 
			
		||||
        user_email: String,
 | 
			
		||||
        user_avatar: Option<String>,
 | 
			
		||||
        project_id: u64,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        repository: Repository,
 | 
			
		||||
        commits: Vec<Commit>,
 | 
			
		||||
        total_commits_count: u64,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(rename = "tag_push")]
 | 
			
		||||
    TagPush {
 | 
			
		||||
        event_name: String,
 | 
			
		||||
        before: String,
 | 
			
		||||
        after: String,
 | 
			
		||||
        r#ref: String,
 | 
			
		||||
        ref_protected: bool,
 | 
			
		||||
        checkout_sha: String,
 | 
			
		||||
        user_id: u64,
 | 
			
		||||
        user_name: String,
 | 
			
		||||
        user_avatar: Option<String>,
 | 
			
		||||
        project_id: u64,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        repository: Repository,
 | 
			
		||||
        commits: Vec<Commit>,
 | 
			
		||||
        total_commits_count: u64,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(rename = "issue")]
 | 
			
		||||
    Issue {
 | 
			
		||||
        user: User,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        object_attributes: IssueObjectAttributes,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(rename = "merge_request")]
 | 
			
		||||
    MergeRequest {
 | 
			
		||||
        user: User,
 | 
			
		||||
        project: Project,
 | 
			
		||||
        repository: Repository,
 | 
			
		||||
        object_attributes: MergeRequestObjectAttributes,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(rename = "pipeline")]
 | 
			
		||||
    Pipeline {
 | 
			
		||||
        object_attributes: PipelineObjectAttributes,
 | 
			
		||||
        merge_request: Option<PipelineMergeRequest>,
 | 
			
		||||
        user: User,
 | 
			
		||||
        project: Project,
 | 
			
		||||
    },
 | 
			
		||||
    #[serde(other)]
 | 
			
		||||
    Other,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
macro_rules! find_publish_event {
 | 
			
		||||
    ($cfgs:expr, $case:pat) => {
 | 
			
		||||
        $cfgs.iter().find(|cfg| match cfg {
 | 
			
		||||
            $case => true,
 | 
			
		||||
            _ => false,
 | 
			
		||||
        })
 | 
			
		||||
    };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl GitlabEventExt for GitlabEvent {
 | 
			
		||||
    fn should_publish(&self, publish_events: &[PublishEvent]) -> bool {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { r#ref, .. } => {
 | 
			
		||||
                if let Some(PublishEvent::Push { branches }) =
 | 
			
		||||
                    find_publish_event!(publish_events, PublishEvent::Push { .. })
 | 
			
		||||
                {
 | 
			
		||||
                    match branches {
 | 
			
		||||
                        None => true,
 | 
			
		||||
                        Some(branches) => {
 | 
			
		||||
                            let refname = parse_ref(r#ref);
 | 
			
		||||
                            branches.iter().any(|branch| branch.find(&refname).is_some())
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                } else {
 | 
			
		||||
                    false
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::TagPush { .. } => find_publish_event!(publish_events, PublishEvent::TagPush).is_some(),
 | 
			
		||||
            GitlabEvent::Issue { object_attributes, .. } => {
 | 
			
		||||
                if let Some(PublishEvent::Issues { actions }) =
 | 
			
		||||
                    find_publish_event!(publish_events, PublishEvent::Issues { .. })
 | 
			
		||||
                {
 | 
			
		||||
                    match actions {
 | 
			
		||||
                        None => true,
 | 
			
		||||
                        Some(actions) => actions.contains(&object_attributes.action),
 | 
			
		||||
                    }
 | 
			
		||||
                } else {
 | 
			
		||||
                    false
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::MergeRequest { object_attributes, .. } => {
 | 
			
		||||
                if let Some(PublishEvent::MergeRequest { actions }) =
 | 
			
		||||
                    find_publish_event!(publish_events, PublishEvent::MergeRequest { .. })
 | 
			
		||||
                {
 | 
			
		||||
                    match actions {
 | 
			
		||||
                        None => true,
 | 
			
		||||
                        Some(actions) => actions.contains(&object_attributes.action),
 | 
			
		||||
                    }
 | 
			
		||||
                } else {
 | 
			
		||||
                    false
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::Pipeline { object_attributes, .. } => {
 | 
			
		||||
                if let Some(PublishEvent::Pipeline { statuses }) =
 | 
			
		||||
                    find_publish_event!(publish_events, PublishEvent::Pipeline { .. })
 | 
			
		||||
                {
 | 
			
		||||
                    match statuses {
 | 
			
		||||
                        None => true,
 | 
			
		||||
                        Some(statuses) => statuses.contains(&object_attributes.status),
 | 
			
		||||
                    }
 | 
			
		||||
                } else {
 | 
			
		||||
                    false
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::Other => false,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn project(&self) -> &Project {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { project, .. } => project,
 | 
			
		||||
            GitlabEvent::TagPush { project, .. } => project,
 | 
			
		||||
            GitlabEvent::Issue { project, .. } => project,
 | 
			
		||||
            GitlabEvent::MergeRequest { project, .. } => project,
 | 
			
		||||
            GitlabEvent::Pipeline { project, .. } => project,
 | 
			
		||||
            GitlabEvent::Other => unreachable!("Unsupported event type"),
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn r#ref(&self) -> Option<&str> {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { r#ref, .. } => Some(r#ref),
 | 
			
		||||
            GitlabEvent::TagPush { r#ref, .. } => Some(r#ref),
 | 
			
		||||
            GitlabEvent::Issue { .. } => None,
 | 
			
		||||
            GitlabEvent::MergeRequest { object_attributes, .. } => Some(&object_attributes.target_branch),
 | 
			
		||||
            GitlabEvent::Pipeline { object_attributes, .. } => Some(&object_attributes.r#ref),
 | 
			
		||||
            GitlabEvent::Other => unreachable!("Unsupported event type"),
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn user(&self) -> &str {
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push { user_name, .. } => user_name,
 | 
			
		||||
            GitlabEvent::TagPush { user_name, .. } => user_name,
 | 
			
		||||
            GitlabEvent::Issue { user, .. } => &user.name,
 | 
			
		||||
            GitlabEvent::MergeRequest { user, .. } => &user.name,
 | 
			
		||||
            GitlabEvent::Pipeline { user, .. } => &user.name,
 | 
			
		||||
            GitlabEvent::Other => unreachable!("Unsupported event type"),
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn titles(&self) -> Vec<String> {
 | 
			
		||||
        fn find_commit<'a>(commits: &'a [Commit], sha: &str) -> Option<&'a Commit> {
 | 
			
		||||
            commits.iter().find(|commit| commit.id == sha)
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        match self {
 | 
			
		||||
            GitlabEvent::Push {
 | 
			
		||||
                after,
 | 
			
		||||
                project,
 | 
			
		||||
                commits,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                const MAX_COMMITS: usize = 15; // TODO: make configurable
 | 
			
		||||
                commits.iter().fold(Vec::new(), |mut titles, commit| {
 | 
			
		||||
                    if titles.len() < MAX_COMMITS {
 | 
			
		||||
                        titles.push(format!("[**pushed** {}]({})", commit.title, commit.url));
 | 
			
		||||
 | 
			
		||||
                        if titles.len() == MAX_COMMITS {
 | 
			
		||||
                            titles.push(format!(
 | 
			
		||||
                                "[**pushed** {} more commits]({}/-/compare/{}...{})",
 | 
			
		||||
                                commits.len() - MAX_COMMITS,
 | 
			
		||||
                                project.web_url,
 | 
			
		||||
                                commit.id,
 | 
			
		||||
                                after
 | 
			
		||||
                            ));
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    titles
 | 
			
		||||
                })
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::TagPush {
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                project,
 | 
			
		||||
                commits,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                let title = format!(
 | 
			
		||||
                    "**tagged** {}",
 | 
			
		||||
                    find_commit(commits, checkout_sha)
 | 
			
		||||
                        .map(|commit| &commit.title)
 | 
			
		||||
                        .unwrap_or(checkout_sha)
 | 
			
		||||
                );
 | 
			
		||||
                let url = format!("{}/-/tags/{}", project.web_url, parse_ref(r#ref));
 | 
			
		||||
                vec![markdown_link(&title, &url)]
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::Issue { object_attributes, .. } => {
 | 
			
		||||
                if object_attributes.action != IssueAction::Other {
 | 
			
		||||
                    let title = format!(
 | 
			
		||||
                        "Issue #{} **{}**: {}",
 | 
			
		||||
                        object_attributes.iid, object_attributes.action, object_attributes.title
 | 
			
		||||
                    );
 | 
			
		||||
                    vec![markdown_link(&title, &object_attributes.url)]
 | 
			
		||||
                } else {
 | 
			
		||||
                    vec![]
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::MergeRequest { object_attributes, .. } => {
 | 
			
		||||
                if object_attributes.action != MergeRequestAction::Other {
 | 
			
		||||
                    let title = format!(
 | 
			
		||||
                        "MR !{} **{}**: {}",
 | 
			
		||||
                        object_attributes.iid, object_attributes.action, object_attributes.title
 | 
			
		||||
                    );
 | 
			
		||||
                    vec![markdown_link(&title, &object_attributes.url)]
 | 
			
		||||
                } else {
 | 
			
		||||
                    vec![]
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::Pipeline {
 | 
			
		||||
                object_attributes,
 | 
			
		||||
                merge_request,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                if object_attributes.status != PipelineStatus::Other {
 | 
			
		||||
                    let title = object_attributes
 | 
			
		||||
                        .name
 | 
			
		||||
                        .as_ref()
 | 
			
		||||
                        .cloned()
 | 
			
		||||
                        .or(merge_request.as_ref().map(|mr| mr.title.clone()))
 | 
			
		||||
                        .iter()
 | 
			
		||||
                        .fold(format!("Pipeline **{}**", object_attributes.status), |accum, title| {
 | 
			
		||||
                            format!("{accum}: {title}")
 | 
			
		||||
                        });
 | 
			
		||||
                    vec![markdown_link(&title, &object_attributes.url)]
 | 
			
		||||
                } else {
 | 
			
		||||
                    vec![]
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            GitlabEvent::Other => unreachable!("Unsupported event type"),
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[inline]
 | 
			
		||||
fn markdown_link(title: &String, url: &String) -> String {
 | 
			
		||||
    format!("[{title}]({url})")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn parse_ref(r#ref: &str) -> String {
 | 
			
		||||
    if r#ref.starts_with("refs/") {
 | 
			
		||||
        let parts = r#ref.split('/').collect::<Vec<_>>();
 | 
			
		||||
        if parts.len() > 2 {
 | 
			
		||||
            parts.into_iter().skip(2).collect::<Vec<_>>().join("/").to_string()
 | 
			
		||||
        } else {
 | 
			
		||||
            r#ref.to_string()
 | 
			
		||||
        }
 | 
			
		||||
    } else {
 | 
			
		||||
        r#ref.to_string()
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[cfg(test)]
 | 
			
		||||
mod test {
 | 
			
		||||
    use super::*;
 | 
			
		||||
    use regex::Regex;
 | 
			
		||||
    use std::{fs::File, io::BufReader};
 | 
			
		||||
 | 
			
		||||
    fn load_test_data(name: &str) -> anyhow::Result<GitlabEvent> {
 | 
			
		||||
        let f = File::open(format!("{}/test-data/{}.json", env!("CARGO_MANIFEST_DIR"), name))?;
 | 
			
		||||
        let r = BufReader::new(f);
 | 
			
		||||
        let event: GitlabEvent = serde_json::from_reader(r)?;
 | 
			
		||||
        Ok(event)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_push_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("push-event")?;
 | 
			
		||||
 | 
			
		||||
        match &event {
 | 
			
		||||
            GitlabEvent::Push {
 | 
			
		||||
                event_name,
 | 
			
		||||
                before,
 | 
			
		||||
                after,
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                user_username,
 | 
			
		||||
                project,
 | 
			
		||||
                repository,
 | 
			
		||||
                total_commits_count,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(event_name, "push");
 | 
			
		||||
                assert_eq!(before, "95790bf891e76fee5e1747ab589903a6a1f80f22");
 | 
			
		||||
                assert_eq!(after, "da1560886d4f094c3e6c9ef40349f7d38b5d27d7");
 | 
			
		||||
                assert_eq!(r#ref, "refs/heads/master");
 | 
			
		||||
                assert_eq!(checkout_sha, "da1560886d4f094c3e6c9ef40349f7d38b5d27d7");
 | 
			
		||||
                assert_eq!(user_username, "jsmith");
 | 
			
		||||
                assert_eq!(project.name, "Diaspora");
 | 
			
		||||
                assert_eq!(project.namespace, "Mike");
 | 
			
		||||
                assert_eq!(repository.name, "Diaspora");
 | 
			
		||||
                assert_eq!(repository.url, "git@example.com:mike/diaspora.git");
 | 
			
		||||
                assert_eq!(*total_commits_count, 4);
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a push event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push { branches: None }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push {
 | 
			
		||||
            branches: Some(vec![Regex::new(r"^master$").unwrap()]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push {
 | 
			
		||||
            branches: Some(vec![Regex::new(r"^mas").unwrap()]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push {
 | 
			
		||||
            branches: Some(vec![Regex::new(r"^foobar$").unwrap()]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Pipeline { statuses: None }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_tag_push_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("tag-push-event")?;
 | 
			
		||||
 | 
			
		||||
        match &event {
 | 
			
		||||
            GitlabEvent::TagPush {
 | 
			
		||||
                event_name,
 | 
			
		||||
                before,
 | 
			
		||||
                after,
 | 
			
		||||
                r#ref,
 | 
			
		||||
                checkout_sha,
 | 
			
		||||
                user_name,
 | 
			
		||||
                project,
 | 
			
		||||
                repository,
 | 
			
		||||
                total_commits_count,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(event_name, "tag_push");
 | 
			
		||||
                assert_eq!(before, "0000000000000000000000000000000000000000");
 | 
			
		||||
                assert_eq!(after, "82b3d5ae55f7080f1e6022629cdb57bfae7cccc7");
 | 
			
		||||
                assert_eq!(r#ref, "refs/tags/v1.0.0");
 | 
			
		||||
                assert_eq!(checkout_sha, "82b3d5ae55f7080f1e6022629cdb57bfae7cccc7");
 | 
			
		||||
                assert_eq!(user_name, "John Smith");
 | 
			
		||||
                assert_eq!(project.name, "Example");
 | 
			
		||||
                assert_eq!(project.namespace, "Jsmith");
 | 
			
		||||
                assert_eq!(repository.name, "Example");
 | 
			
		||||
                assert_eq!(*total_commits_count, 0);
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a tag push event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::TagPush];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push { branches: None }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_issue_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("issue-event")?;
 | 
			
		||||
 | 
			
		||||
        match &event {
 | 
			
		||||
            GitlabEvent::Issue {
 | 
			
		||||
                user,
 | 
			
		||||
                object_attributes,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(user.name, "Administrator");
 | 
			
		||||
                assert_eq!(object_attributes.iid, 23);
 | 
			
		||||
                assert_eq!(object_attributes.action, IssueAction::Open);
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not an issue event"),
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Issues { actions: None }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Issues {
 | 
			
		||||
            actions: Some(vec![IssueAction::Open]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Issues {
 | 
			
		||||
            actions: Some(vec![IssueAction::Close]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push { branches: None }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_merge_request_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("merge-request-event")?;
 | 
			
		||||
 | 
			
		||||
        match &event {
 | 
			
		||||
            GitlabEvent::MergeRequest {
 | 
			
		||||
                user,
 | 
			
		||||
                object_attributes,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(user.name, "Administrator");
 | 
			
		||||
                assert_eq!(object_attributes.action, MergeRequestAction::Open);
 | 
			
		||||
                assert_eq!(object_attributes.title, "MS-Viewport");
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a merge request event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::MergeRequest { actions: None }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::MergeRequest {
 | 
			
		||||
            actions: Some(vec![MergeRequestAction::Open]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::MergeRequest {
 | 
			
		||||
            actions: Some(vec![MergeRequestAction::Close]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push { branches: None }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn parse_pipeline_event() -> anyhow::Result<()> {
 | 
			
		||||
        let event = load_test_data("pipeline-event")?;
 | 
			
		||||
 | 
			
		||||
        match &event {
 | 
			
		||||
            GitlabEvent::Pipeline {
 | 
			
		||||
                object_attributes,
 | 
			
		||||
                merge_request,
 | 
			
		||||
                user,
 | 
			
		||||
                ..
 | 
			
		||||
            } => {
 | 
			
		||||
                assert_eq!(object_attributes.name, Some("Pipeline for branch: master".to_string()));
 | 
			
		||||
                assert_eq!(object_attributes.r#ref, "master");
 | 
			
		||||
                assert_eq!(object_attributes.status, PipelineStatus::Failed);
 | 
			
		||||
                assert_eq!(merge_request.as_ref().unwrap().title, "Test");
 | 
			
		||||
                assert_eq!(user.name, "Administrator");
 | 
			
		||||
            }
 | 
			
		||||
            _ => panic!("not a pipeline event"),
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Pipeline { statuses: None }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Pipeline {
 | 
			
		||||
            statuses: Some(vec![PipelineStatus::Failed]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Pipeline {
 | 
			
		||||
            statuses: Some(vec![PipelineStatus::Success]),
 | 
			
		||||
        }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        let publish_events = vec![PublishEvent::Push { branches: None }];
 | 
			
		||||
        assert!(!event.should_publish(&publish_events));
 | 
			
		||||
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,165 +0,0 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
use std::sync::Arc;
 | 
			
		||||
 | 
			
		||||
use axum::{extract::State, routing::post, Json, Router};
 | 
			
		||||
use axum_extra::{headers, TypedHeader};
 | 
			
		||||
use constant_time_eq::constant_time_eq;
 | 
			
		||||
use http::{HeaderName, HeaderValue, StatusCode};
 | 
			
		||||
use matrix_sdk::{
 | 
			
		||||
    ruma::{events::room::message::RoomMessageEventContent, OwnedRoomOrAliasId},
 | 
			
		||||
    Client,
 | 
			
		||||
};
 | 
			
		||||
use tokio::sync::mpsc::{self, Sender};
 | 
			
		||||
 | 
			
		||||
use crate::{
 | 
			
		||||
    config::GitlabWebhookConfig,
 | 
			
		||||
    gitlab_event::{parse_ref, GitlabEvent, GitlabEventExt},
 | 
			
		||||
    matrix,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static X_GITLAB_TOKEN: HeaderName = HeaderName::from_static("x-gitlab-token");
 | 
			
		||||
 | 
			
		||||
struct XGitlabToken(String);
 | 
			
		||||
 | 
			
		||||
impl headers::Header for XGitlabToken {
 | 
			
		||||
    fn name() -> &'static HeaderName {
 | 
			
		||||
        &X_GITLAB_TOKEN
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn decode<'i, I>(values: &mut I) -> Result<Self, headers::Error>
 | 
			
		||||
    where
 | 
			
		||||
        Self: Sized,
 | 
			
		||||
        I: Iterator<Item = &'i http::HeaderValue>,
 | 
			
		||||
    {
 | 
			
		||||
        let value = values.next().ok_or_else(headers::Error::invalid)?;
 | 
			
		||||
 | 
			
		||||
        if value.is_empty() {
 | 
			
		||||
            Err(headers::Error::invalid())
 | 
			
		||||
        } else {
 | 
			
		||||
            Ok(XGitlabToken(
 | 
			
		||||
                value.to_str().map_err(|_| headers::Error::invalid())?.to_string(),
 | 
			
		||||
            ))
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fn encode<E: Extend<http::HeaderValue>>(&self, values: &mut E) {
 | 
			
		||||
        values.extend(std::iter::once(HeaderValue::from_str(self.0.as_str()).unwrap()));
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Clone)]
 | 
			
		||||
struct WebhookState {
 | 
			
		||||
    config: Arc<GitlabWebhookConfig>,
 | 
			
		||||
    event_tx: Sender<(GitlabEvent, OwnedRoomOrAliasId)>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn build_gitlab_messages(event: &GitlabEvent) -> Vec<String> {
 | 
			
		||||
    let project = event.project();
 | 
			
		||||
    let refname = event.r#ref().map(parse_ref);
 | 
			
		||||
    event
 | 
			
		||||
        .titles()
 | 
			
		||||
        .iter()
 | 
			
		||||
        .map(|title| {
 | 
			
		||||
            format!(
 | 
			
		||||
                "\\[{}\\] {}*{}* {}",
 | 
			
		||||
                project.path_with_namespace,
 | 
			
		||||
                refname.as_ref().map(|rn| format!("`{rn}` ")).unwrap_or_default(),
 | 
			
		||||
                event.user(),
 | 
			
		||||
                title,
 | 
			
		||||
            )
 | 
			
		||||
        })
 | 
			
		||||
        .collect()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub async fn handle_gitlab_event(
 | 
			
		||||
    event: GitlabEvent,
 | 
			
		||||
    room_id: &OwnedRoomOrAliasId,
 | 
			
		||||
    matrix_client: &Client,
 | 
			
		||||
) -> anyhow::Result<()> {
 | 
			
		||||
    let room = matrix::ensure_room_joined(matrix_client, room_id).await?;
 | 
			
		||||
    for msg in build_gitlab_messages(&event) {
 | 
			
		||||
        debug!("Sending message to {room_id}: {msg}");
 | 
			
		||||
        let msg_content = RoomMessageEventContent::text_markdown(&msg);
 | 
			
		||||
        room.send(msg_content).await?;
 | 
			
		||||
    }
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn handle_hooks_gitlab(
 | 
			
		||||
    State(state): State<WebhookState>,
 | 
			
		||||
    TypedHeader(token): TypedHeader<XGitlabToken>,
 | 
			
		||||
    Json(event): Json<GitlabEvent>,
 | 
			
		||||
) -> (StatusCode, &'static str) {
 | 
			
		||||
    match event {
 | 
			
		||||
        GitlabEvent::Other => (StatusCode::BAD_REQUEST, "Unsupported Gitlab event type"),
 | 
			
		||||
        _ => {
 | 
			
		||||
            let project = event.project();
 | 
			
		||||
            let config_key = project.web_url.replace("http://", "").replace("https://", "");
 | 
			
		||||
            if let Some(repo_config) = state.config.repo_configs.get(&config_key) {
 | 
			
		||||
                if !constant_time_eq(token.0.as_bytes(), repo_config.token.as_bytes()) {
 | 
			
		||||
                    warn!("Invalid token for repo '{config_key}'");
 | 
			
		||||
                    (StatusCode::FORBIDDEN, "Invalid token")
 | 
			
		||||
                } else {
 | 
			
		||||
                    debug!("payload: {event:?}");
 | 
			
		||||
                    if let Some(room) = &repo_config.room.as_ref().or(state.config.default_room.as_ref()) {
 | 
			
		||||
                        let publish_events = repo_config
 | 
			
		||||
                            .publish_events
 | 
			
		||||
                            .as_ref()
 | 
			
		||||
                            .or(state.config.default_publish_events.as_ref());
 | 
			
		||||
                        if publish_events.map(|ecs| event.should_publish(ecs)).unwrap_or(true) {
 | 
			
		||||
                            if let Err(err) = state.event_tx.send((event, (*room).clone())).await {
 | 
			
		||||
                                warn!("Failed to enqueue payload: {err}");
 | 
			
		||||
                            }
 | 
			
		||||
                        }
 | 
			
		||||
                        (StatusCode::OK, "OK")
 | 
			
		||||
                    } else {
 | 
			
		||||
                        info!("Channel not configured for repo '{config_key}'");
 | 
			
		||||
                        (StatusCode::NOT_FOUND, "Matrix room not configured for repo")
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            } else {
 | 
			
		||||
                info!("Repo '{config_key}' unconfigured");
 | 
			
		||||
                (StatusCode::NOT_FOUND, "Repo not configured")
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn build_route(config: GitlabWebhookConfig, matrix_client: Client) -> Router {
 | 
			
		||||
    let (event_tx, mut event_rx) = mpsc::channel::<(GitlabEvent, OwnedRoomOrAliasId)>(100);
 | 
			
		||||
    tokio::spawn(async move {
 | 
			
		||||
        while let Some((event, room)) = event_rx.recv().await {
 | 
			
		||||
            if let Err(err) = handle_gitlab_event(event, &room, &matrix_client).await {
 | 
			
		||||
                warn!("Failed to handle payload: {err}");
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    let path = if let Some(url_prefix) = &config.url_prefix {
 | 
			
		||||
        format!("{url_prefix}/hooks/gitlab")
 | 
			
		||||
    } else {
 | 
			
		||||
        "/hooks/gitlab".to_owned()
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    let state = WebhookState {
 | 
			
		||||
        config: Arc::new(config),
 | 
			
		||||
        event_tx,
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    Router::new().route(&path, post(handle_hooks_gitlab)).with_state(state)
 | 
			
		||||
}
 | 
			
		||||
@@ -1,275 +0,0 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
use std::{
 | 
			
		||||
    fmt,
 | 
			
		||||
    io::{BufReader, BufWriter, ErrorKind},
 | 
			
		||||
    path::PathBuf,
 | 
			
		||||
    time::{Duration, SystemTime},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
use anyhow::Context;
 | 
			
		||||
use chrono::{DateTime, Utc};
 | 
			
		||||
use futures::{future::join_all, FutureExt};
 | 
			
		||||
use matrix_sdk::{
 | 
			
		||||
    ruma::{events::room::message::RoomMessageEventContent, OwnedRoomOrAliasId},
 | 
			
		||||
    Client,
 | 
			
		||||
};
 | 
			
		||||
use reqwest::redirect;
 | 
			
		||||
use serde::de;
 | 
			
		||||
use tokio::{fs::File, task::JoinHandle, time::sleep};
 | 
			
		||||
 | 
			
		||||
use crate::{
 | 
			
		||||
    config::{MailArchiveConfig, MailListConfig},
 | 
			
		||||
    matrix,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#[derive(Clone, Copy, Serialize, Deserialize)]
 | 
			
		||||
struct ListState {
 | 
			
		||||
    last_pub_date: DateTime<Utc>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
struct RssPubDate {
 | 
			
		||||
    #[serde(rename = "$text", deserialize_with = "deser_rfc2616")]
 | 
			
		||||
    value: DateTime<Utc>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
struct RssItem {
 | 
			
		||||
    title: String,
 | 
			
		||||
    link: String,
 | 
			
		||||
    #[serde(rename = "pubDate")]
 | 
			
		||||
    pub_date: RssPubDate,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
struct RssChannel {
 | 
			
		||||
    #[serde(rename = "item")]
 | 
			
		||||
    items: Vec<RssItem>,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[derive(Debug, Deserialize)]
 | 
			
		||||
struct MailRss {
 | 
			
		||||
    channel: RssChannel,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn load_list_state(state_file: &PathBuf) -> anyhow::Result<ListState> {
 | 
			
		||||
    match File::open(state_file).await {
 | 
			
		||||
        Err(err) if err.kind() == ErrorKind::NotFound => {
 | 
			
		||||
            // If we have no state, we probably don't want to blast out events
 | 
			
		||||
            // for every single item in the RSS feed, so pretend the last time
 | 
			
		||||
            // we published was right now.
 | 
			
		||||
            let list_state = ListState {
 | 
			
		||||
                last_pub_date: SystemTime::now().into(),
 | 
			
		||||
            };
 | 
			
		||||
            save_list_state(list_state, state_file).await?;
 | 
			
		||||
            Ok(list_state)
 | 
			
		||||
        }
 | 
			
		||||
        Err(err) => Err(err)?,
 | 
			
		||||
        Ok(f) => {
 | 
			
		||||
            let r = BufReader::new(f.into_std().await);
 | 
			
		||||
            Ok(tokio::task::spawn_blocking(move || serde_yaml::from_reader(r)).await??)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn save_list_state(list_state: ListState, state_file: &PathBuf) -> anyhow::Result<()> {
 | 
			
		||||
    let f = File::options()
 | 
			
		||||
        .write(true)
 | 
			
		||||
        .truncate(true)
 | 
			
		||||
        .create(true)
 | 
			
		||||
        .open(state_file)
 | 
			
		||||
        .await?;
 | 
			
		||||
    let w = BufWriter::new(f.into_std().await);
 | 
			
		||||
    tokio::task::spawn_blocking(move || serde_yaml::to_writer(w, &list_state)).await??;
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn handle_list(
 | 
			
		||||
    list: &MailListConfig,
 | 
			
		||||
    state_file: &PathBuf,
 | 
			
		||||
    http_client: &reqwest::Client,
 | 
			
		||||
    url: &String,
 | 
			
		||||
    matrix_client: &Client,
 | 
			
		||||
    publish_on_replies: bool,
 | 
			
		||||
    room_ids: &[OwnedRoomOrAliasId],
 | 
			
		||||
) -> anyhow::Result<()> {
 | 
			
		||||
    let list_state = load_list_state(state_file).await?;
 | 
			
		||||
 | 
			
		||||
    let rooms_f = room_ids.iter().map(|room_id| {
 | 
			
		||||
        matrix::ensure_room_joined(matrix_client, room_id)
 | 
			
		||||
            .map(move |res| res.with_context(|| format!("Failed to join Matrix room '{room_id}'")))
 | 
			
		||||
    });
 | 
			
		||||
    let rooms = join_all(rooms_f)
 | 
			
		||||
        .await
 | 
			
		||||
        .into_iter()
 | 
			
		||||
        .flat_map(|room_res| match room_res {
 | 
			
		||||
            Err(err) => {
 | 
			
		||||
                warn!("{err:#}");
 | 
			
		||||
                vec![]
 | 
			
		||||
            }
 | 
			
		||||
            Ok(room) => vec![room],
 | 
			
		||||
        })
 | 
			
		||||
        .collect::<Vec<_>>();
 | 
			
		||||
    if rooms.is_empty() {
 | 
			
		||||
        return Err(anyhow!("Failed to join all rooms for list '{}'; skipping", list.name));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let response = http_client
 | 
			
		||||
        .get(url)
 | 
			
		||||
        .send()
 | 
			
		||||
        .await
 | 
			
		||||
        .with_context(|| format!("Failed to fetch mail RSS feed from '{url}'"))
 | 
			
		||||
        .and_then(|response| {
 | 
			
		||||
            if !response.status().is_success() {
 | 
			
		||||
                Err(anyhow!(
 | 
			
		||||
                    "Failed to fetch mail RSS feed from '{}': server returned status {}",
 | 
			
		||||
                    url,
 | 
			
		||||
                    response.status().as_u16()
 | 
			
		||||
                ))
 | 
			
		||||
            } else {
 | 
			
		||||
                Ok(response)
 | 
			
		||||
            }
 | 
			
		||||
        })?;
 | 
			
		||||
    let body = response
 | 
			
		||||
        .text()
 | 
			
		||||
        .await
 | 
			
		||||
        .with_context(|| format!("Failed to decode RSS response body for '{url}'"))?;
 | 
			
		||||
    let mail_rss = tokio::task::spawn_blocking(move || quick_xml::de::from_str::<MailRss>(&body))
 | 
			
		||||
        .await?
 | 
			
		||||
        .with_context(|| format!("Failed to parse RSS feed for '{url}'"))?;
 | 
			
		||||
    let items = mail_rss
 | 
			
		||||
        .channel
 | 
			
		||||
        .items
 | 
			
		||||
        .into_iter()
 | 
			
		||||
        .rev()
 | 
			
		||||
        .skip_while(|item| item.pub_date.value <= list_state.last_pub_date)
 | 
			
		||||
        .collect::<Vec<_>>();
 | 
			
		||||
 | 
			
		||||
    for room in rooms {
 | 
			
		||||
        for item in &items {
 | 
			
		||||
            if publish_on_replies || !item.title.starts_with("Re: ") {
 | 
			
		||||
                let msg = RoomMessageEventContent::text_markdown(format!(
 | 
			
		||||
                    "\\[{}\\] [{}]({})",
 | 
			
		||||
                    list.name, item.title, item.link
 | 
			
		||||
                ));
 | 
			
		||||
                room.send(msg)
 | 
			
		||||
                    .await
 | 
			
		||||
                    .with_context(|| format!("Failed to send message to room '{}'", room.room_id()))?;
 | 
			
		||||
            }
 | 
			
		||||
            save_list_state(
 | 
			
		||||
                ListState {
 | 
			
		||||
                    last_pub_date: item.pub_date.value,
 | 
			
		||||
                },
 | 
			
		||||
                state_file,
 | 
			
		||||
            )
 | 
			
		||||
            .await?;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn start_polling(config: MailArchiveConfig, matrix_client: Client) -> anyhow::Result<Vec<JoinHandle<()>>> {
 | 
			
		||||
    let http_client = reqwest::Client::builder()
 | 
			
		||||
        .user_agent(format!("{}/{}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")))
 | 
			
		||||
        .gzip(true)
 | 
			
		||||
        .redirect(redirect::Policy::default())
 | 
			
		||||
        .timeout(Duration::from_secs(8))
 | 
			
		||||
        .build()?;
 | 
			
		||||
 | 
			
		||||
    Ok(config
 | 
			
		||||
        .lists
 | 
			
		||||
        .into_iter()
 | 
			
		||||
        .map(|list| {
 | 
			
		||||
            let room_ids = if list.rooms.is_empty() {
 | 
			
		||||
                &config.default_rooms
 | 
			
		||||
            } else {
 | 
			
		||||
                &list.rooms
 | 
			
		||||
            }
 | 
			
		||||
            .clone();
 | 
			
		||||
            let list = list.clone();
 | 
			
		||||
            let http_client = http_client.clone();
 | 
			
		||||
            let matrix_client = matrix_client.clone();
 | 
			
		||||
            let url = format!("https://www.mail-archive.com/{}/maillist.xml", list.name);
 | 
			
		||||
            let state_file = config.state_dir.join(format!("{}.state", list.name));
 | 
			
		||||
            let update_interval = Duration::from_secs(config.update_interval);
 | 
			
		||||
 | 
			
		||||
            tokio::spawn(async move {
 | 
			
		||||
                if !room_ids.is_empty() {
 | 
			
		||||
                    loop {
 | 
			
		||||
                        if let Err(err) = handle_list(
 | 
			
		||||
                            &list,
 | 
			
		||||
                            &state_file,
 | 
			
		||||
                            &http_client,
 | 
			
		||||
                            &url,
 | 
			
		||||
                            &matrix_client,
 | 
			
		||||
                            list.publish_on_replies,
 | 
			
		||||
                            &room_ids,
 | 
			
		||||
                        )
 | 
			
		||||
                        .await
 | 
			
		||||
                        {
 | 
			
		||||
                            warn!("{err:#}");
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        sleep(update_interval).await;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            })
 | 
			
		||||
        })
 | 
			
		||||
        .collect())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn deser_rfc2616<'de, D>(deserializer: D) -> Result<DateTime<Utc>, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct Rfc2616Visitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for Rfc2616Visitor {
 | 
			
		||||
        type Value = DateTime<Utc>;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("an RFC2616-formatted datetime")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            dateparser::parse(v).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(Rfc2616Visitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[cfg(test)]
 | 
			
		||||
mod test {
 | 
			
		||||
    use std::{fs::File, io::BufReader};
 | 
			
		||||
 | 
			
		||||
    use super::MailRss;
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    pub fn test_feed_deser() -> anyhow::Result<()> {
 | 
			
		||||
        let f = File::open(format!("{}/test-data/maillist.xml", env!("CARGO_MANIFEST_DIR")))?;
 | 
			
		||||
        let r = BufReader::new(f);
 | 
			
		||||
        let mail_rss = quick_xml::de::from_reader::<_, MailRss>(r)?;
 | 
			
		||||
        println!("{mail_rss:#?}");
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										225
									
								
								src/main.rs
									
									
									
									
									
								
							
							
						
						
									
										225
									
								
								src/main.rs
									
									
									
									
									
								
							@@ -1,19 +1,3 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
#[macro_use(anyhow)]
 | 
			
		||||
extern crate anyhow;
 | 
			
		||||
#[macro_use]
 | 
			
		||||
@@ -22,60 +6,189 @@ extern crate log;
 | 
			
		||||
extern crate serde;
 | 
			
		||||
 | 
			
		||||
mod config;
 | 
			
		||||
mod gitlab_event;
 | 
			
		||||
mod gitlab_webhook;
 | 
			
		||||
mod mail_archive;
 | 
			
		||||
mod matrix;
 | 
			
		||||
mod event;
 | 
			
		||||
 | 
			
		||||
use std::{env, process::exit};
 | 
			
		||||
use std::{env, net::IpAddr, process::exit, sync::Arc, time::Duration};
 | 
			
		||||
 | 
			
		||||
use anyhow::Context;
 | 
			
		||||
use futures::future::join_all;
 | 
			
		||||
use tokio::net::TcpListener;
 | 
			
		||||
use constant_time_eq::constant_time_eq;
 | 
			
		||||
use event::{GitlabEvent, GitlabEventExt};
 | 
			
		||||
use http::StatusCode;
 | 
			
		||||
use matrix_sdk::{
 | 
			
		||||
    config::SyncSettings,
 | 
			
		||||
    room::Joined,
 | 
			
		||||
    ruma::{events::room::message::RoomMessageEventContent, OwnedRoomOrAliasId},
 | 
			
		||||
    BaseRoom, Client,
 | 
			
		||||
};
 | 
			
		||||
use warp::Filter;
 | 
			
		||||
 | 
			
		||||
async fn build_sync_settings(matrix_client: &Client) -> SyncSettings {
 | 
			
		||||
    let mut settings = SyncSettings::default().timeout(Duration::from_secs(30));
 | 
			
		||||
    if let Some(token) = matrix_client.sync_token().await {
 | 
			
		||||
        settings = settings.token(token);
 | 
			
		||||
    }
 | 
			
		||||
    settings
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn matrix_connect(config: &config::Config) -> anyhow::Result<Client> {
 | 
			
		||||
    let client = Client::builder()
 | 
			
		||||
        .server_name(config.user_id.server_name())
 | 
			
		||||
        .user_agent(format!("{}/{}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")))
 | 
			
		||||
        .build()
 | 
			
		||||
        .await?;
 | 
			
		||||
    client
 | 
			
		||||
        .login_username(&config.user_id, &config.password)
 | 
			
		||||
        .initial_device_display_name("Bebot")
 | 
			
		||||
        .send()
 | 
			
		||||
        .await?;
 | 
			
		||||
    info!("Connected to matrix as {}; waiting for first sync", config.user_id);
 | 
			
		||||
 | 
			
		||||
    let settings = build_sync_settings(&client).await;
 | 
			
		||||
    client.sync_once(settings).await?;
 | 
			
		||||
    info!("First matrix sync complete");
 | 
			
		||||
 | 
			
		||||
    let sync_client = client.clone();
 | 
			
		||||
    tokio::spawn(async move {
 | 
			
		||||
        let settings = build_sync_settings(&sync_client).await;
 | 
			
		||||
        if let Err(err) = sync_client.sync(settings).await {
 | 
			
		||||
            error!("Matrix sync failed: {}", err);
 | 
			
		||||
            exit(1);
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    Ok(client)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn ensure_matrix_room_joined(matrix_client: &Client, room_id: &OwnedRoomOrAliasId) -> anyhow::Result<Joined> {
 | 
			
		||||
    fn room_matches(a_room: &BaseRoom, our_room: &OwnedRoomOrAliasId) -> bool {
 | 
			
		||||
        let our_room_str = our_room.as_str();
 | 
			
		||||
        a_room.room_id().as_str() == our_room_str
 | 
			
		||||
            || a_room
 | 
			
		||||
                .canonical_alias()
 | 
			
		||||
                .iter()
 | 
			
		||||
                .find(|alias| alias.as_str() == our_room_str)
 | 
			
		||||
                .is_some()
 | 
			
		||||
            || a_room
 | 
			
		||||
                .alt_aliases()
 | 
			
		||||
                .iter()
 | 
			
		||||
                .find(|alias| alias.as_str() == our_room_str)
 | 
			
		||||
                .is_some()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let mut room = matrix_client
 | 
			
		||||
        .joined_rooms()
 | 
			
		||||
        .iter()
 | 
			
		||||
        .find(|a_room| room_matches(*a_room, room_id))
 | 
			
		||||
        .map(|room| room.clone());
 | 
			
		||||
    if room.is_none() {
 | 
			
		||||
        if let Some(invited) = matrix_client
 | 
			
		||||
            .invited_rooms()
 | 
			
		||||
            .iter()
 | 
			
		||||
            .find(|a_room| room_matches(*a_room, room_id))
 | 
			
		||||
        {
 | 
			
		||||
            invited.accept_invitation().await?;
 | 
			
		||||
        } else {
 | 
			
		||||
            matrix_client.join_room_by_id_or_alias(room_id, &[]).await?;
 | 
			
		||||
        }
 | 
			
		||||
        let settings = build_sync_settings(&matrix_client).await;
 | 
			
		||||
        matrix_client.sync_once(settings).await?;
 | 
			
		||||
        room = matrix_client
 | 
			
		||||
            .joined_rooms()
 | 
			
		||||
            .iter()
 | 
			
		||||
            .find(|a_room| room_matches(*a_room, room_id))
 | 
			
		||||
            .map(|room| room.clone());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    room.ok_or_else(|| anyhow!("Unable to join room {}", room_id))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn build_gitlab_message(event: &GitlabEvent) -> String {
 | 
			
		||||
    let project = event.project();
 | 
			
		||||
    let refname = event
 | 
			
		||||
        .r#ref()
 | 
			
		||||
        .split('/')
 | 
			
		||||
        .last()
 | 
			
		||||
        .unwrap_or_else(|| event.r#ref())
 | 
			
		||||
        .to_string();
 | 
			
		||||
    format!(
 | 
			
		||||
        "*{}* {} **{}** [{}]({})",
 | 
			
		||||
        project.path_with_namespace,
 | 
			
		||||
        refname,
 | 
			
		||||
        event.user(),
 | 
			
		||||
        event.title(),
 | 
			
		||||
        event.url()
 | 
			
		||||
    )
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn handle_gitlab_event(
 | 
			
		||||
    event: GitlabEvent,
 | 
			
		||||
    room_id: &OwnedRoomOrAliasId,
 | 
			
		||||
    matrix_client: &Client,
 | 
			
		||||
) -> anyhow::Result<()> {
 | 
			
		||||
    let room = ensure_matrix_room_joined(matrix_client, room_id).await?;
 | 
			
		||||
    let msg = build_gitlab_message(&event);
 | 
			
		||||
    debug!("Sending message to {}: {}", room_id, msg);
 | 
			
		||||
    let msg_content = RoomMessageEventContent::text_markdown(&msg);
 | 
			
		||||
    room.send(msg_content, None).await?;
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async fn run() -> anyhow::Result<()> {
 | 
			
		||||
    info!("{} v{} starting...", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
 | 
			
		||||
 | 
			
		||||
    let config_path = env::args()
 | 
			
		||||
        .nth(1)
 | 
			
		||||
        .ok_or_else(|| anyhow!("Config file should be passed as only parameter"))?;
 | 
			
		||||
    let mut config = config::load(config_path).await?;
 | 
			
		||||
    let config = Arc::new(config::load(config_path).await?);
 | 
			
		||||
    let addr = config
 | 
			
		||||
        .bind_address
 | 
			
		||||
        .as_ref()
 | 
			
		||||
        .map(|ba| ba.clone())
 | 
			
		||||
        .unwrap_or_else(|| "127.0.0.1".to_string())
 | 
			
		||||
        .parse::<IpAddr>()
 | 
			
		||||
        .context("Failed to parse bind_address")?;
 | 
			
		||||
    let port = config.bind_port.unwrap_or(3000);
 | 
			
		||||
 | 
			
		||||
    let mut join_handles = Vec::default();
 | 
			
		||||
    let matrix_client = matrix_connect(&config).await.context("Failed to connect to Matrix")?;
 | 
			
		||||
 | 
			
		||||
    let matrix_client = matrix::connect(&config).await.context("Failed to connect to Matrix")?;
 | 
			
		||||
    if let Some(avatar_path) = config.avatar_image_path {
 | 
			
		||||
        let matrix_client = matrix_client.clone();
 | 
			
		||||
        let handle = tokio::spawn(async move {
 | 
			
		||||
            if let Err(err) = matrix::set_avatar_if_needed(&matrix_client, avatar_path).await {
 | 
			
		||||
                warn!("Failed to set matrix avatar: {err}");
 | 
			
		||||
    let gitlab = warp::path!("hooks" / "gitlab")
 | 
			
		||||
        .and(warp::path::end())
 | 
			
		||||
        .and(warp::post())
 | 
			
		||||
        .and(warp::header::<String>("x-gitlab-token"))
 | 
			
		||||
        .and(warp::body::json())
 | 
			
		||||
        .then(move |token: String, event: event::GitlabEvent| {
 | 
			
		||||
            let config = Arc::clone(&config);
 | 
			
		||||
            let matrix_client = matrix_client.clone();
 | 
			
		||||
 | 
			
		||||
            async move {
 | 
			
		||||
                let project = event.project();
 | 
			
		||||
                let config_key = project.homepage.replace("http://", "").replace("https://", "");
 | 
			
		||||
                if let Some(repo_config) = config.repo_configs.get(&config_key) {
 | 
			
		||||
                    if !constant_time_eq(token.as_bytes(), repo_config.token.as_bytes()) {
 | 
			
		||||
                        warn!("Invalid token for repo '{}'", config_key);
 | 
			
		||||
                        warp::reply::with_status("Invalid token", StatusCode::FORBIDDEN)
 | 
			
		||||
                    } else {
 | 
			
		||||
                        debug!("payload: {:?}", event);
 | 
			
		||||
                        if let Some(room) = repo_config.room.as_ref().or(config.default_room.as_ref()) {
 | 
			
		||||
                            if let Err(err) = handle_gitlab_event(event, &room, &matrix_client).await {
 | 
			
		||||
                                warn!("Failed to handle payload: {}", err);
 | 
			
		||||
                            }
 | 
			
		||||
                            warp::reply::with_status("OK", StatusCode::OK)
 | 
			
		||||
                        } else {
 | 
			
		||||
                            info!("Channel not configured for repo '{}'", config_key);
 | 
			
		||||
                            warp::reply::with_status("Matrix room not configured for repo", StatusCode::NOT_FOUND)
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                } else {
 | 
			
		||||
                    info!("Repo '{}' unconfigured", config_key);
 | 
			
		||||
                    warp::reply::with_status("Repo not configured", StatusCode::NOT_FOUND)
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
        join_handles.push(handle);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let mail_join_handles = if let Some(mail_archive) = config.mail_archive.take() {
 | 
			
		||||
        mail_archive::start_polling(mail_archive, matrix_client.clone())?
 | 
			
		||||
    } else {
 | 
			
		||||
        vec![]
 | 
			
		||||
    };
 | 
			
		||||
    join_handles.extend(mail_join_handles);
 | 
			
		||||
    let routes = gitlab.with(warp::log("bebot"));
 | 
			
		||||
 | 
			
		||||
    if let Some(gitlab_webhook) = config.gitlab_webhook.take() {
 | 
			
		||||
        let gitlab = gitlab_webhook::build_route(gitlab_webhook, matrix_client.clone());
 | 
			
		||||
        let bind_addr = format!(
 | 
			
		||||
            "{}:{}",
 | 
			
		||||
            config.bind_address.as_deref().unwrap_or("127.0.0.1"),
 | 
			
		||||
            config.bind_port.unwrap_or(3000)
 | 
			
		||||
        );
 | 
			
		||||
        let listener = TcpListener::bind(bind_addr).await?;
 | 
			
		||||
        axum::serve(listener, gitlab).await?;
 | 
			
		||||
    }
 | 
			
		||||
    warp::serve(routes).run((addr, port)).await;
 | 
			
		||||
 | 
			
		||||
    join_all(join_handles).await;
 | 
			
		||||
 | 
			
		||||
    error!("No functionality is configured; exiting");
 | 
			
		||||
    exit(1);
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[tokio::main]
 | 
			
		||||
@@ -86,7 +199,7 @@ async fn main() {
 | 
			
		||||
    env_logger::init_from_env(lenv);
 | 
			
		||||
 | 
			
		||||
    if let Err(err) = run().await {
 | 
			
		||||
        error!("{err:#}");
 | 
			
		||||
        error!("{}", err);
 | 
			
		||||
        exit(1);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										225
									
								
								src/matrix.rs
									
									
									
									
									
								
							
							
						
						
									
										225
									
								
								src/matrix.rs
									
									
									
									
									
								
							@@ -1,225 +0,0 @@
 | 
			
		||||
// bebot -- a Gitlab -> Matrix event publisher
 | 
			
		||||
// Copyright (C) 2023-2025 Brian Tarricone <brian@tarricone.org>
 | 
			
		||||
//
 | 
			
		||||
// This program is free software: you can redistribute it and/or modify
 | 
			
		||||
// it under the terms of the GNU Affero General Public License as published by
 | 
			
		||||
// the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
// (at your option) any later version.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU Affero General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU Affero General Public License
 | 
			
		||||
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
use std::{fmt, path::Path, process::exit, time::Duration};
 | 
			
		||||
 | 
			
		||||
use futures::TryFutureExt;
 | 
			
		||||
use matrix_sdk::{
 | 
			
		||||
    config::SyncSettings,
 | 
			
		||||
    media::MediaFormat,
 | 
			
		||||
    room::Room,
 | 
			
		||||
    ruma::{OwnedRoomOrAliasId, OwnedUserId, RoomOrAliasId, UserId},
 | 
			
		||||
    BaseRoom, Client,
 | 
			
		||||
};
 | 
			
		||||
use mime_sniffer::MimeTypeSnifferExt;
 | 
			
		||||
use serde::de;
 | 
			
		||||
use tokio::{fs, time::sleep};
 | 
			
		||||
 | 
			
		||||
use crate::config::Config;
 | 
			
		||||
 | 
			
		||||
async fn build_sync_settings() -> SyncSettings {
 | 
			
		||||
    SyncSettings::default().timeout(Duration::from_secs(30))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub async fn connect(config: &Config) -> anyhow::Result<Client> {
 | 
			
		||||
    let client = Client::builder()
 | 
			
		||||
        .server_name(config.user_id.server_name())
 | 
			
		||||
        .user_agent(format!("{}/{}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")))
 | 
			
		||||
        .build()
 | 
			
		||||
        .await?;
 | 
			
		||||
    client
 | 
			
		||||
        .matrix_auth()
 | 
			
		||||
        .login_username(&config.user_id, &config.password)
 | 
			
		||||
        .initial_device_display_name("Bebot")
 | 
			
		||||
        .await?;
 | 
			
		||||
    info!("Connected to matrix as {}; waiting for first sync", config.user_id);
 | 
			
		||||
 | 
			
		||||
    let settings = build_sync_settings().await;
 | 
			
		||||
    client.sync_once(settings).await?;
 | 
			
		||||
    info!("First matrix sync complete");
 | 
			
		||||
 | 
			
		||||
    let sync_client = client.clone();
 | 
			
		||||
    tokio::spawn(async move {
 | 
			
		||||
        let settings = build_sync_settings().await;
 | 
			
		||||
        if let Err(err) = sync_client.sync(settings).await {
 | 
			
		||||
            error!("Matrix sync failed: {err}");
 | 
			
		||||
            exit(1);
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    Ok(client)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub async fn set_avatar_if_needed<P: AsRef<Path>>(client: &Client, avatar_path: P) -> anyhow::Result<()> {
 | 
			
		||||
    let new_avatar = fs::read(&avatar_path).await?;
 | 
			
		||||
 | 
			
		||||
    let account = client.account();
 | 
			
		||||
    let cur_avatar = account.get_avatar(MediaFormat::File).await?;
 | 
			
		||||
 | 
			
		||||
    if cur_avatar.as_ref() != Some(&new_avatar) {
 | 
			
		||||
        // Falling back to extension matching because for some reason mime-sniffer can't handle SVG
 | 
			
		||||
        // files, even though it seems like it should be able to.
 | 
			
		||||
        if let Some(media_type) = new_avatar
 | 
			
		||||
            .as_slice()
 | 
			
		||||
            .sniff_mime_type_ext()
 | 
			
		||||
            .or_else(|| mime_guess2::from_path(&avatar_path).first())
 | 
			
		||||
        {
 | 
			
		||||
            info!("Setting avatar image from '{}'", avatar_path.as_ref().to_string_lossy());
 | 
			
		||||
            account
 | 
			
		||||
                .upload_avatar(&media_type, new_avatar)
 | 
			
		||||
                .map_err(Into::into)
 | 
			
		||||
                .map_ok(|_| ())
 | 
			
		||||
                .await
 | 
			
		||||
        } else {
 | 
			
		||||
            Err(anyhow!("Cannot determine media type of avatar image"))
 | 
			
		||||
        }
 | 
			
		||||
    } else {
 | 
			
		||||
        Ok(())
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub async fn ensure_room_joined(matrix_client: &Client, room_id: &OwnedRoomOrAliasId) -> anyhow::Result<Room> {
 | 
			
		||||
    fn room_matches(a_room: &BaseRoom, our_room: &OwnedRoomOrAliasId) -> bool {
 | 
			
		||||
        let our_room_str = our_room.as_str();
 | 
			
		||||
        a_room.room_id().as_str() == our_room_str
 | 
			
		||||
            || a_room
 | 
			
		||||
                .canonical_alias()
 | 
			
		||||
                .iter()
 | 
			
		||||
                .any(|alias| alias.as_str() == our_room_str)
 | 
			
		||||
            || a_room.alt_aliases().iter().any(|alias| alias.as_str() == our_room_str)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let mut room = matrix_client
 | 
			
		||||
        .joined_rooms()
 | 
			
		||||
        .iter()
 | 
			
		||||
        .find(|a_room| room_matches(a_room, room_id))
 | 
			
		||||
        .cloned();
 | 
			
		||||
    if room.is_none() {
 | 
			
		||||
        if let Some(invited) = matrix_client
 | 
			
		||||
            .invited_rooms()
 | 
			
		||||
            .iter()
 | 
			
		||||
            .find(|a_room| room_matches(a_room, room_id))
 | 
			
		||||
        {
 | 
			
		||||
            info!("Accepting invitation to room {room_id}");
 | 
			
		||||
            invited.join().await?;
 | 
			
		||||
        } else {
 | 
			
		||||
            info!("Joining room {room_id}");
 | 
			
		||||
            matrix_client.join_room_by_id_or_alias(room_id, &[]).await?;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        for _ in 0..4 {
 | 
			
		||||
            let settings = build_sync_settings().await;
 | 
			
		||||
            matrix_client.sync_once(settings).await?;
 | 
			
		||||
            room = matrix_client
 | 
			
		||||
                .joined_rooms()
 | 
			
		||||
                .iter()
 | 
			
		||||
                .find(|a_room| room_matches(a_room, room_id))
 | 
			
		||||
                .cloned();
 | 
			
		||||
            if room.is_some() {
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
            sleep(Duration::from_millis(500)).await;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    room.ok_or_else(|| anyhow!("Unable to join room {}", room_id))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn deser_user_id<'de, D>(deserializer: D) -> Result<OwnedUserId, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct UserIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for UserIdVisitor {
 | 
			
		||||
        type Value = OwnedUserId;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("a matrix user ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            UserId::parse(v).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(UserIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn deser_room_or_alias_id<'de, D>(deserializer: D) -> Result<OwnedRoomOrAliasId, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct RoomOrAliasIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for RoomOrAliasIdVisitor {
 | 
			
		||||
        type Value = OwnedRoomOrAliasId;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("a matrix room ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            RoomOrAliasId::parse(v).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(RoomOrAliasIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn deser_optional_room_or_alias_id<'de, D>(deserializer: D) -> Result<Option<OwnedRoomOrAliasId>, D::Error>
 | 
			
		||||
where
 | 
			
		||||
    D: de::Deserializer<'de>,
 | 
			
		||||
{
 | 
			
		||||
    struct OptionalRoomOrAliasIdVisitor;
 | 
			
		||||
 | 
			
		||||
    impl<'de> de::Visitor<'de> for OptionalRoomOrAliasIdVisitor {
 | 
			
		||||
        type Value = Option<OwnedRoomOrAliasId>;
 | 
			
		||||
 | 
			
		||||
        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
 | 
			
		||||
            formatter.write_str("null or matrix room ID")
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_none<E>(self) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            Ok(None)
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
 | 
			
		||||
        where
 | 
			
		||||
            D: serde::Deserializer<'de>,
 | 
			
		||||
        {
 | 
			
		||||
            Ok(Some(deser_room_or_alias_id(deserializer)?))
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
 | 
			
		||||
        where
 | 
			
		||||
            E: de::Error,
 | 
			
		||||
        {
 | 
			
		||||
            RoomOrAliasId::parse(v).map(Some).map_err(E::custom)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    deserializer.deserialize_any(OptionalRoomOrAliasIdVisitor)
 | 
			
		||||
}
 | 
			
		||||
@@ -1,145 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "object_kind": "issue",
 | 
			
		||||
  "event_type": "issue",
 | 
			
		||||
  "user": {
 | 
			
		||||
    "id": 1,
 | 
			
		||||
    "name": "Administrator",
 | 
			
		||||
    "username": "root",
 | 
			
		||||
    "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon",
 | 
			
		||||
    "email": "admin@example.com"
 | 
			
		||||
  },
 | 
			
		||||
  "project": {
 | 
			
		||||
    "id": 1,
 | 
			
		||||
    "name":"Gitlab Test",
 | 
			
		||||
    "description":"Aut reprehenderit ut est.",
 | 
			
		||||
    "web_url":"http://example.com/gitlabhq/gitlab-test",
 | 
			
		||||
    "avatar_url":null,
 | 
			
		||||
    "git_ssh_url":"git@example.com:gitlabhq/gitlab-test.git",
 | 
			
		||||
    "git_http_url":"http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "namespace":"GitlabHQ",
 | 
			
		||||
    "visibility_level":20,
 | 
			
		||||
    "path_with_namespace":"gitlabhq/gitlab-test",
 | 
			
		||||
    "default_branch":"master",
 | 
			
		||||
    "ci_config_path": null,
 | 
			
		||||
    "homepage":"http://example.com/gitlabhq/gitlab-test",
 | 
			
		||||
    "url":"http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "ssh_url":"git@example.com:gitlabhq/gitlab-test.git",
 | 
			
		||||
    "http_url":"http://example.com/gitlabhq/gitlab-test.git"
 | 
			
		||||
  },
 | 
			
		||||
  "object_attributes": {
 | 
			
		||||
    "id": 301,
 | 
			
		||||
    "title": "New API: create/update/delete file",
 | 
			
		||||
    "assignee_ids": [51],
 | 
			
		||||
    "assignee_id": 51,
 | 
			
		||||
    "author_id": 51,
 | 
			
		||||
    "project_id": 14,
 | 
			
		||||
    "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "updated_by_id": 1,
 | 
			
		||||
    "last_edited_at": null,
 | 
			
		||||
    "last_edited_by_id": null,
 | 
			
		||||
    "relative_position": 0,
 | 
			
		||||
    "description": "Create new API for manipulations with repository",
 | 
			
		||||
    "milestone_id": null,
 | 
			
		||||
    "state_id": 1,
 | 
			
		||||
    "confidential": false,
 | 
			
		||||
    "discussion_locked": true,
 | 
			
		||||
    "due_date": null,
 | 
			
		||||
    "moved_to_id": null,
 | 
			
		||||
    "duplicated_to_id": null,
 | 
			
		||||
    "time_estimate": 0,
 | 
			
		||||
    "total_time_spent": 0,
 | 
			
		||||
    "time_change": 0,
 | 
			
		||||
    "human_total_time_spent": null,
 | 
			
		||||
    "human_time_estimate": null,
 | 
			
		||||
    "human_time_change": null,
 | 
			
		||||
    "weight": null,
 | 
			
		||||
    "health_status": "at_risk",
 | 
			
		||||
    "iid": 23,
 | 
			
		||||
    "url": "http://example.com/diaspora/issues/23",
 | 
			
		||||
    "state": "opened",
 | 
			
		||||
    "action": "open",
 | 
			
		||||
    "severity": "high",
 | 
			
		||||
    "escalation_status": "triggered",
 | 
			
		||||
    "escalation_policy": {
 | 
			
		||||
      "id": 18,
 | 
			
		||||
      "name": "Engineering On-call"
 | 
			
		||||
    },
 | 
			
		||||
    "labels": [{
 | 
			
		||||
        "id": 206,
 | 
			
		||||
        "title": "API",
 | 
			
		||||
        "color": "#ffffff",
 | 
			
		||||
        "project_id": 14,
 | 
			
		||||
        "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "template": false,
 | 
			
		||||
        "description": "API related issues",
 | 
			
		||||
        "type": "ProjectLabel",
 | 
			
		||||
        "group_id": 41
 | 
			
		||||
      }]
 | 
			
		||||
  },
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "name": "Gitlab Test",
 | 
			
		||||
    "url": "http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "description": "Aut reprehenderit ut est.",
 | 
			
		||||
    "homepage": "http://example.com/gitlabhq/gitlab-test"
 | 
			
		||||
  },
 | 
			
		||||
  "assignees": [{
 | 
			
		||||
    "name": "User1",
 | 
			
		||||
    "username": "user1",
 | 
			
		||||
    "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
 | 
			
		||||
  }],
 | 
			
		||||
  "assignee": {
 | 
			
		||||
    "name": "User1",
 | 
			
		||||
    "username": "user1",
 | 
			
		||||
    "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
 | 
			
		||||
  },
 | 
			
		||||
  "labels": [{
 | 
			
		||||
    "id": 206,
 | 
			
		||||
    "title": "API",
 | 
			
		||||
    "color": "#ffffff",
 | 
			
		||||
    "project_id": 14,
 | 
			
		||||
    "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "template": false,
 | 
			
		||||
    "description": "API related issues",
 | 
			
		||||
    "type": "ProjectLabel",
 | 
			
		||||
    "group_id": 41
 | 
			
		||||
  }],
 | 
			
		||||
  "changes": {
 | 
			
		||||
    "updated_by_id": {
 | 
			
		||||
      "previous": null,
 | 
			
		||||
      "current": 1
 | 
			
		||||
    },
 | 
			
		||||
    "updated_at": {
 | 
			
		||||
      "previous": "2017-09-15 16:50:55 UTC",
 | 
			
		||||
      "current": "2017-09-15 16:52:00 UTC"
 | 
			
		||||
    },
 | 
			
		||||
    "labels": {
 | 
			
		||||
      "previous": [{
 | 
			
		||||
        "id": 206,
 | 
			
		||||
        "title": "API",
 | 
			
		||||
        "color": "#ffffff",
 | 
			
		||||
        "project_id": 14,
 | 
			
		||||
        "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "template": false,
 | 
			
		||||
        "description": "API related issues",
 | 
			
		||||
        "type": "ProjectLabel",
 | 
			
		||||
        "group_id": 41
 | 
			
		||||
      }],
 | 
			
		||||
      "current": [{
 | 
			
		||||
        "id": 205,
 | 
			
		||||
        "title": "Platform",
 | 
			
		||||
        "color": "#123123",
 | 
			
		||||
        "project_id": 14,
 | 
			
		||||
        "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "template": false,
 | 
			
		||||
        "description": "Platform related issues",
 | 
			
		||||
        "type": "ProjectLabel",
 | 
			
		||||
        "group_id": 41
 | 
			
		||||
      }]
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,722 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<rss version="2.0">
 | 
			
		||||
<!-- MHonArc v2.6.19+ -->
 | 
			
		||||
  <channel>
 | 
			
		||||
    <title>xfce-announce</title>
 | 
			
		||||
    <link>http://www.mail-archive.com/xfce-announce@xfce.org</link>
 | 
			
		||||
    <description>xfce-announce @ xfce</description>
 | 
			
		||||
    <pubDate>Wed, 20 Sep 2023 00:05:30 GMT</pubDate>
 | 
			
		||||
    <lastBuildDate>Wed, 20 Sep 2023 00:05:30 GMT</lastBuildDate>
 | 
			
		||||
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
 | 
			
		||||
    <generator>MHonArc RSS 2.0 RCFile</generator>
 | 
			
		||||
    <webMaster>themailarchive@gmail.com (The Mail Archive)</webMaster>
 | 
			
		||||
    <image>
 | 
			
		||||
       <title>The Mail Archive</title>
 | 
			
		||||
       <url>http://www.mail-archive.com/nanologo.png</url>
 | 
			
		||||
       <link>http://www.mail-archive.com/xfce-announce@xfce.org</link>
 | 
			
		||||
    </image>
 | 
			
		||||
 
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.9.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00875.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/09/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Wed, 20 Sep 2023 00:05:29 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00875.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.9.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00874.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/09/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Mon, 18 Sep 2023 21:21:54 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00874.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-appfinder 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00873.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/09/08</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Fri, 08 Sep 2023 21:21:14 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00873.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar 4.18.7 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00872.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/09/01</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Fri, 01 Sep 2023 22:48:46 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00872.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-whiskermenu-plugin 2.8.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00871.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/08/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Graeme Gott%22">Graeme Gott</a></description>
 | 
			
		||||
      <pubDate>Tue, 29 Aug 2023 14:34:06 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00871.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-appfinder 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00870.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/08/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Tue, 22 Aug 2023 19:37:53 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00870.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-terminal 1.1.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00869.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/08/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 22 Aug 2023 09:33:15 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00869.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: catfish 4.18.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00868.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/08/06</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sun, 06 Aug 2023 09:01:49 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00868.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-clipman-plugin 1.6.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00867.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/07/31</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 31 Jul 2023 13:56:43 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00867.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-volumed-pulse 0.2.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00866.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/07/25</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 25 Jul 2023 11:10:24 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00866.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-cpugraph-plugin 1.2.8 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00865.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/07/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Błażej Szczygieł%22">Błażej Szczygieł</a></description>
 | 
			
		||||
      <pubDate>Sat, 22 Jul 2023 20:59:22 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00865.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-verve-plugin 2.0.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00864.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/07/15</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 15 Jul 2023 18:29:04 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00864.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-settings 4.18.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00863.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/07/04</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 04 Jul 2023 08:10:25 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00863.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel-profiles 1.0.14 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00862.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/06/05</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 05 Jun 2023 07:06:36 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00862.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-pulseaudio-plugin 0.4.7 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00861.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/06/01</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Błażej Szczygieł%22">Błażej Szczygieł</a></description>
 | 
			
		||||
      <pubDate>Thu, 01 Jun 2023 11:41:25 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00861.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-screensaver 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00860.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/30</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 30 May 2023 08:01:59 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00860.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-power-manager 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00859.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/30</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 30 May 2023 07:56:50 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00859.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-power-manager 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00858.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/30</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 30 May 2023 07:47:19 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00858.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-session 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00857.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 29 May 2023 16:08:10 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00857.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.19.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00856.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 29 May 2023 15:56:04 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00856.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-session 4.18.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00855.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 29 May 2023 15:49:40 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00855.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-generic-slider 1.0.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00854.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/26</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 26 May 2023 17:06:57 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00854.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel 4.18.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00853.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 22 May 2023 17:45:02 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00853.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.18.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00852.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 22 May 2023 17:06:08 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00852.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-screenshooter 1.10.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00851.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/14</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Sun, 14 May 2023 11:31:56 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00851.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: ristretto 0.13.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00850.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/13</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 13 May 2023 15:59:23 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00850.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: mousepad 0.6.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00849.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/13</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 13 May 2023 15:45:22 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00849.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4util 4.19.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00848.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/11</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 11 May 2023 14:14:17 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00848.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4util 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00847.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/07</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sun, 07 May 2023 08:39:15 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00847.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-mixer 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00846.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/05/01</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 01 May 2023 18:21:54 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00846.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar 4.18.6 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00845.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/30</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Sun, 30 Apr 2023 09:34:07 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00845.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-netload-plugin 1.4.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00844.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 29 Apr 2023 06:28:16 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00844.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-mpc-plugin 0.5.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00843.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 29 Apr 2023 06:24:59 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00843.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-mixer 4.18.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00842.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/29</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 29 Apr 2023 06:16:57 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00842.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar 4.18.5 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00841.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Fri, 28 Apr 2023 20:50:14 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00841.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-whiskermenu-plugin 2.7.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00840.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/26</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Graeme Gott%22">Graeme Gott</a></description>
 | 
			
		||||
      <pubDate>Wed, 26 Apr 2023 11:25:21 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00840.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-dict 0.8.5 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00839.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 22 Apr 2023 14:59:42 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00839.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfmpc 0.3.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00838.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 22 Apr 2023 14:54:03 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00838.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-weather-plugin 0.11.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00837.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 21 Apr 2023 18:51:58 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00837.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-time-out-plugin 1.1.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00836.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 21 Apr 2023 17:27:47 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00836.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-indicator-plugin 2.4.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00835.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 21 Apr 2023 09:51:53 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00835.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-mount-plugin 1.1.6 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00834.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 20 Apr 2023 21:19:57 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00834.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00833.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 20 Apr 2023 20:17:14 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00833.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-mailwatch-plugin 1.3.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00832.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 20 Apr 2023 18:43:40 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00832.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-fsguard-plugin 1.1.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00831.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/19</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Wed, 19 Apr 2023 17:30:01 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00831.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-calculator-plugin 0.7.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00830.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/19</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Wed, 19 Apr 2023 17:23:59 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00830.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-battery-plugin 1.1.5 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00829.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/19</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Wed, 19 Apr 2023 16:55:39 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00829.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-appfinder 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00828.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/19</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Wed, 19 Apr 2023 16:34:38 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00828.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-timer-plugin 1.7.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00827.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 18 Apr 2023 16:03:44 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00827.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-power-manager 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00826.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 18 Apr 2023 15:08:59 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00826.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-session 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00825.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 18 Apr 2023 14:52:59 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00825.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-settings 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00824.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 18 Apr 2023 11:30:02 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00824.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: garcon 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00823.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 18 Apr 2023 11:18:13 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00823.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00822.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 14:22:29 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00822.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4util 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00821.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 11:25:12 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00821.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: tumbler 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00820.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 11:10:57 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00820.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfconf 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00819.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 11:06:03 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00819.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: tumbler 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00818.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 10:56:58 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00818.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfconf 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00817.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 17 Apr 2023 10:38:46 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00817.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-genmon-plugin 4.2.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00816.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/16</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Tony Paulic%22">Tony Paulic</a></description>
 | 
			
		||||
      <pubDate>Sun, 16 Apr 2023 23:34:56 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00816.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfdesktop 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00815.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/04/14</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Fri, 14 Apr 2023 22:55:25 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00815.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar-archive-plugin 0.5.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00814.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/31</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Fri, 31 Mar 2023 21:18:14 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00814.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel 4.19.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00813.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 19:08:27 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00813.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-pulseaudio-plugin 0.4.6 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00812.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 19:05:50 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00812.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel 4.18.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00811.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 17:57:50 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00811.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: garcon 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00810.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 17:41:11 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00810.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.18.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00809.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 17:21:43 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00809.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-session 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00808.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Mar 2023 17:13:19 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00808.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-screensaver 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00807.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/26</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sun, 26 Mar 2023 20:36:45 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00807.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>Re: ANNOUNCE: xfce4-docklike-plugin 0.4.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00806.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Luna Jernberg%22">Luna Jernberg</a></description>
 | 
			
		||||
      <pubDate>Tue, 21 Mar 2023 07:53:23 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00806.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-clipman-plugin 1.6.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00805.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Mon, 20 Mar 2023 20:07:46 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00805.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-docklike-plugin 0.4.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00804.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/19</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sun, 19 Mar 2023 16:41:45 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00804.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-screensaver 4.18.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00803.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 18 Mar 2023 10:47:52 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00803.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notes-plugin 1.10.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00802.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 18 Mar 2023 10:12:20 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00802.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-dev-tools 4.19.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00801.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/05</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sun, 05 Mar 2023 08:52:26 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00801.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfburn 0.7.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00800.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/03/04</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Hunter Turcin%22">Hunter Turcin</a></description>
 | 
			
		||||
      <pubDate>Sat, 04 Mar 2023 07:40:15 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00800.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.8.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00799.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/28</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Tue, 28 Feb 2023 06:39:12 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00799.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar 4.18.4 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00798.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Wed, 22 Feb 2023 21:57:16 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00798.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: parole 4.18.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00797.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/18</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 18 Feb 2023 19:39:06 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00797.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.8.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00796.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Fri, 17 Feb 2023 03:26:47 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00796.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-settings 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00795.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/11</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Sat, 11 Feb 2023 09:36:19 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00795.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.8.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00794.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/11</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sat, 11 Feb 2023 07:51:19 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00794.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-power-manager 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00793.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/10</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 10 Feb 2023 10:23:06 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00793.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-session 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00792.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/10</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Fri, 10 Feb 2023 10:14:48 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00792.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: ristretto 0.13.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00791.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/09</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 09 Feb 2023 17:41:13 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00791.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: mousepad 0.6.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00790.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/09</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 09 Feb 2023 17:21:04 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00790.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00789.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/09</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 09 Feb 2023 17:01:36 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00789.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: libxfce4ui 4.18.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00788.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/09</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Thu, 09 Feb 2023 11:06:57 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00788.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: orage 4.18.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00787.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/08</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Wed, 08 Feb 2023 16:21:58 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00787.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar-media-tags-plugin 0.4.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00786.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/06</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Mon, 06 Feb 2023 16:10:00 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00786.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.7.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00785.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/02/02</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Thu, 02 Feb 2023 03:07:52 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00785.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.7.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00784.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/22</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sun, 22 Jan 2023 08:59:46 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00784.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfdesktop 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00783.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sat, 21 Jan 2023 12:04:24 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00783.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.7.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00782.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sat, 21 Jan 2023 11:50:36 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00782.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-notifyd 0.7.0 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00781.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/21</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Brian Tarricone%22">Brian Tarricone</a></description>
 | 
			
		||||
      <pubDate>Sat, 21 Jan 2023 11:26:06 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00781.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: thunar 4.18.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00780.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/20</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Alexander Schwinn%22">Alexander Schwinn</a></description>
 | 
			
		||||
      <pubDate>Fri, 20 Jan 2023 22:43:03 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00780.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-whiskermenu-plugin 2.7.2 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00779.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/17</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Graeme Gott%22">Graeme Gott</a></description>
 | 
			
		||||
      <pubDate>Tue, 17 Jan 2023 18:24:47 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00779.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-datetime-plugin 0.8.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00778.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/16</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Mon, 16 Jan 2023 21:21:48 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00778.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-screenshooter 1.10.3 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00777.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/12</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Andre Miranda%22">Andre Miranda</a></description>
 | 
			
		||||
      <pubDate>Thu, 12 Jan 2023 23:19:39 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00777.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
    <item>
 | 
			
		||||
      <title>ANNOUNCE: xfce4-panel 4.18.1 released</title>
 | 
			
		||||
      <link>http://www.mail-archive.com/xfce-announce@xfce.org/msg00776.html</link>
 | 
			
		||||
      <description><font color=#6f6f6f> 2023/01/10</font> -- <a href="http://www.mail-archive.com/search?l=xfce-announce@xfce.org&q=from:%22Gaël Bonithon%22">Gaël Bonithon</a></description>
 | 
			
		||||
      <pubDate>Tue, 10 Jan 2023 21:04:35 GMT</pubDate>
 | 
			
		||||
      <guid isPermaLink="true">http://www.mail-archive.com/xfce-announce@xfce.org/msg00776.html</guid>
 | 
			
		||||
   </item>
 | 
			
		||||
 
 | 
			
		||||
  </channel>
 | 
			
		||||
  </rss>
 | 
			
		||||
<!-- MHonArc v2.6.19+ -->
 | 
			
		||||
@@ -1,200 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "object_kind": "merge_request",
 | 
			
		||||
  "event_type": "merge_request",
 | 
			
		||||
  "user": {
 | 
			
		||||
    "id": 1,
 | 
			
		||||
    "name": "Administrator",
 | 
			
		||||
    "username": "root",
 | 
			
		||||
    "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon",
 | 
			
		||||
    "email": "admin@example.com"
 | 
			
		||||
  },
 | 
			
		||||
  "project": {
 | 
			
		||||
    "id": 1,
 | 
			
		||||
    "name":"Gitlab Test",
 | 
			
		||||
    "description":"Aut reprehenderit ut est.",
 | 
			
		||||
    "web_url":"http://example.com/gitlabhq/gitlab-test",
 | 
			
		||||
    "avatar_url":null,
 | 
			
		||||
    "git_ssh_url":"git@example.com:gitlabhq/gitlab-test.git",
 | 
			
		||||
    "git_http_url":"http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "namespace":"GitlabHQ",
 | 
			
		||||
    "visibility_level":20,
 | 
			
		||||
    "path_with_namespace":"gitlabhq/gitlab-test",
 | 
			
		||||
    "default_branch":"master",
 | 
			
		||||
    "ci_config_path":"",
 | 
			
		||||
    "homepage":"http://example.com/gitlabhq/gitlab-test",
 | 
			
		||||
    "url":"http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "ssh_url":"git@example.com:gitlabhq/gitlab-test.git",
 | 
			
		||||
    "http_url":"http://example.com/gitlabhq/gitlab-test.git"
 | 
			
		||||
  },
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "name": "Gitlab Test",
 | 
			
		||||
    "url": "http://example.com/gitlabhq/gitlab-test.git",
 | 
			
		||||
    "description": "Aut reprehenderit ut est.",
 | 
			
		||||
    "homepage": "http://example.com/gitlabhq/gitlab-test"
 | 
			
		||||
  },
 | 
			
		||||
  "object_attributes": {
 | 
			
		||||
    "id": 99,
 | 
			
		||||
    "iid": 1,
 | 
			
		||||
    "target_branch": "master",
 | 
			
		||||
    "source_branch": "ms-viewport",
 | 
			
		||||
    "source_project_id": 14,
 | 
			
		||||
    "author_id": 51,
 | 
			
		||||
    "assignee_ids": [6],
 | 
			
		||||
    "assignee_id": 6,
 | 
			
		||||
    "reviewer_ids": [6],
 | 
			
		||||
    "title": "MS-Viewport",
 | 
			
		||||
    "created_at": "2013-12-03T17:23:34Z",
 | 
			
		||||
    "updated_at": "2013-12-03T17:23:34Z",
 | 
			
		||||
    "last_edited_at": "2013-12-03T17:23:34Z",
 | 
			
		||||
    "last_edited_by_id": 1,
 | 
			
		||||
    "milestone_id": null,
 | 
			
		||||
    "state_id": 1,
 | 
			
		||||
    "state": "opened",
 | 
			
		||||
    "blocking_discussions_resolved": true,
 | 
			
		||||
    "work_in_progress": false,
 | 
			
		||||
    "draft": false,
 | 
			
		||||
    "first_contribution": true,
 | 
			
		||||
    "merge_status": "unchecked",
 | 
			
		||||
    "target_project_id": 14,
 | 
			
		||||
    "description": "",
 | 
			
		||||
    "total_time_spent": 1800,
 | 
			
		||||
    "time_change": 30,
 | 
			
		||||
    "human_total_time_spent": "30m",
 | 
			
		||||
    "human_time_change": "30s",
 | 
			
		||||
    "human_time_estimate": "30m",
 | 
			
		||||
    "url": "http://example.com/diaspora/merge_requests/1",
 | 
			
		||||
    "source": {
 | 
			
		||||
      "name":"Awesome Project",
 | 
			
		||||
      "description":"Aut reprehenderit ut est.",
 | 
			
		||||
      "web_url":"http://example.com/awesome_space/awesome_project",
 | 
			
		||||
      "avatar_url":null,
 | 
			
		||||
      "git_ssh_url":"git@example.com:awesome_space/awesome_project.git",
 | 
			
		||||
      "git_http_url":"http://example.com/awesome_space/awesome_project.git",
 | 
			
		||||
      "namespace":"Awesome Space",
 | 
			
		||||
      "visibility_level":20,
 | 
			
		||||
      "path_with_namespace":"awesome_space/awesome_project",
 | 
			
		||||
      "default_branch":"master",
 | 
			
		||||
      "homepage":"http://example.com/awesome_space/awesome_project",
 | 
			
		||||
      "url":"http://example.com/awesome_space/awesome_project.git",
 | 
			
		||||
      "ssh_url":"git@example.com:awesome_space/awesome_project.git",
 | 
			
		||||
      "http_url":"http://example.com/awesome_space/awesome_project.git"
 | 
			
		||||
    },
 | 
			
		||||
    "target": {
 | 
			
		||||
      "name":"Awesome Project",
 | 
			
		||||
      "description":"Aut reprehenderit ut est.",
 | 
			
		||||
      "web_url":"http://example.com/awesome_space/awesome_project",
 | 
			
		||||
      "avatar_url":null,
 | 
			
		||||
      "git_ssh_url":"git@example.com:awesome_space/awesome_project.git",
 | 
			
		||||
      "git_http_url":"http://example.com/awesome_space/awesome_project.git",
 | 
			
		||||
      "namespace":"Awesome Space",
 | 
			
		||||
      "visibility_level":20,
 | 
			
		||||
      "path_with_namespace":"awesome_space/awesome_project",
 | 
			
		||||
      "default_branch":"master",
 | 
			
		||||
      "homepage":"http://example.com/awesome_space/awesome_project",
 | 
			
		||||
      "url":"http://example.com/awesome_space/awesome_project.git",
 | 
			
		||||
      "ssh_url":"git@example.com:awesome_space/awesome_project.git",
 | 
			
		||||
      "http_url":"http://example.com/awesome_space/awesome_project.git"
 | 
			
		||||
    },
 | 
			
		||||
    "last_commit": {
 | 
			
		||||
      "id": "da1560886d4f094c3e6c9ef40349f7d38b5d27d7",
 | 
			
		||||
      "message": "fixed readme",
 | 
			
		||||
      "title": "Update file README.md",
 | 
			
		||||
      "timestamp": "2012-01-03T23:36:29+02:00",
 | 
			
		||||
      "url": "http://example.com/awesome_space/awesome_project/commits/da1560886d4f094c3e6c9ef40349f7d38b5d27d7",
 | 
			
		||||
      "author": {
 | 
			
		||||
        "name": "GitLab dev user",
 | 
			
		||||
        "email": "gitlabdev@dv6700.(none)"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "labels": [{
 | 
			
		||||
      "id": 206,
 | 
			
		||||
      "title": "API",
 | 
			
		||||
      "color": "#ffffff",
 | 
			
		||||
      "project_id": 14,
 | 
			
		||||
      "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
      "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
      "template": false,
 | 
			
		||||
      "description": "API related issues",
 | 
			
		||||
      "type": "ProjectLabel",
 | 
			
		||||
      "group_id": 41
 | 
			
		||||
    }],
 | 
			
		||||
    "action": "open",
 | 
			
		||||
    "detailed_merge_status": "mergeable"
 | 
			
		||||
  },
 | 
			
		||||
  "labels": [{
 | 
			
		||||
    "id": 206,
 | 
			
		||||
    "title": "API",
 | 
			
		||||
    "color": "#ffffff",
 | 
			
		||||
    "project_id": 14,
 | 
			
		||||
    "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
    "template": false,
 | 
			
		||||
    "description": "API related issues",
 | 
			
		||||
    "type": "ProjectLabel",
 | 
			
		||||
    "group_id": 41
 | 
			
		||||
  }],
 | 
			
		||||
  "changes": {
 | 
			
		||||
    "updated_by_id": {
 | 
			
		||||
      "previous": null,
 | 
			
		||||
      "current": 1
 | 
			
		||||
    },
 | 
			
		||||
    "draft": {
 | 
			
		||||
      "previous": true,
 | 
			
		||||
      "current": false
 | 
			
		||||
    },
 | 
			
		||||
    "updated_at": {
 | 
			
		||||
      "previous": "2017-09-15 16:50:55 UTC",
 | 
			
		||||
      "current":"2017-09-15 16:52:00 UTC"
 | 
			
		||||
    },
 | 
			
		||||
    "labels": {
 | 
			
		||||
      "previous": [{
 | 
			
		||||
        "id": 206,
 | 
			
		||||
        "title": "API",
 | 
			
		||||
        "color": "#ffffff",
 | 
			
		||||
        "project_id": 14,
 | 
			
		||||
        "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "template": false,
 | 
			
		||||
        "description": "API related issues",
 | 
			
		||||
        "type": "ProjectLabel",
 | 
			
		||||
        "group_id": 41
 | 
			
		||||
      }],
 | 
			
		||||
      "current": [{
 | 
			
		||||
        "id": 205,
 | 
			
		||||
        "title": "Platform",
 | 
			
		||||
        "color": "#123123",
 | 
			
		||||
        "project_id": 14,
 | 
			
		||||
        "created_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "updated_at": "2013-12-03T17:15:43Z",
 | 
			
		||||
        "template": false,
 | 
			
		||||
        "description": "Platform related issues",
 | 
			
		||||
        "type": "ProjectLabel",
 | 
			
		||||
        "group_id": 41
 | 
			
		||||
      }]
 | 
			
		||||
    },
 | 
			
		||||
    "last_edited_at": {
 | 
			
		||||
      "previous": null,
 | 
			
		||||
      "current": "2023-03-15 00:00:10 UTC"
 | 
			
		||||
    },
 | 
			
		||||
    "last_edited_by_id": {
 | 
			
		||||
      "previous": null,
 | 
			
		||||
      "current": 3278533
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "assignees": [
 | 
			
		||||
    {
 | 
			
		||||
      "id": 6,
 | 
			
		||||
      "name": "User1",
 | 
			
		||||
      "username": "user1",
 | 
			
		||||
      "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "reviewers": [
 | 
			
		||||
    {
 | 
			
		||||
      "id": 6,
 | 
			
		||||
      "name": "User1",
 | 
			
		||||
      "username": "user1",
 | 
			
		||||
      "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@@ -1,262 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
   "object_kind": "pipeline",
 | 
			
		||||
   "object_attributes":{
 | 
			
		||||
      "id": 31,
 | 
			
		||||
      "iid": 3,
 | 
			
		||||
      "name": "Pipeline for branch: master",
 | 
			
		||||
      "ref": "master",
 | 
			
		||||
      "tag": false,
 | 
			
		||||
      "sha": "bcbb5ec396a2c0f828686f14fac9b80b780504f2",
 | 
			
		||||
      "before_sha": "bcbb5ec396a2c0f828686f14fac9b80b780504f2",
 | 
			
		||||
      "source": "merge_request_event",
 | 
			
		||||
      "status": "failed",
 | 
			
		||||
      "stages":[
 | 
			
		||||
         "build",
 | 
			
		||||
         "test",
 | 
			
		||||
         "deploy"
 | 
			
		||||
      ],
 | 
			
		||||
      "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
      "finished_at": "2016-08-12 15:26:29 UTC",
 | 
			
		||||
      "duration": 63,
 | 
			
		||||
      "variables": [
 | 
			
		||||
        {
 | 
			
		||||
          "key": "NESTOR_PROD_ENVIRONMENT",
 | 
			
		||||
          "value": "us-west-1"
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
      "url": "http://example.com/gitlab-org/gitlab-test/-/pipelines/31"
 | 
			
		||||
   },
 | 
			
		||||
    "merge_request": {
 | 
			
		||||
      "id": 1,
 | 
			
		||||
      "iid": 1,
 | 
			
		||||
      "title": "Test",
 | 
			
		||||
      "source_branch": "test",
 | 
			
		||||
      "source_project_id": 1,
 | 
			
		||||
      "target_branch": "master",
 | 
			
		||||
      "target_project_id": 1,
 | 
			
		||||
      "state": "opened",
 | 
			
		||||
      "merge_status": "can_be_merged",
 | 
			
		||||
      "detailed_merge_status": "mergeable",
 | 
			
		||||
      "url": "http://192.168.64.1:3005/gitlab-org/gitlab-test/merge_requests/1"
 | 
			
		||||
   },
 | 
			
		||||
   "user":{
 | 
			
		||||
      "id": 1,
 | 
			
		||||
      "name": "Administrator",
 | 
			
		||||
      "username": "root",
 | 
			
		||||
      "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
      "email": "user_email@gitlab.com"
 | 
			
		||||
   },
 | 
			
		||||
   "project":{
 | 
			
		||||
      "id": 1,
 | 
			
		||||
      "name": "Gitlab Test",
 | 
			
		||||
      "description": "Atque in sunt eos similique dolores voluptatem.",
 | 
			
		||||
      "web_url": "http://192.168.64.1:3005/gitlab-org/gitlab-test",
 | 
			
		||||
      "avatar_url": null,
 | 
			
		||||
      "git_ssh_url": "git@192.168.64.1:gitlab-org/gitlab-test.git",
 | 
			
		||||
      "git_http_url": "http://192.168.64.1:3005/gitlab-org/gitlab-test.git",
 | 
			
		||||
      "namespace": "Gitlab Org",
 | 
			
		||||
      "visibility_level": 20,
 | 
			
		||||
      "path_with_namespace": "gitlab-org/gitlab-test",
 | 
			
		||||
      "default_branch": "master"
 | 
			
		||||
   },
 | 
			
		||||
   "commit":{
 | 
			
		||||
      "id": "bcbb5ec396a2c0f828686f14fac9b80b780504f2",
 | 
			
		||||
      "message": "test\n",
 | 
			
		||||
      "timestamp": "2016-08-12T17:23:21+02:00",
 | 
			
		||||
      "url": "http://example.com/gitlab-org/gitlab-test/commit/bcbb5ec396a2c0f828686f14fac9b80b780504f2",
 | 
			
		||||
      "author":{
 | 
			
		||||
         "name": "User",
 | 
			
		||||
         "email": "user@gitlab.com"
 | 
			
		||||
      }
 | 
			
		||||
   },
 | 
			
		||||
   "source_pipeline":{
 | 
			
		||||
      "project":{
 | 
			
		||||
        "id": 41,
 | 
			
		||||
        "web_url": "https://gitlab.example.com/gitlab-org/upstream-project",
 | 
			
		||||
        "path_with_namespace": "gitlab-org/upstream-project"
 | 
			
		||||
      },
 | 
			
		||||
      "pipeline_id": 30,
 | 
			
		||||
      "job_id": 3401
 | 
			
		||||
   },
 | 
			
		||||
   "builds":[
 | 
			
		||||
      {
 | 
			
		||||
         "id": 380,
 | 
			
		||||
         "stage": "deploy",
 | 
			
		||||
         "name": "production",
 | 
			
		||||
         "status": "skipped",
 | 
			
		||||
         "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
         "started_at": null,
 | 
			
		||||
         "finished_at": null,
 | 
			
		||||
         "duration": null,
 | 
			
		||||
         "queued_duration": null,
 | 
			
		||||
         "failure_reason": null,
 | 
			
		||||
         "when": "manual",
 | 
			
		||||
         "manual": true,
 | 
			
		||||
         "allow_failure": false,
 | 
			
		||||
         "user":{
 | 
			
		||||
            "id": 1,
 | 
			
		||||
            "name": "Administrator",
 | 
			
		||||
            "username": "root",
 | 
			
		||||
            "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
            "email": "admin@example.com"
 | 
			
		||||
         },
 | 
			
		||||
         "runner": null,
 | 
			
		||||
         "artifacts_file":{
 | 
			
		||||
            "filename": null,
 | 
			
		||||
            "size": null
 | 
			
		||||
         },
 | 
			
		||||
         "environment": {
 | 
			
		||||
           "name": "production",
 | 
			
		||||
           "action": "start",
 | 
			
		||||
           "deployment_tier": "production"
 | 
			
		||||
         }
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
         "id": 377,
 | 
			
		||||
         "stage": "test",
 | 
			
		||||
         "name": "test-image",
 | 
			
		||||
         "status": "success",
 | 
			
		||||
         "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
         "started_at": "2016-08-12 15:26:12 UTC",
 | 
			
		||||
         "finished_at": "2016-08-12 15:26:29 UTC",
 | 
			
		||||
         "duration": 17.0,
 | 
			
		||||
         "queued_duration": 196.0,
 | 
			
		||||
         "failure_reason": null,
 | 
			
		||||
         "when": "on_success",
 | 
			
		||||
         "manual": false,
 | 
			
		||||
         "allow_failure": false,
 | 
			
		||||
         "user":{
 | 
			
		||||
            "id": 1,
 | 
			
		||||
            "name": "Administrator",
 | 
			
		||||
            "username": "root",
 | 
			
		||||
            "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
            "email": "admin@example.com"
 | 
			
		||||
         },
 | 
			
		||||
         "runner": {
 | 
			
		||||
            "id": 380987,
 | 
			
		||||
            "description": "shared-runners-manager-6.gitlab.com",
 | 
			
		||||
            "active": true,
 | 
			
		||||
            "runner_type": "instance_type",
 | 
			
		||||
            "is_shared": true,
 | 
			
		||||
            "tags": [
 | 
			
		||||
              "linux",
 | 
			
		||||
              "docker",
 | 
			
		||||
              "shared-runner"
 | 
			
		||||
            ]
 | 
			
		||||
         },
 | 
			
		||||
         "artifacts_file":{
 | 
			
		||||
            "filename": null,
 | 
			
		||||
            "size": null
 | 
			
		||||
         },
 | 
			
		||||
         "environment": null
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
         "id": 378,
 | 
			
		||||
         "stage": "test",
 | 
			
		||||
         "name": "test-build",
 | 
			
		||||
         "status": "failed",
 | 
			
		||||
         "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
         "started_at": "2016-08-12 15:26:12 UTC",
 | 
			
		||||
         "finished_at": "2016-08-12 15:26:29 UTC",
 | 
			
		||||
         "duration": 17.0,
 | 
			
		||||
         "queued_duration": 196.0,
 | 
			
		||||
         "failure_reason": "script_failure",
 | 
			
		||||
         "when": "on_success",
 | 
			
		||||
         "manual": false,
 | 
			
		||||
         "allow_failure": false,
 | 
			
		||||
         "user":{
 | 
			
		||||
            "id": 1,
 | 
			
		||||
            "name": "Administrator",
 | 
			
		||||
            "username": "root",
 | 
			
		||||
            "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
            "email": "admin@example.com"
 | 
			
		||||
         },
 | 
			
		||||
         "runner": {
 | 
			
		||||
            "id":380987,
 | 
			
		||||
            "description":"shared-runners-manager-6.gitlab.com",
 | 
			
		||||
            "active":true,
 | 
			
		||||
            "runner_type": "instance_type",
 | 
			
		||||
            "is_shared": true,
 | 
			
		||||
            "tags": [
 | 
			
		||||
              "linux",
 | 
			
		||||
              "docker"
 | 
			
		||||
            ]
 | 
			
		||||
         },
 | 
			
		||||
         "artifacts_file":{
 | 
			
		||||
            "filename": null,
 | 
			
		||||
            "size": null
 | 
			
		||||
         },
 | 
			
		||||
         "environment": null
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
         "id": 376,
 | 
			
		||||
         "stage": "build",
 | 
			
		||||
         "name": "build-image",
 | 
			
		||||
         "status": "success",
 | 
			
		||||
         "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
         "started_at": "2016-08-12 15:24:56 UTC",
 | 
			
		||||
         "finished_at": "2016-08-12 15:25:26 UTC",
 | 
			
		||||
         "duration": 17.0,
 | 
			
		||||
         "queued_duration": 196.0,
 | 
			
		||||
         "failure_reason": null,
 | 
			
		||||
         "when": "on_success",
 | 
			
		||||
         "manual": false,
 | 
			
		||||
         "allow_failure": false,
 | 
			
		||||
         "user":{
 | 
			
		||||
            "id": 1,
 | 
			
		||||
            "name": "Administrator",
 | 
			
		||||
            "username": "root",
 | 
			
		||||
            "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
            "email": "admin@example.com"
 | 
			
		||||
         },
 | 
			
		||||
         "runner": {
 | 
			
		||||
            "id": 380987,
 | 
			
		||||
            "description": "shared-runners-manager-6.gitlab.com",
 | 
			
		||||
            "active": true,
 | 
			
		||||
            "runner_type": "instance_type",
 | 
			
		||||
            "is_shared": true,
 | 
			
		||||
            "tags": [
 | 
			
		||||
              "linux",
 | 
			
		||||
              "docker"
 | 
			
		||||
            ]
 | 
			
		||||
         },
 | 
			
		||||
         "artifacts_file":{
 | 
			
		||||
            "filename": null,
 | 
			
		||||
            "size": null
 | 
			
		||||
         },
 | 
			
		||||
         "environment": null
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
         "id": 379,
 | 
			
		||||
         "stage": "deploy",
 | 
			
		||||
         "name": "staging",
 | 
			
		||||
         "status": "created",
 | 
			
		||||
         "created_at": "2016-08-12 15:23:28 UTC",
 | 
			
		||||
         "started_at": null,
 | 
			
		||||
         "finished_at": null,
 | 
			
		||||
         "duration": null,
 | 
			
		||||
         "queued_duration": null,
 | 
			
		||||
         "failure_reason": null,
 | 
			
		||||
         "when": "on_success",
 | 
			
		||||
         "manual": false,
 | 
			
		||||
         "allow_failure": false,
 | 
			
		||||
         "user":{
 | 
			
		||||
            "id": 1,
 | 
			
		||||
            "name": "Administrator",
 | 
			
		||||
            "username": "root",
 | 
			
		||||
            "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon",
 | 
			
		||||
            "email": "admin@example.com"
 | 
			
		||||
         },
 | 
			
		||||
         "runner": null,
 | 
			
		||||
         "artifacts_file":{
 | 
			
		||||
            "filename": null,
 | 
			
		||||
            "size": null
 | 
			
		||||
         },
 | 
			
		||||
         "environment": {
 | 
			
		||||
           "name": "staging",
 | 
			
		||||
           "action": "start",
 | 
			
		||||
           "deployment_tier": "staging"
 | 
			
		||||
         }
 | 
			
		||||
      }
 | 
			
		||||
   ]
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user