Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create & Remove Windows Print Service [Example] #305

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions examples/create-windows-print-service/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Create & Remove Windows Print Service
This example explain how to create and remove windows print service with nssm.exe and communicate with browser with websocket server.

## Requirements:
- Install nssm http://nssm.cc/download and store into root directory
- Create ESCPOS PHP (In my case, I use https://github.com/mike42/escpos-php) to communicate with ESCPOS Printer Devices in www directory
- Install Hoa Project / Workerman to create websocket server to communicate with browser
- Hoa Project <https://github.com/hoaproject/Websocket> (Read Only Repository)
- Workerman <https://github.com/walkor/workerman>
- Create log file to store printer status and activities in www directory
- set this value `"start_fullscreen": true` in `settings.json`

## Directery structure
```
php/
- php.exe
www/
vendor/
composer.json
composer.lock
- index.php
- install-print-service.php
- remove-print-service.php
- printer-server.php
- printer.log
nssm.exe
```

## If this example may useful for you, please give me feedback
- metions @darkterminal
- or send me email to [email protected]
80 changes: 80 additions & 0 deletions examples/create-windows-print-service/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Printer Server</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="http://127.0.0.1:55072/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="http://127.0.0.1:55072/css/style.css">
</head>
<body>
<div class="fixed-top bg-white d-flex justify-content-between align-items-center">
<strong class="font-weight-bold pl-3">Printer Server</strong>
<button class="btn btn-sm btn-danger rounded-0 px-3" id="close-window"><strong>✖</strong></button>
</div>
<div id="logContainer" class="container-fluid bg-dark text-white py-5" style="white-space: pre-line;"></div>
<div class="fixed-bottom bg-white p-2 text-center">
<?php

ob_start(); // Turn on output buffering
system('ipconfig /all'); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean (erase) the output buffer

$findme = "Physical";
$pmac = strpos($mycom, $findme); // Find the position of Physical text
$mac=substr($mycom,($pmac+36),17); // Get Physical Address

?>
<span>MAC Address: <?= $mac ?></span> | <span>HOST: <?= gethostname() ?></span> | <span id="time">Waiting...</span>
</div>
<script src="http://127.0.0.1:55072/js/jquery.min.js"></script>
<script src="http://127.0.0.1:55072/js/moment-with-locales.min.js"></script>
<script>

const logContainer = document.getElementById("logContainer")
const closeWindowButton = document.getElementById('close-window')

var poll = () => {
fetch('http://127.0.0.1:55072/printer.log', {
method: 'GET'
})
.then(res => res.text())
.then((txt) => {
logContainer.innerHTML = txt
})
.catch((err) => poll())
}
setInterval(poll, 2000)

setInterval(function () {
logContainer.scrollTop = logContainer.scrollHeight;
}, 5000)

moment.locale('id')
setInterval(function () {
document.getElementById('time').innerHTML = moment().format('Do MMMM YYYY, hh:mm:ss a')
}, 1000)

closeWindowButton.addEventListener('click', (e) => {
e.preventDefault()
if ( confirm('Apakah anda yakin?') ) {
$.post( 'http://127.0.0.1:55072/remove-print-service.php', null, function(response) {
console.log('Printer service removed!')
}, 'json' )
window.close()
}
})

window.addEventListener('DOMContentLoaded', () => {
$.post( 'http://127.0.0.1:55072/install-print-service.php', null, function(response) {
console.log('Printer service installed!')
}, 'json' )
})

</script>
</body>
</html>
33 changes: 33 additions & 0 deletions examples/create-windows-print-service/install-print-service.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php

/**

Create Windows Print Service (On Startup Application)

Requirements:
- Install nssm http://nssm.cc/download and store into root directory
- Create ESCPOS PHP (In my case, I use https://github.com/mike42/escpos-php) to communicate with ESCPOS Printer Devices in www directory
- Install Hoa Project / Workerman to create websocket server to communicate with browser
- Hoa Project <https://github.com/hoaproject/Websocket> (Read Only Repository)
- Workerman <https://github.com/walkor/workerman>
- Create log file to store printer status and activities in www directory

**/

// nssm.exe in root directory
$nssm = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'nssm.exe';
// php file that provice print service will regitstered to windows as service using nssm.exe
$service = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'www' . DIRECTORY_SEPARATOR . 'printer-server.php';
// php.exe for running php file inside service
$php = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR . 'php.exe';

// Execute nssm.exe command to register php file to windows service
exec($nssm . ' install PrinterServerServiceRunner ' . $php . ' ' . $service);
// Execute nssm.exe command to start windows service has been registered
exec($nssm . ' start PrinterServerServiceRunner');

// Create printer log file
$logfile = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'printer.log';
$timestamps = date('Y-m-d H:i:s');
// Put log into that file when service is successfully install and running on machine
file_put_contents($logfile, "[$timestamps][INFO] Service has been install and registered on your machine" . PHP_EOL);
103 changes: 103 additions & 0 deletions examples/create-windows-print-service/printer-server.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<?php
/**
Create Windows Print Service (On Startup Application)

Requirements:

- Install nssm http://nssm.cc/download and store into root directory
- Create ESCPOS PHP (In my case, I use https://github.com/mike42/escpos-php) to communicate with ESCPOS Printer Devices in www directory
- Install Hoa Project / Workerman to create websocket server to communicate with browser
- Hoa Project <https://github.com/hoaproject/Websocket> (Read Only Repository)
- Workerman <https://github.com/walkor/workerman>
- Create log file to store printer status and activities in www directory

**/

date_default_timezone_set("Asia/Jakarta");

use Mike42\Escpos\Printer
use Mike42\Escpos\PrintConnectors\WindowsPrintConnector;

require_once dirname(__FILE__) . '/vendor/autoload.php';

$websocket = new Hoa\Websocket\Server(
new Hoa\Socket\Server('ws://127.0.0.1:8889')
);

$websocket->on('open', function (Hoa\Event\Bucket $bucket) {
$message = createMessage('info', 'New connection open! ');
sendToAll($bucket, $message);
logger( $message );
return;
});

$websocket->on('message', function (Hoa\Event\Bucket $bucket) {
$bucketData = $bucket->getData();
$message = $bucketData['message'];

$data = json_decode($message, true);

sendToAll( $bucket, createMessage('info', 'metadata: ' . $data['from']) );
logger( createMessage('info', 'metadata: ' . $data['from']) );
sendToAll( $bucket, createMessage('info', 'active_printer: ' . $data['printer_name']) );
logger( createMessage('info', 'active_printer: ' . $data['printer_name']) );

try {

// write your own php ESCPOS scripts
// ..... or use this example
// Print a "Hello world" to receipt printer
/**
$connector = new WindowsPrintConnector($data['printer_name']);
$printer = new Printer($connector);
$printer->text("Hello world\n");
$printer->cut();
$printer->close();
**/

sendToAll( $bucket, createMessage('info', "notifiy: Receipt has been printered!" );
logger( createMessage('info', "notifiy: Receipt has been printered!" );

} catch (Exception $e) {
sendToAll( $bucket, createMessage('error', "Couldn't print to this printer: " . $e->getMessage()) );
logger( createMessage('error', "Couldn't print to this printer: " . $e->getMessage()) );
}

return;
});

$websocket->on('close', function (Hoa\Event\Bucket $bucket) {
echo 'Connection closed', "\n";
sendToAll($bucket, createMessage('info', 'connection closed!'));
logger( createMessage('info', 'connection closed!') );
return;
});

$websocket->run();

function sendToAll( $bucket, $message )
{
$bucket->getSource()->broadcast($message);
}

function logger( $message )
{
$logfile = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'printer.log';
if ( !file_exists($logfile) ) {
touch($logfile);
}

$longline = count(file($logfile));
if ( $longline >= 1500 ) {
file_put_contents($logfile, createMessage('info', 'New connection open!'));
}

file_put_contents($logfile, $message, FILE_APPEND);
}

function createMessage( $type = 'info', $message )
{
$timestamps = date('Y/m/d H:i:s');
$log = strtoupper($type);
return "[$timestamps][$log] $message" . PHP_EOL;
}
25 changes: 25 additions & 0 deletions examples/create-windows-print-service/remove-print-service.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

/**
Remove Windows Print Service (On Shutdown Application)

Requirements:

- Install nssm http://nssm.cc/download and store into root directory
- Create log file to store printer status and activities in www directory

**/

// nssm.exe in root directory
$nssm = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'nssm.exe';
// php file that provice print service will regitstered to windows as service using nssm.exe
$logfile = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'printer.log';
$timestamps = date('Y-m-d H:i:s');

// Execute nssm.exe command to stop php file in windows service
exec($nssm . ' stop PrinterServerServiceRunner');
// Execute nssm.exe command to remove php windows service
exec($nssm . ' remove PrinterServerServiceRunner confirm');

// Put log into that file when service is successfully install and running on machine
file_put_contents($logfile, "[$timestamps][INFO] New session" . PHP_EOL);