mirror of
https://github.com/danbulant/node-x11
synced 2026-07-09 05:00:38 +00:00
reformat code
This commit is contained in:
parent
5645841b80
commit
7a3a1d43a2
1 changed files with 68 additions and 76 deletions
52
lib/auth.js
52
lib/auth.js
|
|
@ -5,8 +5,7 @@ var Buffer = require('buffer').Buffer;
|
|||
// add 'unpack' method for buffer
|
||||
require('./unpackbuffer').addUnpack(Buffer);
|
||||
|
||||
function parseXauth( buf )
|
||||
{
|
||||
function parseXauth(buf) {
|
||||
var offset = 0;
|
||||
var auth = [];
|
||||
var cookieProperties = ['address', 'display', 'authName', 'authData'];
|
||||
|
|
@ -18,20 +17,19 @@ function parseXauth( buf )
|
|||
offset += length;
|
||||
}
|
||||
|
||||
while (offset < buf.length)
|
||||
{
|
||||
while (offset < buf.length) {
|
||||
var cookie = {};
|
||||
var typeToName = {
|
||||
256: 'Local',
|
||||
256 : 'Local',
|
||||
65535: 'Wild',
|
||||
254: 'Netname',
|
||||
253: 'Krb5Principal',
|
||||
252: 'LocalHost',
|
||||
0: 'Internet',
|
||||
1: 'DECnet',
|
||||
2: 'Chaos',
|
||||
5: 'ServerInterpreted',
|
||||
6: 'InternetV6'
|
||||
254 : 'Netname',
|
||||
253 : 'Krb5Principal',
|
||||
252 : 'LocalHost',
|
||||
0 : 'Internet',
|
||||
1 : 'DECnet',
|
||||
2 : 'Chaos',
|
||||
5 : 'ServerInterpreted',
|
||||
6 : 'InternetV6'
|
||||
};
|
||||
cookie.type = buf.unpack('n')[0];
|
||||
if (!typeToName[cookie.type]) {
|
||||
|
|
@ -45,12 +43,10 @@ function parseXauth( buf )
|
|||
return auth;
|
||||
}
|
||||
|
||||
module.exports = function( display, host, cb )
|
||||
{
|
||||
module.exports = function(display, host, cb) {
|
||||
var XAuthorityFile = process.env.XAUTHORITY;
|
||||
if (!XAuthorityFile)
|
||||
{
|
||||
if ( process.platform.match(/^win/) ) {
|
||||
if (!XAuthorityFile) {
|
||||
if (process.platform.match(/^win/)) {
|
||||
// http://www.straightrunning.com/XmingNotes/trouble.php
|
||||
//
|
||||
// The Xming magic cookie program, xauth (user-based), uses an
|
||||
|
|
@ -63,29 +59,25 @@ module.exports = function( display, host, cb )
|
|||
}
|
||||
}
|
||||
|
||||
fs.readFile(XAuthorityFile, function (err, data) {
|
||||
fs.readFile(XAuthorityFile, function(err, data) {
|
||||
|
||||
if (err)
|
||||
{
|
||||
if (err.code == 'ENOENT')
|
||||
{
|
||||
cb('','');
|
||||
if (err) {
|
||||
if (err.code == 'ENOENT') {
|
||||
cb('', '');
|
||||
return;
|
||||
}
|
||||
throw err;
|
||||
}
|
||||
|
||||
var auth = parseXauth(data);
|
||||
for (var cookieNum in auth)
|
||||
{
|
||||
for (var cookieNum in auth) {
|
||||
var cookie = auth[cookieNum];
|
||||
if (cookie.display == display && cookie.address == host)
|
||||
{
|
||||
cb( cookie.authName, cookie.authData );
|
||||
if (cookie.display == display && cookie.address == host) {
|
||||
cb(cookie.authName, cookie.authData);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// throw 'No auth cookie matching display=' + display + ' and host=' + host;
|
||||
cb( '', '' );
|
||||
cb('', '');
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue