Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ots
hypha
Commits
923c4540
Commit
923c4540
authored
6 years ago
by
Parbhat Puri
Browse files
Options
Downloads
Patches
Plain Diff
Upload document in Wagtail form page
parent
7b49da51
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opentech/public/forms/migrations/0002_auto_20190206_1257.py
+18
-0
18 additions, 0 deletions
opentech/public/forms/migrations/0002_auto_20190206_1257.py
opentech/public/forms/models.py
+65
-1
65 additions, 1 deletion
opentech/public/forms/models.py
with
83 additions
and
1 deletion
opentech/public/forms/migrations/0002_auto_20190206_1257.py
0 → 100644
+
18
−
0
View file @
923c4540
# Generated by Django 2.0.9 on 2019-02-06 12:57
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
public_forms
'
,
'
0001_initial
'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'
formfield
'
,
name
=
'
field_type
'
,
field
=
models
.
CharField
(
choices
=
[(
'
singleline
'
,
'
Single line text
'
),
(
'
multiline
'
,
'
Multi-line text
'
),
(
'
email
'
,
'
Email
'
),
(
'
number
'
,
'
Number
'
),
(
'
url
'
,
'
URL
'
),
(
'
checkbox
'
,
'
Checkbox
'
),
(
'
checkboxes
'
,
'
Checkboxes
'
),
(
'
dropdown
'
,
'
Drop down
'
),
(
'
multiselect
'
,
'
Multiple select
'
),
(
'
radio
'
,
'
Radio buttons
'
),
(
'
date
'
,
'
Date
'
),
(
'
datetime
'
,
'
Date/time
'
),
(
'
hidden
'
,
'
Hidden field
'
),
(
'
document
'
,
'
Upload Document
'
)],
max_length
=
16
,
verbose_name
=
'
field type
'
),
),
]
This diff is collapsed.
Click to expand it.
opentech/public/forms/models.py
+
65
−
1
View file @
923c4540
import
json
from
django.core.serializers.json
import
DjangoJSONEncoder
from
django.conf
import
settings
from
django.db
import
models
from
django.forms
import
FileField
from
django.utils.translation
import
ugettext_lazy
as
_
from
modelcluster.fields
import
ParentalKey
...
...
@@ -6,17 +12,41 @@ from wagtail.core.fields import RichTextField
from
wagtail.admin.edit_handlers
import
(
FieldPanel
,
FieldRowPanel
,
MultiFieldPanel
,
InlinePanel
)
from
wagtail.contrib.forms.models
import
AbstractEmailForm
,
AbstractFormField
from
wagtail.contrib.forms.forms
import
FormBuilder
from
wagtail.contrib.forms.models
import
(
AbstractEmailForm
,
AbstractFormField
,
FORM_FIELD_CHOICES
)
from
wagtail.documents.models
import
get_document_model
from
wagtail.search
import
index
from
opentech.public.utils.models
import
BasePage
def
filename_to_title
(
filename
):
from
os.path
import
splitext
if
filename
:
result
=
splitext
(
filename
)[
0
]
result
=
result
.
replace
(
'
-
'
,
'
'
).
replace
(
'
_
'
,
'
'
)
return
result
.
title
()
class
FormField
(
AbstractFormField
):
FORM_FIELD_CHOICES
=
FORM_FIELD_CHOICES
+
((
'
document
'
,
'
Upload Document
'
),)
field_type
=
models
.
CharField
(
verbose_name
=
_
(
'
field type
'
),
max_length
=
16
,
choices
=
FORM_FIELD_CHOICES
)
page
=
ParentalKey
(
'
FormPage
'
,
on_delete
=
models
.
CASCADE
,
related_name
=
'
form_fields
'
)
class
ExtendedFormBuilder
(
FormBuilder
):
def
create_document_field
(
self
,
field
,
options
):
return
FileField
(
**
options
)
class
FormPage
(
AbstractEmailForm
,
BasePage
):
form_builder
=
ExtendedFormBuilder
subpage_types
=
[]
intro
=
RichTextField
(
blank
=
True
)
...
...
@@ -38,3 +68,37 @@ class FormPage(AbstractEmailForm, BasePage):
FieldPanel
(
'
subject
'
),
],
"
Email
"
),
]
def
process_form_submission
(
self
,
form
):
cleaned_data
=
form
.
cleaned_data
for
name
,
field
in
form
.
fields
.
items
():
if
isinstance
(
field
,
FileField
):
file_data
=
cleaned_data
[
name
]
if
file_data
:
DocumentModel
=
get_document_model
()
if
form
.
user
.
is_anonymous
:
document
=
DocumentModel
(
file
=
cleaned_data
[
name
],
title
=
filename_to_title
(
cleaned_data
[
name
].
name
),
)
else
:
document
=
DocumentModel
(
file
=
cleaned_data
[
name
],
title
=
filename_to_title
(
cleaned_data
[
name
].
name
),
uploaded_by_user
=
form
.
user
,
)
document
.
save
()
if
settings
.
DEBUG
:
file_details_dict
=
{
name
:
'
localhost:8000
'
+
document
.
url
}
else
:
file_details_dict
=
{
name
:
'
https://www.opentech.fund
'
+
document
.
url
}
cleaned_data
.
update
(
file_details_dict
)
else
:
del
cleaned_data
[
name
]
form_data
=
json
.
dumps
(
cleaned_data
,
cls
=
DjangoJSONEncoder
)
return
self
.
get_submission_class
().
objects
.
create
(
form_data
=
form_data
,
page
=
self
,
)
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