-
Notifications
You must be signed in to change notification settings - Fork 16
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
0 parents
commit ea1fa1f
Showing
4 changed files
with
230 additions
and
0 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,40 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
node_modules | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
.nyc_output | ||
.env | ||
coverage | ||
.next/ |
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,18 @@ | ||
{ | ||
"name": "password", | ||
"version": "0.0.1", | ||
"private": true, | ||
"description": "One password, right way.", | ||
"scripts": { | ||
"dev": "next", | ||
"build": "next build", | ||
"start": "next start" | ||
}, | ||
"author": "Vitaly Domnikov <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"blueimp-md5": "^2.6.0", | ||
"copy-to-clipboard": "^3.0.5", | ||
"next": "^2.0.0-beta.5" | ||
} | ||
} |
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,171 @@ | ||
import React from 'react' | ||
import Head from 'next/head' | ||
import md5 from 'blueimp-md5' | ||
import copy from 'copy-to-clipboard' | ||
|
||
const bookmarklet = `javascript:window.open('https://password.now.sh/#' + new URL(document.location).host, '_blank');` | ||
const alphabetRFC1924 = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '!', '#', '$', '%', '&', '(', ')', '*', '+', '-', ';', '<', '=', '>', '?', '@', '^', '_', '`', '{', '|', '}', '~'] | ||
|
||
export default class extends React.Component { | ||
constructor (props) { | ||
super(props) | ||
this.generate = this.generate.bind(this) | ||
this.copy = this.copy.bind(this) | ||
this.keydown = this.keydown.bind(this) | ||
this.state = { password: 'gTtlw084#h9(&^&f' } | ||
} | ||
|
||
componentDidMount () { | ||
if (document.referrer) { | ||
this.tldInput.value = new URL(document.referrer).host.replace(/^www./, '') | ||
} | ||
if (document.location.hash) { | ||
this.tldInput.value = document.location.hash.slice(1).replace(/^www./, '') | ||
} | ||
this.generate() | ||
} | ||
|
||
generate () { | ||
const hash = [...md5(`${this.masterPasswordInput.value}${this.tldInput.value}${this.usernameInput.value}`, null, true)] | ||
const password = hash.map((char) => alphabetRFC1924[char.charCodeAt(0) % alphabetRFC1924.length]).join('') | ||
this.setState({ password }) | ||
} | ||
|
||
copy () { | ||
copy(this.state.password) | ||
this.passwordEl.style.webkitAnimationName = 'flash' | ||
setTimeout(() => { | ||
if (this.passwordEl) { | ||
this.passwordEl.style.webkitAnimationName = '' | ||
} | ||
}, 1000) | ||
} | ||
|
||
keydown (ev) { | ||
if (ev.keyCode == 13) { | ||
this.copy() | ||
} | ||
if (ev.keyCode == 13 && ev.metaKey) { | ||
window.close() | ||
} | ||
} | ||
|
||
render () { | ||
const { password } = this.state | ||
return ( | ||
<div> | ||
<Head> | ||
<title>~ psswrd</title> | ||
<meta name='viewport' content='initial-scale=1.0, maximum-scale=1, width=device-width' /> | ||
</Head> | ||
<div className='app'> | ||
<a className='bookmarklet' href={bookmarklet} onClick={(e) => e.preventDefault()}>~ psswrd</a> | ||
<div> | ||
<input id='tld' type='text' placeholder='tld' autoCapitalize='none' onKeyDown={this.keydown} onChange={this.generate} ref={(input) => { this.tldInput = input }} /> | ||
<input id='username' type='text' placeholder='username' autoCapitalize='none' autoFocus onKeyDown={this.keydown} onChange={this.generate} ref={(input) => { this.usernameInput = input }} /> | ||
<input type='password' placeholder='master password' onKeyDown={this.keydown} onChange={this.generate} ref={(input) => { this.masterPasswordInput = input }} /> | ||
<div className='password' ref={(el) => { this.passwordEl = el }}> | ||
{password} | ||
<button onClick={this.copy}>copy</button> | ||
</div> | ||
</div> | ||
<a className='github' href='https://github.com/dotcypress/password'>github</a> | ||
</div> | ||
<style jsx global>{` | ||
* { | ||
box-sizing: border-box; | ||
text-rendering: geometricPrecision; | ||
} | ||
html { | ||
background: #263238; | ||
} | ||
body { | ||
color: #900068; | ||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; | ||
margin: 0; | ||
} | ||
.app { | ||
padding: 6px 12px; | ||
} | ||
.bookmarklet { | ||
display: inline-block; | ||
color: #ff5252; | ||
font-size: 24px; | ||
font-weight: bold; | ||
text-decoration: none; | ||
margin-bottom: 12px; | ||
} | ||
.github { | ||
display: block; | ||
margin-top: 24px; | ||
color: #ababab; | ||
text-align: center; | ||
font-size: 10px; | ||
} | ||
input { | ||
background: #263238; | ||
color: #2b98f0; | ||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; | ||
font-size: 22px; | ||
width: 100%; | ||
padding: 6px 0; | ||
border: none; | ||
outline: none; | ||
text-shadow: 0px 0px 0px #000; | ||
} | ||
.password { | ||
color: #9ccc65; | ||
border: double 6px #9ccc65; | ||
border-radius: 0; | ||
padding: 6px; | ||
margin-top: 12px; | ||
animation-duration: 900ms; | ||
animation-fill-mode: both; | ||
position: relative; | ||
} | ||
.password button { | ||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; | ||
font-size: 13px; | ||
font-weight: bold; | ||
color: #9ccc65; | ||
background: none; | ||
border: none; | ||
outline: none; | ||
position: absolute; | ||
right: 12px; | ||
top: 6px; | ||
padding: 12px; | ||
margin: -12px; | ||
} | ||
@keyframes flash { | ||
from, 50%, to { | ||
border-color: #9ccc65; | ||
color: #9ccc65; | ||
} | ||
25%, 75% { | ||
color: #263238; | ||
} | ||
} | ||
@media (min-width: 420px) { | ||
.app { | ||
width: 380px; | ||
margin: auto; | ||
} | ||
} | ||
`}</style> | ||
</div> | ||
) | ||
} | ||
} | ||
|
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 @@ | ||
# password.now.sh |