├── .dockerignore
├── .github
├── dependabot.yml
└── workflows
│ ├── codeql.yml
│ ├── docker-sync-experimental.yml
│ ├── docker-sync-readme.yml
│ └── docker-sync.yml
├── .gitignore
├── Dockerfile
├── LICENSE
├── README.md
├── app
├── bot
│ ├── cogs
│ │ └── app.py
│ └── helper
│ │ ├── confighelper.py
│ │ ├── db.py
│ │ ├── dbupdater.py
│ │ ├── jellyfinhelper.py
│ │ ├── message.py
│ │ ├── plexhelper.py
│ │ └── textformat.py
└── config
│ └── .gitignore
├── bot.env
├── icon.png
├── requirements.txt
└── run.py
/.dockerignore:
--------------------------------------------------------------------------------
1 | # Byte-compiled / optimized / DLL files
2 | **/__pycache__/
3 | *.py[cod]
4 |
5 | bot.env
6 | mount
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "pip" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "weekly"
12 |
--------------------------------------------------------------------------------
/.github/workflows/codeql.yml:
--------------------------------------------------------------------------------
1 | # For most projects, this workflow file will not need changing; you simply need
2 | # to commit it to your repository.
3 | #
4 | # You may wish to alter this file to override the set of languages analyzed,
5 | # or to provide custom queries or build logic.
6 | #
7 | # ******** NOTE ********
8 | # We have attempted to detect the languages in your repository. Please check
9 | # the `language` matrix defined below to confirm you have the correct set of
10 | # supported CodeQL languages.
11 | #
12 | name: "CodeQL"
13 |
14 | on:
15 | push:
16 | branches: [ "master", "development" ]
17 | pull_request:
18 | # The branches below must be a subset of the branches above
19 | branches: [ "master", "development" ]
20 | schedule:
21 | - cron: '32 15 * * 5'
22 |
23 | jobs:
24 | analyze:
25 | name: Analyze
26 | runs-on: ubuntu-latest
27 | permissions:
28 | actions: read
29 | contents: read
30 | security-events: write
31 |
32 | strategy:
33 | fail-fast: false
34 | matrix:
35 | language: [ 'python' ]
36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37 | # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
38 |
39 | steps:
40 | - name: Checkout repository
41 | uses: actions/checkout@v3
42 |
43 | # Initializes the CodeQL tools for scanning.
44 | - name: Initialize CodeQL
45 | uses: github/codeql-action/init@v2
46 | with:
47 | languages: ${{ matrix.language }}
48 | # If you wish to specify custom queries, you can do so here or in a config file.
49 | # By default, queries listed here will override any specified in a config file.
50 | # Prefix the list here with "+" to use these queries and those in the config file.
51 |
52 | # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53 | # queries: security-extended,security-and-quality
54 |
55 |
56 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57 | # If this step fails, then you should remove it and run the build manually (see below)
58 | - name: Autobuild
59 | uses: github/codeql-action/autobuild@v2
60 |
61 | # ℹ️ Command-line programs to run using the OS shell.
62 | # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
63 |
64 | # If the Autobuild fails above, remove it and uncomment the following three lines.
65 | # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
66 |
67 | # - run: |
68 | # echo "Run, Build Application using script"
69 | # ./location_of_script_within_repo/buildscript.sh
70 |
71 | - name: Perform CodeQL Analysis
72 | uses: github/codeql-action/analyze@v2
73 | with:
74 | category: "/language:${{matrix.language}}"
75 |
--------------------------------------------------------------------------------
/.github/workflows/docker-sync-experimental.yml:
--------------------------------------------------------------------------------
1 | # This is a basic workflow to help you get started with Actions
2 |
3 | name: docker-sync-experimental
4 |
5 | # Controls when the workflow will run
6 | on:
7 | # Triggers the workflow on push or pull request events but only for the "master" branch
8 | push:
9 | branches: [ "experimental" ]
10 | paths-ignore:
11 | - '.github/**'
12 | - 'README.md'
13 |
14 | # Allows you to run this workflow manually from the Actions tab
15 | workflow_dispatch:
16 |
17 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel
18 | jobs:
19 | Push-Images:
20 | runs-on: ubuntu-latest
21 | steps:
22 | -
23 | name: Set up QEMU
24 | uses: docker/setup-qemu-action@v2
25 | -
26 | name: Set up Docker Buildx
27 | uses: docker/setup-buildx-action@v2
28 | -
29 | name: Login to DockerHub
30 | uses: docker/login-action@v2
31 | with:
32 | username: ${{ secrets.DOCKER_USER }}
33 | password: ${{ secrets.DOCKER_TOKEN }}
34 | -
35 | name: Build and push to membarr
36 | uses: docker/build-push-action@v3
37 | with:
38 | push: true
39 | tags: yoruio/membarr:experimental
40 | -
41 | name: Build and push to invitarr
42 | uses: docker/build-push-action@v3
43 | with:
44 | push: true
45 | tags: yoruio/invitarr:experimental
46 |
47 |
--------------------------------------------------------------------------------
/.github/workflows/docker-sync-readme.yml:
--------------------------------------------------------------------------------
1 | # This is a basic workflow to help you get started with Actions
2 |
3 | name: docker-sync-readme
4 |
5 | # Controls when the workflow will run
6 | on:
7 | # Triggers the workflow on push or pull request events but only for the "master" branch
8 | push:
9 | branches: [ "master" ]
10 | paths:
11 | - 'README.md'
12 |
13 | # Allows you to run this workflow manually from the Actions tab
14 | workflow_dispatch:
15 |
16 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17 | jobs:
18 | Sync-Readme:
19 | # The type of runner that the job will run on
20 | runs-on: ubuntu-latest
21 |
22 | # Steps represent a sequence of tasks that will be executed as part of the job
23 | steps:
24 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25 | - uses: actions/checkout@v3
26 |
27 | - uses: meeDamian/sync-readme@v1.0.6
28 | with:
29 | pass: ${{ secrets.DOCKER_PASS }}
30 | description: true
31 |
32 | - uses: meeDamian/sync-readme@v1.0.6
33 | with:
34 | pass: ${{ secrets.DOCKER_PASS }}
35 | slug: yoruio/invitarr
36 | description: Mirror of yoruio/membarr. Use yoruio/membarr instead.
37 |
--------------------------------------------------------------------------------
/.github/workflows/docker-sync.yml:
--------------------------------------------------------------------------------
1 | # This is a basic workflow to help you get started with Actions
2 |
3 | name: docker-sync
4 |
5 | # Controls when the workflow will run
6 | on:
7 | # Triggers the workflow on push or pull request events but only for the "master" branch
8 | push:
9 | branches: [ "master" ]
10 | paths-ignore:
11 | - '.github/**'
12 | - 'README.md'
13 |
14 | # Allows you to run this workflow manually from the Actions tab
15 | workflow_dispatch:
16 |
17 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel
18 | jobs:
19 | Push-Images:
20 | runs-on: ubuntu-latest
21 | steps:
22 | -
23 | name: Set up QEMU
24 | uses: docker/setup-qemu-action@v2
25 | -
26 | name: Set up Docker Buildx
27 | uses: docker/setup-buildx-action@v2
28 | -
29 | name: Login to DockerHub
30 | uses: docker/login-action@v2
31 | with:
32 | username: ${{ secrets.DOCKER_USER }}
33 | password: ${{ secrets.DOCKER_TOKEN }}
34 | -
35 | name: Build and push to membarr
36 | uses: docker/build-push-action@v3
37 | with:
38 | push: true
39 | tags: yoruio/membarr:latest
40 | -
41 | name: Build and push to invitarr
42 | uses: docker/build-push-action@v3
43 | with:
44 | push: true
45 | tags: yoruio/invitarr:latest
46 |
47 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Byte-compiled / optimized / DLL files
2 | __pycache__/
3 | *.py[cod]
4 |
5 | mount
6 | .idea
7 | .venv
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM python:3.9.1-alpine
2 |
3 | RUN \
4 | echo "http://dl-8.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
5 | echo "http://dl-8.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
6 |
7 | # Install basic dependencies
8 | RUN \
9 | apk --no-cache add -q git cloc openssl openssl-dev openssh alpine-sdk bash gettext sudo build-base gnupg linux-headers xz
10 |
11 | WORKDIR /app
12 | COPY . .
13 | RUN pip install -Ur requirements.txt
14 | CMD ["python", "-u", "run.py"]
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://discord.gg/7hAUKKTyTd)
2 | [](https://hub.docker.com/r/yoruio/membarr)
3 | 
4 | [](https://github.com/Yoruio/Membarr/actions/workflows/docker-sync.yml)
5 |
6 | Membarr
7 | =================
8 |
9 | Membarr is a fork of Invitarr that invites discord users to Plex and Jellyfin. You can also automate this bot to invite discord users to a media server once a certain role is given to a user or the user can also be added manually.
10 |
11 | ### Features
12 |
13 | - Ability to invite users to Plex and Jellyfin from discord
14 | - Fully automatic invites using roles
15 | - Ability to kick users from plex if they leave the discord server or if their role is taken away.
16 | - Ability to view the database in discord and to edit it.
17 |
18 | Commands:
19 |
20 | ```
21 | /plex invite
22 | This command is used to add an email to plex
23 | /plex remove
24 | This command is used to remove an email from plex
25 | /jellyfin invite
26 | This command is used to add a user to Jellyfin.
27 | /jellyfin remove
28 | This command is used to remove a user from Jellyfin.
29 | /membarr dbls
30 | This command is used to list Membarr's database
31 | /membarr dbadd <@user>
32 | This command is used to add exsisting plex emails, jellyfin users and discord id to the DB.
33 | /membarr dbrm
34 | This command is used to remove a record from the Db. Use /membarr dbls to determine record position. ex: /membarr dbrm 1
35 | ```
36 | # Creating Discord Bot
37 | 1. Create the discord server that your users will get member roles or use an existing discord that you can assign roles from
38 | 2. Log into https://discord.com/developers/applications and click 'New Application'
39 | 3. (Optional) Add a short description and an icon for the bot. Save changes.
40 | 4. Go to 'Bot' section in the side menu
41 | 5. Uncheck 'Public Bot' under Authorization Flow
42 | 6. Check all 3 boxes under Privileged Gateway Intents: Presence Intent, Server Members Intent, Message Content Intent. Save changes.
43 | 7. Copy the token under the username or reset it to copy. This is the token used in the docker image.
44 | 8. Go to 'OAuth2' section in the side menu, then 'URL Generator'
45 | 9. Under Scopes, check 'bot' and applications.commands
46 | 10. Copy the 'Generated URL' and paste into your browser and add it to your discord server from Step 1.
47 | 11. The bot will come online after the docker container is running with the correct Bot Token
48 |
49 |
50 | # Unraid Installation
51 | > For Manual an Docker setup, see below
52 |
53 | 1. Ensure you have the Community Applications plugin installed.
54 | 2. Inside the Community Applications app store, search for Membarr.
55 | 3. Click the Install Button.
56 | 4. Add discord bot token.
57 | 5. Click apply
58 | 6. Finish setting up using [Setup Commands](#after-bot-has-started)
59 |
60 | # Manual Setup (For Docker, see below)
61 |
62 | **1. Enter discord bot token in bot.env**
63 |
64 | **2. Install requirements**
65 |
66 | ```
67 | pip3 install -r requirements.txt
68 | ```
69 | **3. Start the bot**
70 | ```
71 | python3 Run.py
72 | ```
73 |
74 | # Docker Setup & Start
75 | To run Membarr in Docker, run the following command, replacing [path to config] with the absolute path to your bot config folder:
76 | ```
77 | docker run -d --restart unless-stopped --name membarr -v /[path to config]:/app/app/config -e "token=YOUR_DISCORD_TOKEN_HERE" yoruio/membarr:latest
78 | ```
79 |
80 | # After bot has started
81 |
82 | # Plex Setup Commands:
83 |
84 | ```
85 | /plexsettings setup
86 | This command is used to setup plex login.
87 | /plexsettings addrole <@role>
88 | These role(s) will be used as the role(s) to automatically invite user to plex
89 | /plexsettings removerole <@role>
90 | This command is used to remove a role that is being used to automatically invite uses to plex
91 | /plexsettings setuplibs
92 | This command is used to setup plex libraries. Default is set to all. Libraries is a comma separated list.
93 | /plexsettings enable
94 | This command enables the Plex integration (currently only enables auto-add / auto-remove)
95 | /plexsettings disable
96 | This command disables the Plex integration (currently only disables auto-add / auto-remove)
97 | ```
98 |
99 | # Jellyfin Setup Commands:
100 | ```
101 | /jellyfinsettings setup
102 | This command is used to setup the Jellyfin server. The external server URL is the URL that is sent to users to log into your Jellyfin server.
103 | /jellyfinsettings addrole <@role>
104 | These role(s) will be used as the role(s) to automatically invite user to Jellyfin
105 | /jellyfinsettings removerole <@role>
106 | This command is used to remove a role that is being used to automatically invite uses to Jellyfin
107 | /jellyfinsettings setuplibs
108 | This command is used to setup Jellyfin libraries. Default is set to all. Libraries is a comma separated list.
109 | /jellyfinsettings enable
110 | This command enables the Jellyfin integration (currently only enables auto-add / auto-remove)
111 | /jellyfinsettings disable
112 | This command disables the Jellyfin integration (currently only disables auto-add / auto-remove)
113 | ```
114 |
115 | # Migration from Invitarr
116 | Invitarr does not require the applications.commands scope, so you will need to kick and reinvite your Discord bot to your server, making sure to tick both the "bot" and "applications.commands" scopes in the Oauth URL generator.
117 |
118 | Membarr uses a slightly different database table than Invitarr. Membarr will automatically update the Invitarr db table to the current Membarr table format, but the new table will no longer be compatible with Invitarr, so backup your app.db before running Membarr!
119 |
120 | # Migration to Invitarr
121 | As mentioned in [Migration from Invitarr](#Migration-From-Invitarr), Membarr has a slightly different db table than Invitarr. To Switch back to Invitarr, you will have to manually change the table format back. Open app.db in a sqlite cli tool or browser like DB Browser, then remove the "jellyfin_username" column, and make the "email" column non-nullable.
122 |
123 | # Contributing
124 | We appreciate any and all contributions made to the project, whether that be new features, bugfixes, or even fixed typos! If you would like to contribute to the project, simply fork the development branch, make your changes, and open a pull request. *Pull requests that are not based on the development branch will be rejected.*
125 |
126 | # Other stuff
127 | **Enable Intents else bot will not Dm users after they get the role.**
128 | https://discordpy.readthedocs.io/en/latest/intents.html#privileged-intents
129 | **Discord Bot requires Bot and application.commands permission to fully function.**
130 |
--------------------------------------------------------------------------------
/app/bot/cogs/app.py:
--------------------------------------------------------------------------------
1 | from pickle import FALSE
2 | import app.bot.helper.jellyfinhelper as jelly
3 | from app.bot.helper.textformat import bcolors
4 | import discord
5 | from discord.ext import commands
6 | from discord import app_commands
7 | import asyncio
8 | from plexapi.myplex import MyPlexAccount
9 | from plexapi.server import PlexServer
10 | import app.bot.helper.db as db
11 | import app.bot.helper.plexhelper as plexhelper
12 | import app.bot.helper.jellyfinhelper as jelly
13 | import texttable
14 | from app.bot.helper.message import *
15 | from app.bot.helper.confighelper import *
16 |
17 | CONFIG_PATH = 'app/config/config.ini'
18 | BOT_SECTION = 'bot_envs'
19 |
20 | plex_configured = True
21 | jellyfin_configured = True
22 |
23 | config = configparser.ConfigParser()
24 | config.read(CONFIG_PATH)
25 |
26 | plex_token_configured = True
27 | try:
28 | PLEX_TOKEN = config.get(BOT_SECTION, 'plex_token')
29 | PLEX_BASE_URL = config.get(BOT_SECTION, 'plex_base_url')
30 | except:
31 | print("No Plex auth token details found")
32 | plex_token_configured = False
33 |
34 | # Get Plex config
35 | try:
36 | PLEXUSER = config.get(BOT_SECTION, 'plex_user')
37 | PLEXPASS = config.get(BOT_SECTION, 'plex_pass')
38 | PLEX_SERVER_NAME = config.get(BOT_SECTION, 'plex_server_name')
39 | except:
40 | print("No Plex login info found")
41 | if not plex_token_configured:
42 | print("Could not load plex config")
43 | plex_configured = False
44 |
45 | # Get Plex roles config
46 | try:
47 | plex_roles = config.get(BOT_SECTION, 'plex_roles')
48 | except:
49 | plex_roles = None
50 | if plex_roles:
51 | plex_roles = list(plex_roles.split(','))
52 | else:
53 | plex_roles = []
54 |
55 | # Get Plex libs config
56 | try:
57 | Plex_LIBS = config.get(BOT_SECTION, 'plex_libs')
58 | except:
59 | Plex_LIBS = None
60 | if Plex_LIBS is None:
61 | Plex_LIBS = ["all"]
62 | else:
63 | Plex_LIBS = list(Plex_LIBS.split(','))
64 |
65 | # Get Jellyfin config
66 | try:
67 | JELLYFIN_SERVER_URL = config.get(BOT_SECTION, 'jellyfin_server_url')
68 | JELLYFIN_API_KEY = config.get(BOT_SECTION, "jellyfin_api_key")
69 | except:
70 | jellyfin_configured = False
71 |
72 | # Get Jellyfin roles config
73 | try:
74 | jellyfin_roles = config.get(BOT_SECTION, 'jellyfin_roles')
75 | except:
76 | jellyfin_roles = None
77 | if jellyfin_roles:
78 | jellyfin_roles = list(jellyfin_roles.split(','))
79 | else:
80 | jellyfin_roles = []
81 |
82 | # Get Jellyfin libs config
83 | try:
84 | jellyfin_libs = config.get(BOT_SECTION, 'jellyfin_libs')
85 | except:
86 | jellyfin_libs = None
87 | if jellyfin_libs is None:
88 | jellyfin_libs = ["all"]
89 | else:
90 | jellyfin_libs = list(jellyfin_libs.split(','))
91 |
92 | # Get Enable config
93 | try:
94 | USE_JELLYFIN = config.get(BOT_SECTION, 'jellyfin_enabled')
95 | USE_JELLYFIN = USE_JELLYFIN.lower() == "true"
96 | except:
97 | USE_JELLYFIN = False
98 |
99 | try:
100 | USE_PLEX = config.get(BOT_SECTION, "plex_enabled")
101 | USE_PLEX = USE_PLEX.lower() == "true"
102 | except:
103 | USE_PLEX = False
104 |
105 | try:
106 | JELLYFIN_EXTERNAL_URL = config.get(BOT_SECTION, "jellyfin_external_url")
107 | if not JELLYFIN_EXTERNAL_URL:
108 | JELLYFIN_EXTERNAL_URL = JELLYFIN_SERVER_URL
109 | except:
110 | JELLYFIN_EXTERNAL_URL = JELLYFIN_SERVER_URL
111 | print("Could not get Jellyfin external url. Defaulting to server url.")
112 |
113 | if USE_PLEX and plex_configured:
114 | try:
115 | print("Connecting to Plex......")
116 | if plex_token_configured and PLEX_TOKEN and PLEX_BASE_URL:
117 | print("Using Plex auth token")
118 | plex = PlexServer(PLEX_BASE_URL, PLEX_TOKEN)
119 | else:
120 | print("Using Plex login info")
121 | account = MyPlexAccount(PLEXUSER, PLEXPASS)
122 | plex = account.resource(PLEX_SERVER_NAME).connect() # returns a PlexServer instance
123 | print('Logged into plex!')
124 | except Exception as e:
125 | # probably rate limited.
126 | print('Error with plex login. Please check Plex authentication details. If you have restarted the bot multiple times recently, this is most likely due to being ratelimited on the Plex API. Try again in 10 minutes.')
127 | print(f'Error: {e}')
128 | else:
129 | print(f"Plex {'disabled' if not USE_PLEX else 'not configured'}. Skipping Plex login.")
130 |
131 |
132 | class app(commands.Cog):
133 | # App command groups
134 | plex_commands = app_commands.Group(name="plex", description="Membarr Plex commands")
135 | jellyfin_commands = app_commands.Group(name="jellyfin", description="Membarr Jellyfin commands")
136 | membarr_commands = app_commands.Group(name="membarr", description="Membarr general commands")
137 |
138 | def __init__(self, bot):
139 | self.bot = bot
140 |
141 | @commands.Cog.listener()
142 | async def on_ready(self):
143 | print('------')
144 | print("{:^41}".format(f"MEMBARR V {MEMBARR_VERSION}"))
145 | print(f'Made by Yoruio https://github.com/Yoruio/\n')
146 | print(f'Forked from Invitarr https://github.com/Sleepingpirates/Invitarr')
147 | print(f'Named by lordfransie')
148 | print(f'Logged in as {self.bot.user} (ID: {self.bot.user.id})')
149 | print('------')
150 |
151 | # TODO: Make these debug statements work. roles are currently empty arrays if no roles assigned.
152 | if plex_roles is None:
153 | print('Configure Plex roles to enable auto invite to Plex after a role is assigned.')
154 | if jellyfin_roles is None:
155 | print('Configure Jellyfin roles to enable auto invite to Jellyfin after a role is assigned.')
156 |
157 | async def getemail(self, after):
158 | email = None
159 | await embedinfo(after,'Welcome To '+ PLEX_SERVER_NAME +'. Please reply with your email to be added to the Plex server!')
160 | await embedinfo(after,'If you do not respond within 24 hours, the request will be cancelled, and the server admin will need to add you manually.')
161 | while(email == None):
162 | def check(m):
163 | return m.author == after and not m.guild
164 | try:
165 | email = await self.bot.wait_for('message', timeout=86400, check=check)
166 | if(plexhelper.verifyemail(str(email.content))):
167 | return str(email.content)
168 | else:
169 | email = None
170 | message = "The email you provided is invalid, please respond only with the email you used to sign up for Plex."
171 | await embederror(after, message)
172 | continue
173 | except asyncio.TimeoutError:
174 | message = "Timed out. Please contact the server admin directly."
175 | await embederror(after, message)
176 | return None
177 |
178 | async def getusername(self, after):
179 | username = None
180 | await embedinfo(after, f"Welcome To Jellyfin! Please reply with your username to be added to the Jellyfin server!")
181 | await embedinfo(after, f"If you do not respond within 24 hours, the request will be cancelled, and the server admin will need to add you manually.")
182 | while (username is None):
183 | def check(m):
184 | return m.author == after and not m.guild
185 | try:
186 | username = await self.bot.wait_for('message', timeout=86400, check=check)
187 | if(jelly.verify_username(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, str(username.content))):
188 | return str(username.content)
189 | else:
190 | username = None
191 | message = "This username is already choosen. Please select another username."
192 | await embederror(after, message)
193 | continue
194 | except asyncio.TimeoutError:
195 | message = "Timed out. Please contact the server admin directly."
196 | print("Jellyfin user prompt timed out")
197 | await embederror(after, message)
198 | return None
199 | except Exception as e:
200 | await embederror(after, "Something went wrong. Please try again with another username.")
201 | print (e)
202 | username = None
203 |
204 |
205 | async def addtoplex(self, email, response):
206 | if(plexhelper.verifyemail(email)):
207 | if plexhelper.plexadd(plex,email,Plex_LIBS):
208 | await embedinfo(response, 'This email address has been added to plex')
209 | return True
210 | else:
211 | await embederror(response, 'There was an error adding this email address. Check logs.')
212 | return False
213 | else:
214 | await embederror(response, 'Invalid email.')
215 | return False
216 |
217 | async def removefromplex(self, email, response):
218 | if(plexhelper.verifyemail(email)):
219 | if plexhelper.plexremove(plex,email):
220 | await embedinfo(response, 'This email address has been removed from plex.')
221 | return True
222 | else:
223 | await embederror(response, 'There was an error removing this email address. Check logs.')
224 | return False
225 | else:
226 | await embederror(response, 'Invalid email.')
227 | return False
228 |
229 | async def addtojellyfin(self, username, password, response):
230 | if not jelly.verify_username(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username):
231 | await embederror(response, f'An account with username {username} already exists.')
232 | return False
233 |
234 | if jelly.add_user(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username, password, jellyfin_libs):
235 | return True
236 | else:
237 | await embederror(response, 'There was an error adding this user to Jellyfin. Check logs for more info.')
238 | return False
239 |
240 | async def removefromjellyfin(self, username, response):
241 | if jelly.verify_username(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username):
242 | await embederror(response, f'Could not find account with username {username}.')
243 | return
244 |
245 | if jelly.remove_user(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username):
246 | await embedinfo(response, f'Successfully removed user {username} from Jellyfin.')
247 | return True
248 | else:
249 | await embederror(response, f'There was an error removing this user from Jellyfin. Check logs for more info.')
250 | return False
251 |
252 | @commands.Cog.listener()
253 | async def on_member_update(self, before, after):
254 | if plex_roles is None and jellyfin_roles is None:
255 | return
256 | roles_in_guild = after.guild.roles
257 | role = None
258 |
259 | plex_processed = False
260 | jellyfin_processed = False
261 |
262 | # Check Plex roles
263 | if plex_configured and USE_PLEX:
264 | for role_for_app in plex_roles:
265 | for role_in_guild in roles_in_guild:
266 | if role_in_guild.name == role_for_app:
267 | role = role_in_guild
268 |
269 | # Plex role was added
270 | if role is not None and (role in after.roles and role not in before.roles):
271 | email = await self.getemail(after)
272 | if email is not None:
273 | await embedinfo(after, "Got it we will be adding your email to plex shortly!")
274 | if plexhelper.plexadd(plex,email,Plex_LIBS):
275 | db.save_user_email(str(after.id), email)
276 | await asyncio.sleep(5)
277 | await embedinfo(after, 'You have Been Added To Plex! Login to plex and accept the invite!')
278 | else:
279 | await embedinfo(after, 'There was an error adding this email address. Message Server Admin.')
280 | plex_processed = True
281 | break
282 |
283 | # Plex role was removed
284 | elif role is not None and (role not in after.roles and role in before.roles):
285 | try:
286 | user_id = after.id
287 | email = db.get_useremail(user_id)
288 | plexhelper.plexremove(plex,email)
289 | deleted = db.remove_email(user_id)
290 | if deleted:
291 | print("Removed Plex email {} from db".format(after.name))
292 | #await secure.send(plexname + ' ' + after.mention + ' was removed from plex')
293 | else:
294 | print("Cannot remove Plex from this user.")
295 | await embedinfo(after, "You have been removed from Plex")
296 | except Exception as e:
297 | print(e)
298 | print("{} Cannot remove this user from plex.".format(email))
299 | plex_processed = True
300 | break
301 | if plex_processed:
302 | break
303 |
304 | role = None
305 | # Check Jellyfin roles
306 | if jellyfin_configured and USE_JELLYFIN:
307 | for role_for_app in jellyfin_roles:
308 | for role_in_guild in roles_in_guild:
309 | if role_in_guild.name == role_for_app:
310 | role = role_in_guild
311 |
312 | # Jellyfin role was added
313 | if role is not None and (role in after.roles and role not in before.roles):
314 | print("Jellyfin role added")
315 | username = await self.getusername(after)
316 | print("Username retrieved from user")
317 | if username is not None:
318 | await embedinfo(after, "Got it we will be creating your Jellyfin account shortly!")
319 | password = jelly.generate_password(16)
320 | if jelly.add_user(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username, password, jellyfin_libs):
321 | db.save_user_jellyfin(str(after.id), username)
322 | await asyncio.sleep(5)
323 | await embedcustom(after, "You have been added to Jellyfin!", {'Username': username, 'Password': f"||{password}||"})
324 | await embedinfo(after, f"Go to {JELLYFIN_EXTERNAL_URL} to log in!")
325 | else:
326 | await embedinfo(after, 'There was an error adding this user to Jellyfin. Message Server Admin.')
327 | jellyfin_processed = True
328 | break
329 |
330 | # Jellyfin role was removed
331 | elif role is not None and (role not in after.roles and role in before.roles):
332 | print("Jellyfin role removed")
333 | try:
334 | user_id = after.id
335 | username = db.get_jellyfin_username(user_id)
336 | jelly.remove_user(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, username)
337 | deleted = db.remove_jellyfin(user_id)
338 | if deleted:
339 | print("Removed Jellyfin from {}".format(after.name))
340 | #await secure.send(plexname + ' ' + after.mention + ' was removed from plex')
341 | else:
342 | print("Cannot remove Jellyfin from this user")
343 | await embedinfo(after, "You have been removed from Jellyfin")
344 | except Exception as e:
345 | print(e)
346 | print("{} Cannot remove this user from Jellyfin.".format(username))
347 | jellyfin_processed = True
348 | break
349 | if jellyfin_processed:
350 | break
351 |
352 | @commands.Cog.listener()
353 | async def on_member_remove(self, member):
354 | if USE_PLEX and plex_configured:
355 | email = db.get_useremail(member.id)
356 | plexhelper.plexremove(plex,email)
357 |
358 | if USE_JELLYFIN and jellyfin_configured:
359 | jellyfin_username = db.get_jellyfin_username(member.id)
360 | jelly.remove_user(JELLYFIN_SERVER_URL, JELLYFIN_API_KEY, jellyfin_username)
361 |
362 | deleted = db.delete_user(member.id)
363 | if deleted:
364 | print("Removed {} from db because user left discord server.".format(email))
365 |
366 | @app_commands.checks.has_permissions(administrator=True)
367 | @plex_commands.command(name="invite", description="Invite a user to Plex")
368 | async def plexinvite(self, interaction: discord.Interaction, email: str):
369 | await self.addtoplex(email, interaction.response)
370 |
371 | @app_commands.checks.has_permissions(administrator=True)
372 | @plex_commands.command(name="remove", description="Remove a user from Plex")
373 | async def plexremove(self, interaction: discord.Interaction, email: str):
374 | await self.removefromplex(email, interaction.response)
375 |
376 | @app_commands.checks.has_permissions(administrator=True)
377 | @jellyfin_commands.command(name="invite", description="Invite a user to Jellyfin")
378 | async def jellyfininvite(self, interaction: discord.Interaction, username: str):
379 | password = jelly.generate_password(16)
380 | if await self.addtojellyfin(username, password, interaction.response):
381 | await embedcustom(interaction.response, "Jellyfin user created!", {'Username': username, 'Password': f"||{password}||"})
382 |
383 | @app_commands.checks.has_permissions(administrator=True)
384 | @jellyfin_commands.command(name="remove", description="Remove a user from Jellyfin")
385 | async def jellyfinremove(self, interaction: discord.Interaction, username: str):
386 | await self.removefromjellyfin(username, interaction.response)
387 |
388 | @app_commands.checks.has_permissions(administrator=True)
389 | @membarr_commands.command(name="dbadd", description="Add a user to the Membarr database")
390 | async def dbadd(self, interaction: discord.Interaction, member: discord.Member, email: str = "", jellyfin_username: str = ""):
391 | email = email.strip()
392 | jellyfin_username = jellyfin_username.strip()
393 |
394 | # Check email if provided
395 | if email and not plexhelper.verifyemail(email):
396 | await embederror(interaction.response, "Invalid email.")
397 | return
398 |
399 | try:
400 | db.save_user_all(str(member.id), email, jellyfin_username)
401 | await embedinfo(interaction.response,'User was added to the database.')
402 | except Exception as e:
403 | await embedinfo(interaction.response, 'There was an error adding this user to database. Check Membarr logs for more info')
404 | print(e)
405 |
406 | @app_commands.checks.has_permissions(administrator=True)
407 | @membarr_commands.command(name="dbls", description="View Membarr database")
408 | async def dbls(self, interaction: discord.Interaction):
409 |
410 | embed = discord.Embed(title='Membarr Database.')
411 | all = db.read_all()
412 | table = texttable.Texttable()
413 | table.set_cols_dtype(["t", "t", "t", "t"])
414 | table.set_cols_align(["c", "c", "c", "c"])
415 | header = ("#", "Name", "Email", "Jellyfin")
416 | table.add_row(header)
417 | for index, peoples in enumerate(all):
418 | index = index + 1
419 | id = int(peoples[1])
420 | dbuser = self.bot.get_user(id)
421 | dbemail = peoples[2] if peoples[2] else "No Plex"
422 | dbjellyfin = peoples[3] if peoples[3] else "No Jellyfin"
423 | try:
424 | username = dbuser.name
425 | except:
426 | username = "User Not Found."
427 | embed.add_field(name=f"**{index}. {username}**", value=dbemail+'\n'+dbjellyfin+'\n', inline=False)
428 | table.add_row((index, username, dbemail, dbjellyfin))
429 |
430 | total = str(len(all))
431 | if(len(all)>25):
432 | f = open("db.txt", "w")
433 | f.write(table.draw())
434 | f.close()
435 | await interaction.response.send_message("Database too large! Total: {total}".format(total = total),file=discord.File('db.txt'), ephemeral=True)
436 | else:
437 | await interaction.response.send_message(embed = embed, ephemeral=True)
438 |
439 |
440 | @app_commands.checks.has_permissions(administrator=True)
441 | @membarr_commands.command(name="dbrm", description="Remove user from Membarr database")
442 | async def dbrm(self, interaction: discord.Interaction, position: int):
443 | embed = discord.Embed(title='Membarr Database.')
444 | all = db.read_all()
445 | for index, peoples in enumerate(all):
446 | index = index + 1
447 | id = int(peoples[1])
448 | dbuser = self.bot.get_user(id)
449 | dbemail = peoples[2] if peoples[2] else "No Plex"
450 | dbjellyfin = peoples[3] if peoples[3] else "No Jellyfin"
451 | try:
452 | username = dbuser.name
453 | except:
454 | username = "User Not Found."
455 | embed.add_field(name=f"**{index}. {username}**", value=dbemail+'\n'+dbjellyfin+'\n', inline=False)
456 |
457 | try:
458 | position = int(position) - 1
459 | id = all[position][1]
460 | discord_user = await self.bot.fetch_user(id)
461 | username = discord_user.name
462 | deleted = db.delete_user(id)
463 | if deleted:
464 | print("Removed {} from db".format(username))
465 | await embedinfo(interaction.response,"Removed {} from db".format(username))
466 | else:
467 | await embederror(interaction.response,"Cannot remove this user from db.")
468 | except Exception as e:
469 | print(e)
470 |
471 | async def setup(bot):
472 | await bot.add_cog(app(bot))
473 |
--------------------------------------------------------------------------------
/app/bot/helper/confighelper.py:
--------------------------------------------------------------------------------
1 | import configparser
2 | import os
3 | from os import environ, path
4 | from dotenv import load_dotenv
5 |
6 | CONFIG_PATH = 'app/config/config.ini'
7 | BOT_SECTION = 'bot_envs'
8 | MEMBARR_VERSION = 1.1
9 |
10 | config = configparser.ConfigParser()
11 |
12 | CONFIG_KEYS = ['username', 'password', 'discord_bot_token', 'plex_user', 'plex_pass', 'plex_token',
13 | 'plex_base_url', 'plex_roles', 'plex_server_name', 'plex_libs', 'owner_id', 'channel_id',
14 | 'auto_remove_user', 'jellyfin_api_key', 'jellyfin_server_url', 'jellyfin_roles',
15 | 'jellyfin_libs', 'plex_enabled', 'jellyfin_enabled', 'jellyfin_external_url']
16 |
17 | # settings
18 | Discord_bot_token = ""
19 | plex_roles = None
20 | PLEXUSER = ""
21 | PLEXPASS = ""
22 | PLEX_SERVER_NAME = ""
23 | PLEX_TOKEN = ""
24 | PLEX_BASE_URL = ""
25 | Plex_LIBS = None
26 | JELLYFIN_SERVER_URL = ""
27 | JELLYFIN_API_KEY = ""
28 | jellyfin_libs = ""
29 | jellyfin_roles = None
30 | plex_configured = True
31 | jellyfin_configured = True
32 |
33 | switch = 0
34 |
35 | # TODO: make this into a class
36 |
37 | if(path.exists('bot.env')):
38 | try:
39 | load_dotenv(dotenv_path='bot.env')
40 | # settings
41 | Discord_bot_token = environ.get('discord_bot_token')
42 | switch = 1
43 |
44 | except Exception as e:
45 | pass
46 |
47 | try:
48 | Discord_bot_token = str(os.environ['token'])
49 | switch = 1
50 | except Exception as e:
51 | pass
52 |
53 | if not (path.exists(CONFIG_PATH)):
54 | with open (CONFIG_PATH, 'w') as fp:
55 | pass
56 |
57 |
58 |
59 | config = configparser.ConfigParser()
60 | config.read(CONFIG_PATH)
61 |
62 | plex_token_configured = True
63 | try:
64 | PLEX_TOKEN = config.get(BOT_SECTION, 'plex_token')
65 | PLEX_BASE_URL = config.get(BOT_SECTION, 'plex_base_url')
66 | except:
67 | print("No Plex auth token details found")
68 | plex_token_configured = False
69 |
70 | # Get Plex config
71 | try:
72 | PLEX_SERVER_NAME = config.get(BOT_SECTION, 'plex_server_name')
73 | PLEXUSER = config.get(BOT_SECTION, 'plex_user')
74 | PLEXPASS = config.get(BOT_SECTION, 'plex_pass')
75 | except:
76 | print("No Plex login info found")
77 | if not plex_token_configured:
78 | print("Could not load plex config")
79 | plex_configured = False
80 |
81 | # Get Plex roles config
82 | try:
83 | plex_roles = config.get(BOT_SECTION, 'plex_roles')
84 | except:
85 | print("Could not get Plex roles config")
86 | plex_roles = None
87 | if plex_roles:
88 | plex_roles = list(plex_roles.split(','))
89 | else:
90 | plex_roles = []
91 |
92 | # Get Plex libs config
93 | try:
94 | Plex_LIBS = config.get(BOT_SECTION, 'plex_libs')
95 | except:
96 | print("Could not get Plex libs config. Defaulting to all libraries.")
97 | Plex_LIBS = None
98 | if Plex_LIBS is None:
99 | Plex_LIBS = ["all"]
100 | else:
101 | Plex_LIBS = list(Plex_LIBS.split(','))
102 |
103 | # Get Jellyfin config
104 | try:
105 | JELLYFIN_SERVER_URL = config.get(BOT_SECTION, 'jellyfin_server_url')
106 | JELLYFIN_API_KEY = config.get(BOT_SECTION, "jellyfin_api_key")
107 | except:
108 | print("Could not load Jellyfin config")
109 | jellyfin_configured = False
110 |
111 | try:
112 | JELLYFIN_EXTERNAL_URL = config.get(BOT_SECTION, "jellyfin_external_url")
113 | if not JELLYFIN_EXTERNAL_URL:
114 | JELLYFIN_EXTERNAL_URL = JELLYFIN_SERVER_URL
115 | except:
116 | JELLYFIN_EXTERNAL_URL = JELLYFIN_SERVER_URL
117 | print("Could not get Jellyfin external url. Defaulting to server url.")
118 |
119 | # Get Jellyfin roles config
120 | try:
121 | jellyfin_roles = config.get(BOT_SECTION, 'jellyfin_roles')
122 | except:
123 | print("Could not get Jellyfin roles config")
124 | jellyfin_roles = None
125 | if jellyfin_roles:
126 | jellyfin_roles = list(jellyfin_roles.split(','))
127 | else:
128 | jellyfin_roles = []
129 |
130 | # Get Jellyfin libs config
131 | try:
132 | jellyfin_libs = config.get(BOT_SECTION, 'jellyfin_libs')
133 | except:
134 | print("Could not get Jellyfin libs config. Defaulting to all libraries.")
135 | jellyfin_libs = None
136 | if jellyfin_libs is None:
137 | jellyfin_libs = ["all"]
138 | else:
139 | jellyfin_libs = list(jellyfin_libs.split(','))
140 |
141 | # Get Enable config
142 | try:
143 | USE_JELLYFIN = config.get(BOT_SECTION, 'jellyfin_enabled')
144 | USE_JELLYFIN = USE_JELLYFIN.lower() == "true"
145 | except:
146 | print("Could not get Jellyfin enable config. Defaulting to False")
147 | USE_JELLYFIN = False
148 |
149 | try:
150 | USE_PLEX = config.get(BOT_SECTION, "plex_enabled")
151 | USE_PLEX = USE_PLEX.lower() == "true"
152 | except:
153 | print("Could not get Plex enable config. Defaulting to False")
154 | USE_PLEX = False
155 |
156 | def get_config():
157 | """
158 | Function to return current config
159 | """
160 | try:
161 | config.read(CONFIG_PATH)
162 | return config
163 | except Exception as e:
164 | print(e)
165 | print('error in reading config')
166 | return None
167 |
168 |
169 | def change_config(key, value):
170 | """
171 | Function to change the key, value pair in config
172 | """
173 | try:
174 | config = configparser.ConfigParser()
175 | config.read(CONFIG_PATH)
176 | except Exception as e:
177 | print(e)
178 | print("Cannot Read config.")
179 |
180 | try:
181 | config.set(BOT_SECTION, key, str(value))
182 | except Exception as e:
183 | config.add_section(BOT_SECTION)
184 | config.set(BOT_SECTION, key, str(value))
185 |
186 | try:
187 | with open(CONFIG_PATH, 'w') as configfile:
188 | config.write(configfile)
189 | except Exception as e:
190 | print(e)
191 | print("Cannot write to config.")
192 |
--------------------------------------------------------------------------------
/app/bot/helper/db.py:
--------------------------------------------------------------------------------
1 | import sqlite3
2 |
3 | from app.bot.helper.dbupdater import check_table_version, update_table
4 |
5 | DB_URL = 'app/config/app.db'
6 | DB_TABLE = 'clients'
7 |
8 | def create_connection(db_file):
9 | """ create a database connection to a SQLite database """
10 | conn = None
11 | try:
12 | conn = sqlite3.connect(db_file)
13 | print("Connected to db")
14 | except Error as e:
15 | print("error in connecting to db")
16 | finally:
17 | if conn:
18 | return conn
19 |
20 | def checkTableExists(dbcon, tablename):
21 | dbcur = dbcon.cursor()
22 | dbcur.execute("""SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name='{0}';""".format(tablename.replace('\'', '\'\'')))
23 | if dbcur.fetchone()[0] == 1:
24 | dbcur.close()
25 | return True
26 | dbcur.close()
27 | return False
28 |
29 | conn = create_connection(DB_URL)
30 |
31 | # Checking if table exists
32 | if checkTableExists(conn, DB_TABLE):
33 | print('Table exists.')
34 | else:
35 | conn.execute(
36 | '''CREATE TABLE "clients" (
37 | "id" INTEGER NOT NULL UNIQUE,
38 | "discord_username" TEXT NOT NULL UNIQUE,
39 | "email" TEXT,
40 | "jellyfin_username" TEXT,
41 | PRIMARY KEY("id" AUTOINCREMENT)
42 | );''')
43 |
44 | update_table(conn, DB_TABLE)
45 |
46 | def save_user_email(username, email):
47 | if username and email:
48 | conn.execute(f"""
49 | INSERT OR REPLACE INTO clients(discord_username, email)
50 | VALUES('{username}', '{email}')
51 | """)
52 | conn.commit()
53 | print("User added to db.")
54 | else:
55 | return "Username and email cannot be empty"
56 |
57 | def save_user(username):
58 | if username:
59 | conn.execute("INSERT INTO clients (discord_username) VALUES ('"+ username +"')")
60 | conn.commit()
61 | print("User added to db.")
62 | else:
63 | return "Username cannot be empty"
64 |
65 | def save_user_jellyfin(username, jellyfin_username):
66 | if username and jellyfin_username:
67 | conn.execute(f"""
68 | INSERT OR REPLACE INTO clients(discord_username, jellyfin_username)
69 | VALUES('{username}', '{jellyfin_username}')
70 | """)
71 | conn.commit()
72 | print("User added to db.")
73 | else:
74 | return "Discord and Jellyfin usernames cannot be empty"
75 |
76 | def save_user_all(username, email, jellyfin_username):
77 | if username and email and jellyfin_username:
78 | conn.execute(f"""
79 | INSERT OR REPLACE INTO clients(discord_username, email, jellyfin_username)
80 | VALUES('{username}', '{email}', '{jellyfin_username}')
81 | """)
82 | conn.commit()
83 | print("User added to db.")
84 | elif username and email:
85 | save_user_email(username, email)
86 | elif username and jellyfin_username:
87 | save_user_jellyfin(username, jellyfin_username)
88 | elif username:
89 | save_user(username)
90 | else:
91 | return "Discord username must all be provided"
92 |
93 | def get_useremail(username):
94 | if username:
95 | try:
96 | cursor = conn.execute('SELECT discord_username, email from clients where discord_username="{}";'.format(username))
97 | for row in cursor:
98 | email = row[1]
99 | if email:
100 | return email
101 | else:
102 | return "No email found"
103 | except:
104 | return "error in fetching from db"
105 | else:
106 | return "username cannot be empty"
107 |
108 | def get_jellyfin_username(username):
109 | """
110 | Get jellyfin username of user based on discord username
111 |
112 | param username: discord username
113 |
114 | return jellyfin username
115 | """
116 | if username:
117 | try:
118 | cursor = conn.execute('SELECT discord_username, jellyfin_username from clients where discord_username="{}";'.format(username))
119 | for row in cursor:
120 | jellyfin_username = row[1]
121 | if jellyfin_username:
122 | return jellyfin_username
123 | else:
124 | return "No users found"
125 | except:
126 | return "error in fetching from db"
127 | else:
128 | return "username cannot be empty"
129 |
130 | def remove_email(username):
131 | """
132 | Sets email of discord user to null in database
133 | """
134 | if username:
135 | conn.execute(f"UPDATE clients SET email = null WHERE discord_username = '{username}'")
136 | conn.commit()
137 | print(f"Email removed from user {username} in database")
138 | return True
139 | else:
140 | print(f"Username cannot be empty.")
141 | return False
142 |
143 | def remove_jellyfin(username):
144 | """
145 | Sets jellyfin username of discord user to null in database
146 | """
147 | if username:
148 | conn.execute(f"UPDATE clients SET jellyfin_username = null WHERE discord_username = '{username}'")
149 | conn.commit()
150 | print(f"Jellyfin username removed from user {username} in database")
151 | return True
152 | else:
153 | print(f"Username cannot be empty.")
154 | return False
155 |
156 |
157 | def delete_user(username):
158 | if username:
159 | try:
160 | conn.execute('DELETE from clients where discord_username="{}";'.format(username))
161 | conn.commit()
162 | return True
163 | except:
164 | return False
165 | else:
166 | return "username cannot be empty"
167 |
168 | def read_all():
169 | cur = conn.cursor()
170 | cur.execute("SELECT * FROM clients")
171 | rows = cur.fetchall()
172 | all = []
173 | for row in rows:
174 | #print(row[1]+' '+row[2])
175 | all.append(row)
176 | return all
--------------------------------------------------------------------------------
/app/bot/helper/dbupdater.py:
--------------------------------------------------------------------------------
1 | import sqlite3
2 |
3 | CURRENT_VERSION = 'Membarr V1.1'
4 |
5 | table_history = {
6 | 'Invitarr V1.0': [
7 | (0, 'id', 'INTEGER', 1, None, 1),
8 | (1, 'discord_username', 'TEXT', 1, None, 0),
9 | (2, 'email', 'TEXT', 1, None, 0)
10 | ],
11 | 'Membarr V1.1': [
12 | (0, 'id', 'INTEGER', 1, None, 1),
13 | (1, 'discord_username', 'TEXT', 1, None, 0),
14 | (2, 'email', 'TEXT', 0, None, 0),
15 | (3, 'jellyfin_username', 'TEXT', 0, None, 0)
16 | ]
17 | }
18 |
19 | def check_table_version(conn, tablename):
20 | dbcur = conn.cursor()
21 | dbcur.execute(f"PRAGMA table_info({tablename})")
22 | table_format = dbcur.fetchall()
23 | for app_version in table_history:
24 | if table_history[app_version] == table_format:
25 | return app_version
26 | raise ValueError("Could not identify database table version.")
27 |
28 | def update_table(conn, tablename):
29 | version = check_table_version(conn, tablename)
30 | print('------')
31 | print(f'DB table version: {version}')
32 | if version == CURRENT_VERSION:
33 | print('DB table up to date!')
34 | print('------')
35 | return
36 |
37 | # Table NOT up to date.
38 | # Update to Membarr V1.1 table
39 | if version == 'Invitarr V1.0':
40 | print("Upgrading DB table from Invitarr v1.0 to Membarr V1.1")
41 | # Create temp table
42 | conn.execute(
43 | '''CREATE TABLE "membarr_temp_upgrade_table" (
44 | "id" INTEGER NOT NULL UNIQUE,
45 | "discord_username" TEXT NOT NULL UNIQUE,
46 | "email" TEXT,
47 | "jellyfin_username" TEXT,
48 | PRIMARY KEY("id" AUTOINCREMENT)
49 | );''')
50 | conn.execute(f'''
51 | INSERT INTO membarr_temp_upgrade_table(id, discord_username, email)
52 | SELECT id, discord_username, email
53 | FROM {tablename};
54 | ''')
55 | conn.execute(f'''
56 | DROP TABLE {tablename};
57 | ''')
58 | conn.execute(f'''
59 | ALTER TABLE membarr_temp_upgrade_table RENAME TO {tablename}
60 | ''')
61 | conn.commit()
62 | version = 'Membarr V1.1'
63 |
64 | print('------')
65 |
--------------------------------------------------------------------------------
/app/bot/helper/jellyfinhelper.py:
--------------------------------------------------------------------------------
1 | import requests
2 | import random
3 | import string
4 |
5 | def add_user(jellyfin_url, jellyfin_api_key, username, password, jellyfin_libs):
6 | try:
7 | url = f"{jellyfin_url}/Users/New"
8 |
9 | querystring = {"api_key":jellyfin_api_key}
10 | payload = {
11 | "Name": username,
12 | "Password": password
13 | }
14 | headers = {"Content-Type": "application/json"}
15 | response = requests.request("POST", url, json=payload, headers=headers, params=querystring)
16 | userId = response.json()["Id"]
17 |
18 | if response.status_code != 200:
19 | print(f"Error creating new Jellyfin user: {response.text}")
20 | return False
21 |
22 | # Grant access to User
23 | url = f"{jellyfin_url}/Users/{userId}/Policy"
24 |
25 | querystring = {"api_key":jellyfin_api_key}
26 |
27 | enabled_folders = []
28 | server_libs = get_libraries(jellyfin_url, jellyfin_api_key)
29 |
30 | if jellyfin_libs[0] != "all":
31 | for lib in jellyfin_libs:
32 | found = False
33 | for server_lib in server_libs:
34 | if lib == server_lib['Name']:
35 | enabled_folders.append(server_lib['ItemId'])
36 | found = True
37 | if not found:
38 | print(f"Couldn't find Jellyfin Library: {lib}")
39 |
40 | payload = {
41 | "IsAdministrator": False,
42 | "IsHidden": True,
43 | "IsDisabled": False,
44 | "BlockedTags": [],
45 | "EnableUserPreferenceAccess": True,
46 | "AccessSchedules": [],
47 | "BlockUnratedItems": [],
48 | "EnableRemoteControlOfOtherUsers": False,
49 | "EnableSharedDeviceControl": True,
50 | "EnableRemoteAccess": True,
51 | "EnableLiveTvManagement": True,
52 | "EnableLiveTvAccess": True,
53 | "EnableMediaPlayback": True,
54 | "EnableAudioPlaybackTranscoding": True,
55 | "EnableVideoPlaybackTranscoding": True,
56 | "EnablePlaybackRemuxing": True,
57 | "ForceRemoteSourceTranscoding": False,
58 | "EnableContentDeletion": False,
59 | "EnableContentDeletionFromFolders": [],
60 | "EnableContentDownloading": True,
61 | "EnableSyncTranscoding": True,
62 | "EnableMediaConversion": True,
63 | "EnabledDevices": [],
64 | "EnableAllDevices": True,
65 | "EnabledChannels": [],
66 | "EnableAllChannels": False,
67 | "EnabledFolders": enabled_folders,
68 | "EnableAllFolders": jellyfin_libs[0] == "all",
69 | "InvalidLoginAttemptCount": 0,
70 | "LoginAttemptsBeforeLockout": -1,
71 | "MaxActiveSessions": 0,
72 | "EnablePublicSharing": True,
73 | "BlockedMediaFolders": [],
74 | "BlockedChannels": [],
75 | "RemoteClientBitrateLimit": 0,
76 | "AuthenticationProviderId": "Jellyfin.Server.Implementations.Users.DefaultAuthenticationProvider",
77 | "PasswordResetProviderId": "Jellyfin.Server.Implementations.Users.DefaultPasswordResetProvider",
78 | "SyncPlayAccess": "CreateAndJoinGroups"
79 | }
80 | headers = {"content-type": "application/json"}
81 |
82 | response = requests.request("POST", url, json=payload, headers=headers, params=querystring)
83 |
84 | if response.status_code == 200 or response.status_code == 204:
85 | return True
86 | else:
87 | print(f"Error setting user permissions: {response.text}")
88 |
89 | except Exception as e:
90 | print(e)
91 | return False
92 |
93 | def get_libraries(jellyfin_url, jellyfin_api_key):
94 | url = f"{jellyfin_url}/Library/VirtualFolders"
95 | querystring = {"api_key":jellyfin_api_key}
96 | response = requests.request("GET", url, params=querystring)
97 |
98 | return response.json()
99 |
100 |
101 | def verify_username(jellyfin_url, jellyfin_api_key, username):
102 | users = get_users(jellyfin_url, jellyfin_api_key)
103 | valid = True
104 | for user in users:
105 | if user['Name'] == username:
106 | valid = False
107 | break
108 |
109 | return valid
110 |
111 | def remove_user(jellyfin_url, jellyfin_api_key, jellyfin_username):
112 | try:
113 | # Get User ID
114 | users = get_users(jellyfin_url, jellyfin_api_key)
115 | userId = None
116 | for user in users:
117 | if user['Name'].lower() == jellyfin_username.lower():
118 | userId = user['Id']
119 |
120 | if userId is None:
121 | # User not found
122 | print(f"Error removing user {jellyfin_username} from Jellyfin: Could not find user.")
123 | return False
124 |
125 | # Delete User
126 | url = f"{jellyfin_url}/Users/{userId}"
127 |
128 | querystring = {"api_key":jellyfin_api_key}
129 | response = requests.request("DELETE", url, params=querystring)
130 |
131 | if response.status_code == 204 or response.status_code == 200:
132 | return True
133 | else:
134 | print(f"Error deleting Jellyfin user: {response.text}")
135 | except Exception as e:
136 | print(e)
137 | return False
138 |
139 | def get_users(jellyfin_url, jellyfin_api_key):
140 | url = f"{jellyfin_url}/Users"
141 |
142 | querystring = {"api_key":jellyfin_api_key}
143 | response = requests.request("GET", url, params=querystring)
144 |
145 | return response.json()
146 |
147 | def generate_password(length, lower=True, upper=True, numbers=True, symbols=True):
148 | character_list = []
149 | if not (lower or upper or numbers or symbols):
150 | raise ValueError("At least one character type must be provided")
151 |
152 | if lower:
153 | character_list += string.ascii_lowercase
154 | if upper:
155 | character_list += string.ascii_uppercase
156 | if numbers:
157 | character_list += string.digits
158 | if symbols:
159 | character_list += string.punctuation
160 |
161 | return "".join(random.choice(character_list) for i in range(length))
162 |
163 | def get_config(jellyfin_url, jellyfin_api_key):
164 | url = f"{jellyfin_url}/System/Configuration"
165 |
166 | querystring = {"api_key":jellyfin_api_key}
167 | response = requests.request("GET", url, params=querystring, timeout=5)
168 | return response.json()
169 |
170 | def get_status(jellyfin_url, jellyfin_api_key):
171 | url = f"{jellyfin_url}/System/Configuration"
172 |
173 | querystring = {"api_key":jellyfin_api_key}
174 | response = requests.request("GET", url, params=querystring, timeout=5)
175 | return response.status_code
--------------------------------------------------------------------------------
/app/bot/helper/message.py:
--------------------------------------------------------------------------------
1 | import discord
2 |
3 | # these were copied from the app object. They could be made static instead but I'm lazy.
4 | async def embederror(recipient, message, ephemeral=True):
5 | embed = discord.Embed(title="ERROR",description=message, color=0xf50000)
6 | await send_embed(recipient, embed, ephemeral)
7 |
8 | async def embedinfo(recipient, message, ephemeral=True):
9 | embed = discord.Embed(title=message, color=0x00F500)
10 | await send_embed(recipient, embed, ephemeral)
11 |
12 | async def embedcustom(recipient, title, fields, ephemeral=True):
13 | embed = discord.Embed(title=title)
14 | for k in fields:
15 | embed.add_field(name=str(k), value=str(fields[k]), inline=True)
16 | await send_embed(recipient, embed, ephemeral)
17 |
18 | async def send_info(recipient, message, ephemeral=True):
19 | if isinstance(recipient, discord.InteractionResponse):
20 | await recipient.send_message(message, ephemeral=ephemeral)
21 | elif isinstance(recipient, discord.User) or isinstance(recipient, discord.member.Member) or isinstance(recipient, discord.Webhook):
22 | await recipient.send(message)
23 |
24 | async def send_embed(recipient, embed, ephemeral=True):
25 | if isinstance(recipient, discord.User) or isinstance(recipient, discord.member.Member) or isinstance(recipient, discord.Webhook):
26 | await recipient.send(embed=embed)
27 | elif isinstance(recipient, discord.InteractionResponse):
28 | await recipient.send_message(embed=embed, ephemeral = ephemeral)
--------------------------------------------------------------------------------
/app/bot/helper/plexhelper.py:
--------------------------------------------------------------------------------
1 | from plexapi.myplex import MyPlexAccount
2 | import re
3 |
4 | def plexadd(plex, plexname, Plex_LIBS):
5 | try:
6 | if Plex_LIBS[0] == "all":
7 | Plex_LIBS = plex.library.sections()
8 | plex.myPlexAccount().inviteFriend(user=plexname, server=plex, sections=Plex_LIBS, allowSync=False,
9 | allowCameraUpload=False, allowChannels=False, filterMovies=None,
10 | filterTelevision=None, filterMusic=None)
11 | print(plexname +' has been added to plex')
12 | return True
13 | except Exception as e:
14 | print(e)
15 | return False
16 |
17 |
18 | def plexremove(plex, plexname):
19 | try:
20 | plex.myPlexAccount().removeFriend(user=plexname)
21 | print(plexname +' has been removed from plex')
22 | return True
23 | except Exception as e:
24 | print(e)
25 | return False
26 | '''
27 |
28 | plex python api has no tools to remove unaccepted invites...
29 |
30 | print("Trying to remove invite...")
31 | removeinvite = plexremoveinvite(plex, plexname)
32 | if removeinvite:
33 | return True
34 | '''
35 |
36 | '''
37 | def plexremoveinvite(plex, plexname):
38 | try:
39 | plex.myPlexAccount().removeFriend(user=plexname)
40 | print(plexname +' has been removed from plex')
41 | return True
42 | except Exception as e:
43 | print(e)
44 | return False
45 | '''
46 | def verifyemail(addressToVerify):
47 | regex = "(^[a-zA-Z0-9'_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)"
48 | match = re.match(regex, addressToVerify.lower())
49 | return match != None
--------------------------------------------------------------------------------
/app/bot/helper/textformat.py:
--------------------------------------------------------------------------------
1 | from multiprocessing import AuthenticationError
2 |
3 |
4 | class bcolors:
5 | HEADER = '\033[95m'
6 | OKBLUE = '\033[94m'
7 | OKCYAN = '\033[96m'
8 | OKGREEN = '\033[92m'
9 | WARNING = '\033[93m'
10 | FAIL = '\033[91m'
11 | ENDC = '\033[0m'
12 | BOLD = '\033[1m'
13 | UNDERLINE = '\033[4m'
14 | AUTHOR = '\033[1;45;96m'
--------------------------------------------------------------------------------
/app/config/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore everything in this directory
2 | *
3 | # Except this file
4 | !.gitignore
5 |
--------------------------------------------------------------------------------
/bot.env:
--------------------------------------------------------------------------------
1 | discord_bot_token=
--------------------------------------------------------------------------------
/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Yoruio/Membarr/f2d88c4a5614279ca11af5744589434ca093f55f/icon.png
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | plex.py==0.9.0
2 | PlexAPI==4.15.15
3 | texttable
4 | python-dotenv
5 | requests
6 | discord.py==2.4.0
7 |
--------------------------------------------------------------------------------
/run.py:
--------------------------------------------------------------------------------
1 | from pydoc import describe
2 | import discord
3 | import os
4 | from discord.ext import commands, tasks
5 | from discord.utils import get
6 | from discord.ui import Button, View, Select
7 | from discord import app_commands
8 | import asyncio
9 | import sys
10 | from app.bot.helper.confighelper import MEMBARR_VERSION, switch, Discord_bot_token, plex_roles, jellyfin_roles
11 | import app.bot.helper.confighelper as confighelper
12 | import app.bot.helper.jellyfinhelper as jelly
13 | from app.bot.helper.message import *
14 | from requests import ConnectTimeout
15 | from plexapi.myplex import MyPlexAccount
16 |
17 | maxroles = 10
18 |
19 | if switch == 0:
20 | print("Missing Config.")
21 | sys.exit()
22 |
23 |
24 | class Bot(commands.Bot):
25 | def __init__(self) -> None:
26 | print("Initializing Discord bot")
27 | intents = discord.Intents.all()
28 | intents.members = True
29 | intents.message_content = True
30 | super().__init__(command_prefix=".", intents=intents)
31 |
32 | async def on_ready(self):
33 | print("Bot is online.")
34 | for guild in self.guilds:
35 | print("Syncing commands to " + guild.name)
36 | self.tree.copy_global_to(guild=guild)
37 | await self.tree.sync(guild=guild)
38 |
39 | async def on_guild_join(self, guild):
40 | print(f"Joined guild {guild.name}")
41 | print(f"Syncing commands to {guild.name}")
42 | self.tree.copy_global_to(guild=guild)
43 | await self.tree.sync(guild=guild)
44 |
45 | async def setup_hook(self):
46 | print("Loading media server connectors")
47 | await self.load_extension(f'app.bot.cogs.app')
48 |
49 |
50 | bot = Bot()
51 |
52 |
53 | async def reload():
54 | await bot.reload_extension(f'app.bot.cogs.app')
55 |
56 |
57 | async def getuser(interaction, server, type):
58 | value = None
59 | await interaction.user.send("Please reply with your {} {}:".format(server, type))
60 | while (value == None):
61 | def check(m):
62 | return m.author == interaction.user and not m.guild
63 |
64 | try:
65 | value = await bot.wait_for('message', timeout=200, check=check)
66 | return value.content
67 | except asyncio.TimeoutError:
68 | message = "Timed Out. Try again."
69 | return None
70 |
71 |
72 | plex_commands = app_commands.Group(name="plexsettings", description="Membarr Plex commands")
73 | jellyfin_commands = app_commands.Group(name="jellyfinsettings", description="Membarr Jellyfin commands")
74 |
75 |
76 | @plex_commands.command(name="addrole", description="Add a role to automatically add users to Plex")
77 | @app_commands.checks.has_permissions(administrator=True)
78 | async def plexroleadd(interaction: discord.Interaction, role: discord.Role):
79 | if len(plex_roles) <= maxroles:
80 | # Do not add roles multiple times.
81 | if role.name in plex_roles:
82 | await embederror(interaction.response, f"Plex role \"{role.name}\" already added.")
83 | return
84 |
85 | plex_roles.append(role.name)
86 | saveroles = ",".join(plex_roles)
87 | confighelper.change_config("plex_roles", saveroles)
88 | await interaction.response.send_message("Updated Plex roles. Bot is restarting. Please wait.", ephemeral=True)
89 | print("Plex roles updated. Restarting bot, Give it a few seconds.")
90 | await reload()
91 | print("Bot has been restarted. Give it a few seconds.")
92 |
93 |
94 | @plex_commands.command(name="removerole", description="Stop adding users with a role to Plex")
95 | @app_commands.checks.has_permissions(administrator=True)
96 | async def plexroleremove(interaction: discord.Interaction, role: discord.Role):
97 | if role.name not in plex_roles:
98 | await embederror(interaction.response, f"\"{role.name}\" is currently not a Plex role.")
99 | return
100 | plex_roles.remove(role.name)
101 | confighelper.change_config("plex_roles", ",".join(plex_roles))
102 | await interaction.response.send_message(f"Membarr will stop auto-adding \"{role.name}\" to Plex", ephemeral=True)
103 |
104 |
105 | @plex_commands.command(name="listroles", description="List all roles whose members will be automatically added to Plex")
106 | @app_commands.checks.has_permissions(administrator=True)
107 | async def plexrolels(interaction: discord.Interaction):
108 | await interaction.response.send_message(
109 | "The following roles are being automatically added to Plex:\n" +
110 | ", ".join(plex_roles), ephemeral=True
111 | )
112 |
113 |
114 | @plex_commands.command(name="setup", description="Setup Plex integration")
115 | @app_commands.checks.has_permissions(administrator=True)
116 | async def setupplex(interaction: discord.Interaction, username: str, password: str, server_name: str,
117 | base_url: str = "", save_token: bool = True):
118 | await interaction.response.defer()
119 | try:
120 | account = MyPlexAccount(username, password)
121 | plex = account.resource(server_name).connect()
122 | except Exception as e:
123 | if str(e).startswith("(429)"):
124 | await embederror(interaction.followup, "Too many requests. Please try again later.")
125 | return
126 |
127 | await embederror(interaction.followup, "Could not connect to Plex server. Please check your credentials.")
128 | return
129 |
130 | if (save_token):
131 | # Save new config entries
132 | confighelper.change_config("plex_base_url", plex._baseurl if base_url == "" else base_url)
133 | confighelper.change_config("plex_token", plex._token)
134 | confighelper.change_config("plex_server_name", server_name)
135 |
136 | # Delete old config entries
137 | confighelper.change_config("plex_user", "")
138 | confighelper.change_config("plex_pass", "")
139 | else:
140 | # Save new config entries
141 | confighelper.change_config("plex_user", username)
142 | confighelper.change_config("plex_pass", password)
143 | confighelper.change_config("plex_server_name", server_name)
144 |
145 | # Delete old config entries
146 | confighelper.change_config("plex_base_url", "")
147 | confighelper.change_config("plex_token", "")
148 |
149 | print("Plex authentication details updated. Restarting bot.")
150 | await interaction.followup.send(
151 | "Plex authentication details updated. Restarting bot. Please wait.\n" +
152 | "Please check logs and make sure you see the line: `Logged into plex`. If not run this command again and make sure you enter the right values.",
153 | ephemeral=True
154 | )
155 | await reload()
156 | print("Bot has been restarted. Give it a few seconds.")
157 |
158 |
159 | @jellyfin_commands.command(name="addrole", description="Add a role to automatically add users to Jellyfin")
160 | @app_commands.checks.has_permissions(administrator=True)
161 | async def jellyroleadd(interaction: discord.Interaction, role: discord.Role):
162 | if len(jellyfin_roles) <= maxroles:
163 | # Do not add roles multiple times.
164 | if role.name in jellyfin_roles:
165 | await embederror(interaction.response, f"Jellyfin role \"{role.name}\" already added.")
166 | return
167 |
168 | jellyfin_roles.append(role.name)
169 | saveroles = ",".join(jellyfin_roles)
170 | confighelper.change_config("jellyfin_roles", saveroles)
171 | await interaction.response.send_message("Updated Jellyfin roles. Bot is restarting. Please wait a few seconds.",
172 | ephemeral=True)
173 | print("Jellyfin roles updated. Restarting bot.")
174 | await reload()
175 | print("Bot has been restarted. Give it a few seconds.")
176 |
177 |
178 | @jellyfin_commands.command(name="removerole", description="Stop adding users with a role to Jellyfin")
179 | @app_commands.checks.has_permissions(administrator=True)
180 | async def jellyroleremove(interaction: discord.Interaction, role: discord.Role):
181 | if role.name not in jellyfin_roles:
182 | await embederror(interaction.response, f"\"{role.name}\" is currently not a Jellyfin role.")
183 | return
184 | jellyfin_roles.remove(role.name)
185 | confighelper.change_config("jellyfin_roles", ",".join(jellyfin_roles))
186 | await interaction.response.send_message(f"Membarr will stop auto-adding \"{role.name}\" to Jellyfin",
187 | ephemeral=True)
188 |
189 |
190 | @jellyfin_commands.command(name="listroles",
191 | description="List all roles whose members will be automatically added to Jellyfin")
192 | @app_commands.checks.has_permissions(administrator=True)
193 | async def jellyrolels(interaction: discord.Interaction):
194 | await interaction.response.send_message(
195 | "The following roles are being automatically added to Jellyfin:\n" +
196 | ", ".join(jellyfin_roles), ephemeral=True
197 | )
198 |
199 |
200 | @jellyfin_commands.command(name="setup", description="Setup Jellyfin integration")
201 | @app_commands.checks.has_permissions(administrator=True)
202 | async def setupjelly(interaction: discord.Interaction, server_url: str, api_key: str, external_url: str = None):
203 | await interaction.response.defer()
204 | # get rid of training slashes
205 | server_url = server_url.rstrip('/')
206 |
207 | try:
208 | server_status = jelly.get_status(server_url, api_key)
209 | if server_status == 200:
210 | pass
211 | elif server_status == 401:
212 | # Unauthorized
213 | await embederror(interaction.followup, "API key provided is invalid")
214 | return
215 | elif server_status == 403:
216 | # Forbidden
217 | await embederror(interaction.followup, "API key provided does not have permissions")
218 | return
219 | elif server_status == 404:
220 | # page not found
221 | await embederror(interaction.followup, "Server endpoint provided was not found")
222 | return
223 | else:
224 | await embederror(interaction.followup,
225 | "Unknown error occurred while connecting to Jellyfin. Check Membarr logs.")
226 | except ConnectTimeout as e:
227 | await embederror(interaction.followup,
228 | "Connection to server timed out. Check that Jellyfin is online and reachable.")
229 | return
230 | except Exception as e:
231 | print("Exception while testing Jellyfin connection")
232 | print(type(e).__name__)
233 | print(e)
234 | await embederror(interaction.followup, "Unknown exception while connecting to Jellyfin. Check Membarr logs")
235 | return
236 |
237 | confighelper.change_config("jellyfin_server_url", str(server_url))
238 | confighelper.change_config("jellyfin_api_key", str(api_key))
239 | if external_url is not None:
240 | confighelper.change_config("jellyfin_external_url", str(external_url))
241 | else:
242 | confighelper.change_config("jellyfin_external_url", "")
243 | print("Jellyfin server URL and API key updated. Restarting bot.")
244 | await interaction.followup.send("Jellyfin server URL and API key updated. Restarting bot.", ephemeral=True)
245 | await reload()
246 | print("Bot has been restarted. Give it a few seconds.")
247 |
248 |
249 | @plex_commands.command(name="setuplibs", description="Setup libraries that new users can access")
250 | @app_commands.checks.has_permissions(administrator=True)
251 | async def setupplexlibs(interaction: discord.Interaction, libraries: str):
252 | if not libraries:
253 | await embederror(interaction.response, "libraries string is empty.")
254 | return
255 | else:
256 | # Do some fancy python to remove spaces from libraries string, but only where wanted.
257 | libraries = ",".join(list(map(lambda lib: lib.strip(), libraries.split(","))))
258 | confighelper.change_config("plex_libs", str(libraries))
259 | print("Plex libraries updated. Restarting bot. Please wait.")
260 | await interaction.response.send_message("Plex libraries updated. Please wait a few seconds for bot to restart.",
261 | ephemeral=True)
262 | await reload()
263 | print("Bot has been restarted. Give it a few seconds.")
264 |
265 |
266 | @jellyfin_commands.command(name="setuplibs", description="Setup libraries that new users can access")
267 | @app_commands.checks.has_permissions(administrator=True)
268 | async def setupjellylibs(interaction: discord.Interaction, libraries: str):
269 | if not libraries:
270 | await embederror(interaction.response, "libraries string is empty.")
271 | return
272 | else:
273 | # Do some fancy python to remove spaces from libraries string, but only where wanted.
274 | libraries = ",".join(list(map(lambda lib: lib.strip(), libraries.split(","))))
275 | confighelper.change_config("jellyfin_libs", str(libraries))
276 | print("Jellyfin libraries updated. Restarting bot. Please wait.")
277 | await interaction.response.send_message(
278 | "Jellyfin libraries updated. Please wait a few seconds for bot to restart.", ephemeral=True)
279 | await reload()
280 | print("Bot has been restarted. Give it a few seconds.")
281 |
282 |
283 | # Enable / Disable Plex integration
284 | @plex_commands.command(name="enable", description="Enable auto-adding users to Plex")
285 | @app_commands.checks.has_permissions(administrator=True)
286 | async def enableplex(interaction: discord.Interaction):
287 | if confighelper.USE_PLEX:
288 | await interaction.response.send_message("Plex already enabled.", ephemeral=True)
289 | return
290 | confighelper.change_config("plex_enabled", True)
291 | print("Plex enabled, reloading server")
292 | await reload()
293 | confighelper.USE_PLEX = True
294 | await interaction.response.send_message("Plex enabled. Restarting server. Give it a few seconds.", ephemeral=True)
295 | print("Bot has restarted. Give it a few seconds.")
296 |
297 |
298 | @plex_commands.command(name="disable", description="Disable adding users to Plex")
299 | @app_commands.checks.has_permissions(administrator=True)
300 | async def disableplex(interaction: discord.Interaction):
301 | if not confighelper.USE_PLEX:
302 | await interaction.response.send_message("Plex already disabled.", ephemeral=True)
303 | return
304 | confighelper.change_config("plex_enabled", False)
305 | print("Plex disabled, reloading server")
306 | await reload()
307 | confighelper.USE_PLEX = False
308 | await interaction.response.send_message("Plex disabled. Restarting server. Give it a few seconds.", ephemeral=True)
309 | print("Bot has restarted. Give it a few seconds.")
310 |
311 |
312 | # Enable / Disable Jellyfin integration
313 | @jellyfin_commands.command(name="enable", description="Enable adding users to Jellyfin")
314 | @app_commands.checks.has_permissions(administrator=True)
315 | async def enablejellyfin(interaction: discord.Interaction):
316 | if confighelper.USE_JELLYFIN:
317 | await interaction.response.send_message("Jellyfin already enabled.", ephemeral=True)
318 | return
319 | confighelper.change_config("jellyfin_enabled", True)
320 | print("Jellyfin enabled, reloading server")
321 | confighelper.USE_JELLYFIN = True
322 | await reload()
323 | await interaction.response.send_message("Jellyfin enabled. Restarting server. Give it a few seconds.",
324 | ephemeral=True)
325 | print("Bot has restarted. Give it a few seconds.")
326 |
327 |
328 | @jellyfin_commands.command(name="disable", description="Disable adding users to Jellyfin")
329 | @app_commands.checks.has_permissions(administrator=True)
330 | async def disablejellyfin(interaction: discord.Interaction):
331 | if not confighelper.USE_JELLYFIN:
332 | await interaction.response.send_message("Jellyfin already disabled.", ephemeral=True)
333 | return
334 | confighelper.change_config("jellyfin_enabled", False)
335 | print("Jellyfin disabled, reloading server")
336 | await reload()
337 | confighelper.USE_JELLYFIN = False
338 | await interaction.response.send_message("Jellyfin disabled. Restarting server. Give it a few seconds.",
339 | ephemeral=True)
340 | print("Bot has restarted. Give it a few seconds.")
341 |
342 |
343 | bot.tree.add_command(plex_commands)
344 | bot.tree.add_command(jellyfin_commands)
345 |
346 | bot.run(Discord_bot_token)
347 |
--------------------------------------------------------------------------------