This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11a436f
commit ba41e6d
Showing
7 changed files
with
83 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{ _("Claim {project} on Gratipay?", project=project) }} | ||
|
||
[---] text/html | ||
{{ _( "We've received a request to connect {project} to the {username} account on Gratipay. Sound familiar?" | ||
, project=('<b>%s</b>'|safe) % email, | ||
('<b><a href="https://gratipay.com/~{0}/">{0}</a></b>'|safe).format(username)) }} | ||
<br> | ||
<br> | ||
<a href="{{ link }}" style="{{ button_style }}">{{ _("Yes, proceed!") }}</a> | ||
|
||
[---] text/plain | ||
{{ _("We've received a request to connect {0} to the {1} account on Gratipay. Sound familiar?", | ||
email, username) }} | ||
|
||
{{ _("Follow this link to finish connecting your email:") }} | ||
|
||
{{ link }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import, division, print_function, unicode_literals | ||
|
||
|
||
class PackageClaiming(object): | ||
|
||
"""Gratipay participants may claim packages on the Node package manager | ||
(npm), bringing them into Gratipay as projects similar to any other. The | ||
claiming process is handled via email: ``initiate_package_claim`` sends an | ||
email to an address registered with npm, and a link back from the email | ||
lands in ``claim_package`` to finalize the claim. | ||
Packages can also be unclaimed, and reclaimed. | ||
""" | ||
|
||
def initiate_package_claim(self, package, email): | ||
"""Initiate a claim on the given package. | ||
:param Package package: a ``Package`` instance | ||
:returns: ``None`` | ||
""" | ||
assert email in package.emails # sanity check | ||
|
||
r = self.send_email('claim_package', | ||
email=email, | ||
link=link.format(**locals()), | ||
include_unsubscribe=False) | ||
assert r == 1 # Make sure the verification email was sent | ||
if self.email_address: | ||
self.send_email('verification_notice', | ||
new_email=email, | ||
include_unsubscribe=False) | ||
return 2 | ||
return 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
from gratipay.exceptions import NoSelfTipping, NoTippee, BadAmount | ||
from gratipay.models.account_elsewhere import AccountElsewhere | ||
from gratipay.models.exchange_route import ExchangeRoute | ||
from gratipay.models.package import NPM, Package | ||
from gratipay.models.participant import Participant, MAX_TIP, MIN_TIP | ||
from gratipay.security import user | ||
from gratipay.testing.vcr import use_cassette | ||
|
@@ -195,14 +196,15 @@ def make_team(self, *a, **kw): | |
return team | ||
|
||
|
||
def make_package(self, package_manager='npm', name='foo', description='Foo', | ||
def make_package(self, package_manager=NPM, name='foo', description='Foo', | ||
emails=['[email protected]']): | ||
"""Factory for packages. | ||
""" | ||
return self.db.one( 'INSERT INTO packages (package_manager, name, description, emails) ' | ||
'VALUES (%s, %s, %s, %s) RETURNING *' | ||
, (package_manager, name, description, emails) | ||
) | ||
self.db.run( 'INSERT INTO packages (package_manager, name, description, emails) ' | ||
'VALUES (%s, %s, %s, %s) RETURNING *' | ||
, (package_manager, name, description, emails) | ||
) | ||
return Package.from_names(NPM, name) | ||
|
||
|
||
def make_participant(self, username, **kw): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters