Compare commits

...

28 Commits

Author SHA1 Message Date
7ebb2f84ad Switch go Gulp 4 for builds 2021-01-30 00:01:30 +03:00
0aa7e62a6e Disable versioning for package-lock.json 2021-01-29 23:57:26 +03:00
47f91842e4 Fix security issue in the build environment 2018-11-27 18:33:36 +03:00
4a0a561c0a
Fix typo in README 2018-09-24 15:09:32 +03:00
13b30db232
Fix typo in README 2018-09-24 15:08:31 +03:00
84c94f427a Fix invalid bitmask for release archives 2017-03-30 16:00:47 +03:00
罗光盛
0269150a5f Merge pull request #10 from Mibew/0.4.0
New release
2017-03-29 07:05:47 -05:00
罗光盛
e662cc5e1a Merge pull request #9 from Mibew/fix_settings
Fix error with missed Settings class
2017-03-29 07:05:10 -05:00
a8941cf2b3 Fix error with missed Settings class 2017-03-29 10:47:10 +03:00
1d9daa25ec Bump version 2017-03-29 10:37:51 +03:00
everyx
638cfea943 add group support document 2017-03-25 20:40:30 +08:00
everyx
ecc448482e Merge branch 'master' of github.com:Mibew/mibew-operator-status-plugin 2017-03-25 20:36:54 +08:00
everyx
0375ef42d7 add group support and fix #8 2017-03-25 20:36:47 +08:00
罗光盛
cccbdc39ce Merge pull request #7 from Mibew/release-name
Change name for release archives
2017-03-21 22:56:08 -05:00
15e18503f2 Unify title in README file 2017-03-21 15:43:32 +03:00
240cfad12a Update installation instructions 2017-03-21 15:41:39 +03:00
3ddcb227db Change name for release archives 2017-03-21 15:15:04 +03:00
everyx
5284d7e5ad add build content 2017-03-20 23:30:39 +08:00
everyx
3025f9e3cc add gulp support, fix #6 2017-03-20 23:24:24 +08:00
罗光盛
66ee83b0b0 Merge pull request #5 from Mibew/mibew_transfer
Change namespace to Mibew
2017-03-20 07:17:06 -05:00
682ac0c4e6 Change namespace to Mibew
The repository was transferred to Mibew organization
2017-03-20 11:18:13 +03:00
everyx
8e5d1f6e47 Add any operators online and JSONP support
closes #1, closes #2
2017-03-18 21:56:45 +08:00
everyx
e532b91378 bump to v0.2.0 2017-03-14 21:46:21 +08:00
everyx
4b4f67f051 fix #1 fix #2 2017-03-14 21:39:46 +08:00
everyx
a83f0510ec update package 2017-03-12 10:18:04 +08:00
everyx
ceac3f24ec correct to use unified style for the route 2017-03-12 10:16:57 +08:00
everyx
6dd2f86e99 when code is empty, we shoudl return true if any operator is online 2016-11-05 16:33:12 +08:00
everyx
02c3e71dd9 set Access-Control-Allow-Origin 2016-11-04 19:06:51 +08:00
13 changed files with 233 additions and 95 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# Do not index node.js modules that are used for building
node_modules
package-lock.json
# Do not index releases
release

View File

@ -0,0 +1,115 @@
<?php
/*
* MIT License
*
* Copyright (c) 2016 everyx (lunt.luo@gmail.com)
*
* 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.
*/
namespace Mibew\Mibew\Plugin\OperatorStatus\Controller;
use Mibew\Settings;
use Mibew\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* Operator Status actions
*/
class OperatorStatusController extends AbstractController
{
/**
* Returns true or false of whether an operator is online or not.
*
* @param Request $request
* @return Response Rendered page content
*/
public function isOperatorOnlineAction(Request $request)
{
$is_online = false;
$opcode = $request->attributes->get('opcode');
$online_operators = get_online_operators();
foreach ($online_operators as $item) {
if ($opcode == $item['code']) {
$is_online = true;
break;
}
}
$callback = $request->query->get('callback');
return $this->prepareResponse($is_online, $callback);
}
/**
* Returns true or false of whether any operators is online or not.
*
* @param Request $request
* @return Response Rendered page content
*/
public function hasOnlineOperatorsAction(Request $request)
{
$is_online = has_online_operators();
$callback = $request->query->get('callback');
return $this->prepareResponse($is_online, $callback);
}
/**
* Returns true or false of whether any operators in specificed group is online or not.
*
* @param Request $request
* @return Response Rendered page content
*/
public function isOperatorGroupOnlineAction(Request $request)
{
$is_online = false;
$group_id = $request->attributes->get('group_id');
if (Settings::get('enablegroups') == '1') {
$is_online = has_online_operators($group_id);
}
$callback = $request->query->get('callback');
return $this->prepareResponse($is_online, $callback);
}
/**
* Returns prepared response: JSONP or plain text.
*
* @param Boolean $is_online
* @param String $callback
* @return Response Rendered page content
*/
private function prepareResponse($is_online, $callback) {
$response = NULL;
if ( empty($callback) ) {
$response = new Response( $is_online ? 'true' : 'false' );
$response->headers->set('Access-Control-Allow-Origin', '*');
} else {
$response = new JsonResponse($is_online);
$response->setCallback($callback);
}
return $response;
}
}

View File

@ -23,7 +23,7 @@
* SOFTWARE.
*/
namespace Everyx\Mibew\Plugin\OperatorStatus;
namespace Mibew\Mibew\Plugin\OperatorStatus;
/**
* Main plugin class.
@ -46,6 +46,6 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
*/
public static function getVersion()
{
return '0.1.0';
return '0.4.0';
}
}

View File

@ -1,18 +1,39 @@
# mibew-operator-status-plugin
# Mibew Operator Status plugin
Plugin for Mibew, get statement based on the availability of operators.
# Useage
# Usage
Request `<MIBEW-BASE-URL>/opstatus?code=<OPERATOR-CODE>`, your will get `true` when operator
is online or `false` when operator is offline.
1. Get any operators online status:
* request URL: `<MIBEW-BASE-URL>/opstatus`.
* return `true` when any operators is online and `false` when not.
2. Get any operators online status in specificed group:
* request URL: `<MIBEW-BASE-URL>/opstatus/group/<GROUP-ID>`.
* return `true` when any operators in this group is online and `false` when not.
3. Get an operator online status by operator code:
* Request URL: `<MIBEW-BASE-URL>/opstatus/<OPERATOR-CODE>`.
* return `true` when operator is online or `false` when not.
4. Use callback parameter:
Just insert `<script>` tag and set `src` to URL above and add `callback` parameter
* `<MIBEW-BASE-URL>/opstatus?callback=<CALLBACK_FUNCTION>`
* `<MIBEW-BASE-URL>/opstatus/<OPERATOR-CODE>?callback=<CALLBACK_FUNCTION>`
will return bellow and run `CALLBACK_FUNCTION` automatically.
```javascript
/**/CALLBACK_FUNCTION(status);
```
# Install
1. Get the archive with the plugin sources from link bellow:
* [mibew-operator-status-plugin.tar.gz](archive/mibew-operator-status-plugin.tar.gz)
* [mibew-operator-status-plugin.zip](archive/mibew-operator-status-plugin.zip)
1. Get the archive with the plugin sources. You can download it from the [official site](https://mibew.org/plugins#mibew-operator-status) or build the plugin from sources.
2. Untar/unzip the plugin's archive.
@ -37,6 +58,16 @@ plugins:
...
```
# Build from sources
1. Obtain a copy of the repository using `git clone`, download button, or another way.
2. Install [node.js](http://nodejs.org/) and [npm](https://www.npmjs.org/).
3. Install [Gulp](http://gulpjs.com/).
4. Install npm dependencies using `npm install`.
5. Run Gulp to build the sources using `gulp default`.
Finally `.tar.gz` and `.zip` archives of the ready-to-use Plugin will be available in release directory.
# License
[MIT](LICENSE)

View File

@ -1,9 +0,0 @@
#!/bin/bash
plugin_root_dir='Everyx'
plugin_target_dir="$plugin_root_dir/Mibew/Plugin/OperatorStatus"
mkdir -p $plugin_target_dir
cp -R src/* $plugin_target_dir
tar -czvf archive/mibew-operator-status-plugin.tar.gz $plugin_root_dir
zip -r archive/mibew-operator-status-plugin.zip $plugin_root_dir
rm -rf $plugin_root_dir

44
gulpfile.js Normal file
View File

@ -0,0 +1,44 @@
var eventStream = require('event-stream'),
gulp = require('gulp'),
chmod = require('gulp-chmod'),
zip = require('gulp-zip'),
tar = require('gulp-tar'),
gzip = require('gulp-gzip'),
rename = require('gulp-rename');
gulp.task('prepare-release', function() {
var version = require('./package.json').version;
return eventStream.merge(
getSources()
.pipe(zip('operator-status-plugin-' + version + '.zip')),
getSources()
.pipe(tar('operator-status-plugin-' + version + '.tar'))
.pipe(gzip())
)
.pipe(chmod(0644))
.pipe(gulp.dest('release'));
});
// Builds and packs plugins sources
gulp.task('default', gulp.series('prepare-release'));
/**
* Returns files stream with the plugin sources.
*
* @returns {Object} Stream with VinylFS files.
*/
var getSources = function() {
return gulp.src([
'Controller/*',
'LICENSE',
'Plugin.php',
'README.md',
'routing.yml'
],
{base: './'}
)
.pipe(rename(function(path) {
path.dirname = 'Mibew/Mibew/Plugin/OperatorStatus/' + path.dirname;
}));
}

12
package.json Normal file
View File

@ -0,0 +1,12 @@
{
"version": "0.4.0",
"devDependencies": {
"event-stream": "3.3.4",
"gulp": "^4.0.0",
"gulp-chmod": "~3.0.0",
"gulp-gzip": "~1.1.0",
"gulp-rename": "~1.2.2",
"gulp-tar": "~3.1.0",
"gulp-zip": "~3.0.2"
}
}

14
routing.yml Normal file
View File

@ -0,0 +1,14 @@
mibew_operator_status_has_online_operators:
path: /opstatus
defaults:
_controller: Mibew\Mibew\Plugin\OperatorStatus\Controller\OperatorStatusController::hasOnlineOperatorsAction
mibew_operator_status_has_online_group_operators:
path: /opstatus/group/{group_id}
defaults:
_controller: Mibew\Mibew\Plugin\OperatorStatus\Controller\OperatorStatusController::isOperatorGroupOnlineAction
mibew_operator_status_is_operator_online:
path: /opstatus/{opcode}
defaults:
_controller: Mibew\Mibew\Plugin\OperatorStatus\Controller\OperatorStatusController::isOperatorOnlineAction

View File

@ -1,56 +0,0 @@
<?php
/*
* MIT License
*
* Copyright (c) 2016 everyx (lunt.luo@gmail.com)
*
* 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.
*/
namespace Everyx\Mibew\Plugin\OperatorStatus\Controller;
use Mibew\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* Operator Status actions
*/
class OperatorStatusController extends AbstractController
{
/**
* Returns true or false of whether an operator is online or not.
*
* @param Request $request
* @return Response Rendered page content
*/
public function indexAction(Request $request)
{
$is_online = "false";
$opcode = $request->query->get('code', false);
$online_operators = get_online_operators();
foreach ($online_operators as $item) {
if ($item['code'] == $opcode) {
$is_online = "true";
}
}
return new Response($is_online);
}
}

View File

@ -1,15 +0,0 @@
{
"name": "everyx/mibew-operator-status-plugin",
"description": "An operator status plugin for Mibew 2.0.",
"license": "MIT",
"authors": [
{
"name": "everyx",
"email": "lunt.luo@gmail.com"
}
],
"autoload": {
"psr-0": {"Everyx\\Mibew\\Plugin\\OperatorStatus\\": ""}
},
"target-dir": "Everyx/Mibew/Plugin/OperatorStatus"
}

View File

@ -1,4 +0,0 @@
mibew_boilerplate_hello:
path: /opstatus
defaults:
_controller: Everyx\Mibew\Plugin\OperatorStatus\Controller\OperatorStatusController::indexAction