diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d5de34b9bff6eb0044bbc2b4d55df6fbbe63b8 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +backports.functools-lru-cache==1.6.4 +beautifulsoup4==4.9.3 +bs4==0.0.1 +Django==1.11.29 +pytz==2021.3 +soupsieve==1.9.6 +html5lib==0.999999999 +future + +django_countries==5.5 # Supports both Python 2 and 3. diff --git a/www/conservancy/apps/assignment/forms.py b/www/conservancy/apps/assignment/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..5016ff917b2501590e1f6073eae4a1c7c8545650 --- /dev/null +++ b/www/conservancy/apps/assignment/forms.py @@ -0,0 +1,59 @@ +from django import forms +from django.core.validators import ValidationError +from django.utils import timezone + +from .models import Assignment +from .terms import TERMS + + +def validate_in_past(value): + if value >= timezone.now().date(): + raise ValidationError('Enter a date in the past') + + +class AssignmentForm(forms.ModelForm): + period_begins = forms.DateField( + label='Start of period to assign', + required=True, + widget=forms.DateInput(attrs={'type': 'date'}), + validators=[validate_in_past], + ) + period_end_type = forms.ChoiceField( + label='End of period to assign', + choices=[ + ('all future contributions', 'all future contributions'), + ('a specific past date', 'a specific past date (specify below)'), + ], + widget=forms.RadioSelect(), + ) + period_ends = forms.DateField( + label='Specific past date (if applicable)', + required=False, + widget=forms.DateInput(attrs={'type': 'date'}), + validators=[validate_in_past], + ) + agreement_terms = forms.CharField( + widget=forms.Textarea(attrs={'readonly': 'readonly'}), + initial=TERMS, + help_text='Please be aware that some employment agreements explicitly transfer copyright ownership to the employer. We recommend you review your recent employment agreements for such clauses.', + ) + + class Meta: + model = Assignment + fields = [ + 'full_name', + 'email', + 'country_of_residence', + 'repositories', + 'all_emails', + 'period_begins', + 'period_end_type', + 'period_ends', + 'agreement_terms', + 'attestation_of_copyright', + ] + + def clean_period_ends(self): + cleaned_data = super().clean() + if 'period_begins' in cleaned_data and 'period_ends' in cleaned_data and cleaned_data['period_begins'] > cleaned_data['period_ends']: + raise ValidationError('End of period is before start') diff --git a/www/conservancy/apps/assignment/migrations/0002_auto_20211206_2237.py b/www/conservancy/apps/assignment/migrations/0002_auto_20211206_2237.py new file mode 100644 index 0000000000000000000000000000000000000000..216de0ce9f6fc637b76ac45219011590872e5575 --- /dev/null +++ b/www/conservancy/apps/assignment/migrations/0002_auto_20211206_2237.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2021-12-06 22:37 +from __future__ import unicode_literals + +import datetime +from django.db import migrations, models +import django_countries.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('assignment', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='assignment', + name='coverage', + ), + migrations.RemoveField( + model_name='assignment', + name='place_of_residence', + ), + migrations.RemoveField( + model_name='assignment', + name='repository', + ), + migrations.AddField( + model_name='assignment', + name='all_emails', + field=models.TextField(default='', verbose_name='All email addresses and/or names used by you to contribute to the above'), + preserve_default=False, + ), + migrations.AddField( + model_name='assignment', + name='country_of_residence', + field=django_countries.fields.CountryField(default='', max_length=2), + preserve_default=False, + ), + migrations.AddField( + model_name='assignment', + name='period_begins', + field=models.DateField(default=datetime.date(2021, 1, 1), verbose_name='Assignment period begins'), + preserve_default=False, + ), + migrations.AddField( + model_name='assignment', + name='period_end_type', + field=models.CharField(choices=[('all future contributions', 'all future contributions'), ('a specific past date', 'a specific past date')], default=datetime.date(2021, 1, 1), max_length=50, verbose_name='Time period to assign'), + preserve_default=False, + ), + migrations.AddField( + model_name='assignment', + name='period_ends', + field=models.DateField(blank=True, null=True, verbose_name='Assignment period ends (if applicable)'), + ), + migrations.AddField( + model_name='assignment', + name='repositories', + field=models.TextField(default='', help_text='List of URLs, one per line', verbose_name="Code repositories contributed to that you'd like to assign"), + preserve_default=False, + ), + migrations.AlterField( + model_name='assignment', + name='attestation_of_copyright', + field=models.BooleanField(verbose_name='I agree to be bound by the terms of the Copyright Assignment Agreement above, and that I own the copyright in the works defined above'), + ), + migrations.AlterField( + model_name='assignment', + name='email', + field=models.EmailField(max_length=254, verbose_name='Email address (to contact you if we have questions)'), + ), + ] diff --git a/www/conservancy/apps/assignment/migrations/0003_auto_20211206_2249.py b/www/conservancy/apps/assignment/migrations/0003_auto_20211206_2249.py new file mode 100644 index 0000000000000000000000000000000000000000..38d265aab9baa3849e9c0cfb106a6e178a5910ca --- /dev/null +++ b/www/conservancy/apps/assignment/migrations/0003_auto_20211206_2249.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2021-12-06 22:49 +from __future__ import unicode_literals + +from django.db import migrations, models +import uuid + + +class Migration(migrations.Migration): + + dependencies = [ + ('assignment', '0002_auto_20211206_2237'), + ] + + operations = [ + migrations.RemoveField( + model_name='assignment', + name='id', + ), + migrations.AddField( + model_name='assignment', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False), + ), + ] diff --git a/www/conservancy/apps/assignment/models.py b/www/conservancy/apps/assignment/models.py index c06d5717fd24edf89828033bc7435e276f54de71..d7bb22ecd0a6b78dabb4165bbcf6d91c259c422c 100644 --- a/www/conservancy/apps/assignment/models.py +++ b/www/conservancy/apps/assignment/models.py @@ -1,33 +1,59 @@ from __future__ import unicode_literals +import uuid + +from django.core.validators import URLValidator, ValidationError from django.db import models +from django_countries.fields import CountryField + + +def validate_mutiple_urls(value): + """Map the URLValidator() over text containing multiple URLs.""" + candidate_urls = [c.strip() for c in value.split()] + invalid_urls = [] + # TODO: Improve this https://docs.djangoproject.com/en/3.2/ref/forms/validation/#raising-multiple-errors + validator = URLValidator() + for url in candidate_urls: + try: + validator(url) + except ValidationError: + invalid_urls.append(url) + print(invalid_urls) + if invalid_urls: + raise ValidationError('These don\'t seem to be complete URLs:\n{}'.format('\n'.join(invalid_urls))) class Assignment(models.Model): """A copyright assignment to Conservancy.""" + uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) full_name = models.CharField(max_length=255) - email = models.EmailField() - place_of_residence = models.TextField( - 'Country of citizenship or residential address', - blank=True) - - repository = models.URLField( - 'Code repository', - blank=True, + email = models.EmailField('Email address (to contact you if we have questions)') + country_of_residence = CountryField() + repositories = models.TextField( + 'Code repositories contributed to that you\'d like to assign', + help_text='List of URLs, one per line', + validators=[validate_mutiple_urls], ) - coverage = models.CharField( - verbose_name='Time period to assign', + all_emails = models.TextField( + 'All email addresses and/or names used by you to contribute to the above', + ) + period_begins = models.DateField( + 'Assignment period begins', + ) + period_end_type = models.CharField( + 'Time period to assign', max_length=50, choices=[ - ('up to this year', 'One-off up to and including this year'), - ('ongoing', 'All existing and new contributions'), - ('specific', 'A specific period (details below)'), + ('all future contributions', 'all future contributions'), + ('a specific past date', 'a specific past date'), ], - default='up to this year', ) - coverage_from = models.DateField(blank=True) - coverage_to = models.DateField(blank=True) + period_ends = models.DateField( + 'Assignment period ends (if applicable)', + blank=True, + null=True, + ) attestation_of_copyright = models.BooleanField( - 'I attest that I own the copyright on these works' + 'I agree to be bound by the terms of the Copyright Assignment Agreement above, and that I own the copyright in the works defined above', ) diff --git a/www/conservancy/apps/assignment/terms.py b/www/conservancy/apps/assignment/terms.py new file mode 100644 index 0000000000000000000000000000000000000000..0d0e56d9f29cc3172fbb63b39702625c45755545 --- /dev/null +++ b/www/conservancy/apps/assignment/terms.py @@ -0,0 +1,121 @@ +import textwrap + +TERMS = textwrap.dedent("""\ + Copyright Assignment Agreement + + By checking the box below and submitting this form, you (``Assignor'') + enter into this Agreement between Assignor and + the Software Freedom Conservancy, Inc., a New York nonprofit corporation + located in Brooklyn, New York, which has received recognition of exemption + from federal income tax under Section 501(c)(3) of the Internal Revenue + Code and classification as a public charity (the ``Conservancy''). + + For good and valuable consideration, receipt of which is hereby + acknowledged, Assignor hereby transfers to the Conservancy its entire + right, title, and interest (including all rights under copyright) in the + work identified by the repositories, email addresses, names, and time + periods listed above, including original code, + accompanying documentation and supporting files, changes and enhancements + to the code and accompanying files, subject to the conditions + below. The original code, files, changes and enhancements, and + modifications are herein called the ``Work''. + + For the purposes of this contract, a work ``based on the Work'' means any + work that in whole or in part incorporates or is derived from all or part + of the Work. The Conservancy promises that the Work and any work ``based + on the Work'' distributed by the Conservancy or its assignees will be + distributed under one or more of the following licenses: + + * the license as set forth in Exhibit A (the ``MIT License''), + + * the GNU General Public License v2 or any later version (``GPL''), + as published by the Free Software Foundation, Inc., + + * the ``CC-By'' license as published by the Creative Commons, Inc., + + * the Creative Commons Attribution-ShareAlike 3.0 United States license + (``CC-By-SA''), + + * any other license determined to be a free software license by the + Free Software Foundation (``FSF'') and approved as an open source + license by the Open Source Initiative (``OSI''), + + * any other license determined to be a free culture compatible + license by the Creative Commons Corporation (``Creative + Commons'') and freedomdefined.org (``Freedom Defined''). + + In the event that either FSF or OSI ceases to maintain a list of approved + licenses for a period of one year and, for a period of six months, fails + to respond to a written request from the Conservancy regarding evaluation + of a new license which is not currently listed on either approved lists + (is ``Dormant''), the work may be distributed under that new license, + provided that new license is approved as a free software or open source + license by one of FSF or OSI, and the Conservancy also independently + determines the new license will allow the software to be freely copied, + modified, and redistributed by all its users (is a ``Free License''). In + the event that both FSF and OSI are Dormant, the Work may be distributed + under a license the Conservancy independently determines is a Free + Software License. + + In the event that either Creative Commons or Freedom Defined is Dormant, + the Work may be distributed under that new license, provided that new + license is approved as a free culture compatible license by one of the + Creative Commons or Freedom Defined, and the Conservancy also + independently determines the new license is a Free License. In the event + that both Creative Commons and Freedom Defined are Dormant, the Work may + be distributed under a license the Conservancy independently determines is + a Free Culture License. + + The Conservancy promises that any program ``based on the Work'' offered to + the public by the Conservancy or its assignees shall be offered in a + machine-readable source format, in addition to any other forms of the + Conservancy's choosing. However, the Conservancy is free to choose at its + convenience the media of distribution for the machine-readable source + format. + + The Conservancy hereby grants Assignor a royalty-free non-exclusive + license to use or sub-license the interests assigned hereunder for any + purpose. The Conservancy's rights shall otherwise continue unchanged. + + Assignor hereby grants to the Conservancy and to recipients of software + distributed by the Conservancy a perpetual, worldwide, non-exclusive, + no-charge, royalty-free, irrevocable patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, where + such license applies only to those patent claims licensable by Assignor + that are necessarily infringed by the Work alone or by combination of + Assignor's contributions with the Work to which such contributions were + submitted. + + Assignor hereby represents and warrants that it is the sole copyright + holder for the Work assigned hereunder and that it has the right and power + to enter into this contract. Assignor hereby indemnifies and holds + harmless the Conservancy, its officers, employees, and agents against any + and all claims, actions or damages (including reasonable attorney's fees) + asserted by or paid to any party on account of a breach or alleged breach + of the foregoing warranty. Assignor makes no other express or implied + warranty (including without limitation, in this disclaimer of warranty, + any warranty of merchantability or fitness for a particular + purpose). + + + Exhibit A + The MIT License + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + ``Software''), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + The software is provided ``as is'', without warranty of any kind, express or + implied, including but not limited to the warranties of merchantability, + fitness for a particular purpose and noninfringement. In no event shall + the authors or copyright holders be liable for any claim, damages or other + liability, whether in an action of contract, tort or otherwise, arising + from, out of or in connection with the software or the use or other + dealings in the software.""") diff --git a/www/conservancy/apps/assignment/urls.py b/www/conservancy/apps/assignment/urls.py index 1be0b775d6fc05761d5772c3c0eef5e5a4bf513d..0502b0ef4de5807ec9315c94d30877f1c17fbdab 100644 --- a/www/conservancy/apps/assignment/urls.py +++ b/www/conservancy/apps/assignment/urls.py @@ -5,5 +5,5 @@ from .views import AssignmentCreateView, AssignmentThanksView urlpatterns = [ url(r'^$', AssignmentCreateView.as_view(), name='assignement-add'), - url(r'^thanks/$', AssignmentThanksView.as_view(), name='assignment-thanks'), + url(r'^(?P[\w-]+)/$', AssignmentThanksView.as_view(), name='assignment-thanks'), ] diff --git a/www/conservancy/apps/assignment/views.py b/www/conservancy/apps/assignment/views.py index 4ab306df76a1007f46ff8c7ac75c5ea6b60aea7f..ac4554603db3b13dce79894b73da240378b1682e 100644 --- a/www/conservancy/apps/assignment/views.py +++ b/www/conservancy/apps/assignment/views.py @@ -1,31 +1,39 @@ -from django import forms +from django.core.mail import send_mail from django.urls import reverse_lazy -from django.views.generic import TemplateView +from django.views.generic import DetailView from django.views.generic.edit import CreateView +from .forms import AssignmentForm from .models import Assignment - -class AssignmentForm(forms.ModelForm): - model = Assignment - coverage_from = forms.DateField(required=False) - coverage_to = forms.DateField(required=False) - - class AssignmentCreateView(CreateView): """Show a form for the initial copyright assignment.""" form_class = AssignmentForm - fields = [ - 'full_name', - 'email', - 'place_of_residence', - 'repository', - 'coverage', - 'attestation_of_copyright', - ] - success_url = reverse_lazy('assignment-thanks') - - -class AssignmentThanksView(TemplateView): + template_name = 'assignment/assignment_form.html' + + def form_valid(self, form): + intro = 'The following copyright assignment has been submitted:\n\n' + body = intro + '\n'.join(['{}: {}'.format(k, v) for k, v in form.cleaned_data.items() if k != 'agreement_terms']) + send_mail( + 'Copyright assignment form: {}'.format(form.cleaned_data['full_name']), + body, + 'ben@sturm.com.au', + ['denver@sfconservancy.org', 'bsturmfels@sfconservancy.org'], + ) + return super().form_valid(form) + + def get_success_url(self, *args, **kwargs): + return reverse_lazy('assignment-thanks', kwargs={'pk': str(self.object.uuid)}) + + +class AssignmentThanksView(DetailView): + model = Assignment template_name = 'assignment/thanks.html' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['form'] = AssignmentForm(instance=self.object) + for _, field in context['form'].fields.items(): + field.widget.attrs['disabled'] = 'disabled' + return context diff --git a/www/conservancy/settings.py b/www/conservancy/settings.py index 85ebceb471abe37be65e0dafd4285225fc510f1e..4d23f849e2ad61e12817ca55280d8ef4b83edb70 100644 --- a/www/conservancy/settings.py +++ b/www/conservancy/settings.py @@ -84,3 +84,25 @@ LOGGING = { 'level': 'INFO', }, } + +INSTALLED_APPS = [ + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.admin', + 'django.contrib.messages', + 'django.contrib.humanize', + # 'django.contrib.staticfiles', + 'conservancy.apps.blog', + 'conservancy.apps.contacts', + 'conservancy.apps.contractpatch', + 'conservancy.apps.events', + 'conservancy.apps.news', + 'conservancy.apps.staff', + # 'conservancy.apps.summit_registration', + 'conservancy.apps.worldmap', + 'conservancy.apps.supporters', + 'conservancy.apps.fundgoal', + 'conservancy.apps.assignment', +] diff --git a/www/conservancy/templates/assignment/assignment_form.html b/www/conservancy/templates/assignment/assignment_form.html index 376544ae4440d08192ffba504c8574296b4cbb5a..753cd42760cad40ad5b769b3e57ad5acb698ea84 100644 --- a/www/conservancy/templates/assignment/assignment_form.html +++ b/www/conservancy/templates/assignment/assignment_form.html @@ -1,38 +1,20 @@ -{% extends "base_conservancy.html" %} +{% extends "assignment/base_assignment.html" %} {% block category %}Copyright Assignment{% endblock %} {% block outercontent %} -

Copyright Assignment

-
-

Thank you for considering assigning your copyright to the Software Freedom Conservancy. Your assignment helps us enforce copyright on your behalf.

+
+

Thank you for considering assigning your copyright to the Software Freedom Conservancy. Your assignment helps us enforce free and open source software licenses.

-

Please complete the following form and we will prepare the appropriate paperwork. You will receive a PDF form to sign and be witnessed by a public notary.

-
+

By filling in and submitting the below form, you agree to assign your copyrights in the specified projects to Software Freedom Conservancy, which means that Conservancy can enforce the licenses that your code is under in court, without you needing to be involved. Conservancy agrees to keep your code under a free and open source license.

-
- {% csrf_token %} - {{ form.as_p }} +

If you have any questions about assigning your copyright to Conservancy, please don't hesitate to email us at info@sfconservancy.org.

-

Please be aware that some employment agreements explicitly transfer copyright ownership to the employer. We recommend you review your recent employment agreements for such clauses.

+ + {% csrf_token %} + {{ form.as_p }} -

-
+

+ +
{% endblock %} diff --git a/www/conservancy/templates/assignment/thanks.html b/www/conservancy/templates/assignment/thanks.html index 18390f7b85a45d9aba36b56027bf36f04bccff18..86be3ba4c1330ff7c75f38d91411a51f5288de7e 100644 --- a/www/conservancy/templates/assignment/thanks.html +++ b/www/conservancy/templates/assignment/thanks.html @@ -1,27 +1,14 @@ -{% extends "base_conservancy.html" %} +{% extends "assignment/base_assignment.html" %} +{% load static %} {% block category %}Copyright Assignment{% endblock %} {% block outercontent %} - -

Thanks!

+

Thanks!

-
-

You'll shortly receive an email with the paperwork required to complete this assignment. If you have any questions or concerns, please don't hesitate to contact us.

+
+

Thank you for assigning your copyright to Software Freedom Conservancy! We have recorded the below information regarding the assignment and the works.

+

If you would like to make any changes, you must let us know within 7 days by emailing info@sfconservancy.org. Thanks for helping us enforce free and open source software licenses!

+
+ {{ form.as_p }} +
{% endblock %}