Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
7ed1f6f8
Verified
Commit
7ed1f6f8
authored
5 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Move path_and_rename to core_helpers.py and delete old helper.py
parent
0472fab4
No related branches found
No related tags found
1 merge request
!125
Move path_and_rename to core_helpers.py and delete old helper.py
Pipeline
#671
failed
5 years ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aleksis/core/util/core_helpers.py
+16
-1
16 additions, 1 deletion
aleksis/core/util/core_helpers.py
aleksis/core/util/helper.py
+0
-22
0 additions, 22 deletions
aleksis/core/util/helper.py
with
16 additions
and
23 deletions
aleksis/core/util/core_helpers.py
+
16
−
1
View file @
7ed1f6f8
import
os
import
pkgutil
from
importlib
import
import_module
from
typing
import
Any
,
Callable
,
Sequence
,
Union
from
uuid
import
uuid4
from
django.conf
import
settings
from
django.db.models
import
Model
...
...
@@ -106,7 +108,7 @@ def has_person(obj: Union[HttpRequest, Model]) -> bool:
def
celery_optional
(
orig
:
Callable
)
->
Callable
:
"""
Decorator that makes Celery optional for a function.
If Celery is configured and available, it wraps the function in a Task
and calls its delay method when invoked; if not, it leaves it untouched
and it is executed synchronously.
...
...
@@ -121,3 +123,16 @@ def celery_optional(orig: Callable) -> Callable:
return
wrapped
else
:
return
orig
def
path_and_rename
(
instance
,
filename
):
upload_to
=
'
files
'
ext
=
filename
.
split
(
'
.
'
)[
-
1
].
lower
()
# get filename
if
instance
.
pk
:
filename
=
'
{}.{}
'
.
format
(
instance
.
pk
,
ext
)
else
:
# set filename as random string
filename
=
'
{}.{}
'
.
format
(
uuid4
().
hex
,
ext
)
# return the whole path to the file
return
os
.
path
.
join
(
upload_to
,
filename
)
This diff is collapsed.
Click to expand it.
aleksis/core/util/helper.py
deleted
100644 → 0
+
0
−
22
View file @
0472fab4
import
os
from
uuid
import
uuid4
from
django.template.loader_tags
import
register
def
path_and_rename
(
instance
,
filename
):
upload_to
=
'
menus
'
ext
=
filename
.
split
(
'
.
'
)[
-
1
].
lower
()
# get filename
if
instance
.
pk
:
filename
=
'
{}.{}
'
.
format
(
instance
.
pk
,
ext
)
else
:
# set filename as random string
filename
=
'
{}.{}
'
.
format
(
uuid4
().
hex
,
ext
)
# return the whole path to the file
return
os
.
path
.
join
(
upload_to
,
filename
)
@register.inclusion_tag
(
"
components/msgbox.html
"
)
def
msg_box
(
msg
,
status
=
"
success
"
,
icon
=
"
info
"
):
return
{
"
msg
"
:
msg
,
"
status
"
:
status
,
"
icon
"
:
icon
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment