Coder Social home page Coder Social logo

hoshomoh / csvutils Goto Github PK

View Code? Open in Web Editor NEW
19.0 1.0 7.0 121 KB

A PHP CSV Validator and Conversion Library

Home Page: https://packagist.org/packages/oshomo/csv-utils

License: Apache License 2.0

PHP 95.64% Makefile 3.48% Shell 0.88%
csv php csv-converter csv-reading csv-validator csv-json-converter csv-xml-converter

csvutils's People

Contributors

alexdawn avatar dependabot-preview[bot] avatar hoshomoh avatar peter279k avatar roberto910907 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

csvutils's Issues

String rule (min, max)

Hey there, I hope you are well.

First of all, thanks to everyone who has contributed with this great tool.

I have a question to ask you, because maybe I am not implementing a custom rule in the correct way in the case of using parameters.

I followed the documentation, but there is no example with parameters, so I looked for a class that had them, like Between and I saw that it uses the allowedParameters() method.

Unfortunately it shows me these "Notice" messages:

Notice: Undefined offset: 0 in myproject/.../StringRule.php on line 34.
Notice: Undefined offset: 1 in myproject/.../StringRule.php on line 34.
Notice: Undefined offset: 0 in myproject/.../StringRule.php on line 34.
Notice: Undefined offset: 1 in myproject/.../StringRule.php on line 34.

And the reason is because $parameters is an empty array.

Here it is my StringRule class and when it is called from my script. I don't have a framework installed, it is an isolated script.

// String Rule
<?php

namespace Scripts\Import\Utils;

use Oshomo\CsvUtils\Contracts\ParameterizedRuleInterface;
use Oshomo\CsvUtils\Contracts\ValidationRuleInterface;

require_once __DIR__ . '/../../../vendor/autoload.php';

class StringRule implements ValidationRuleInterface, ParameterizedRuleInterface
{

    /**
     * Should return an array of the allowed parameters.
     * See the between rule. Tha allowed parameters should be
     * tokenized string e.g :min, :max, :first, :last etc.
     */
    public function allowedParameters(): array
    {
        return [':min', ':max'];
    }

    /**
     * Determines if the validation rule passes. This is where we do the
     * actual validation. If the validation passes return true else false.
     *
     * @param mixed $value
     * @param array $parameters
     * @return bool
     */
    public function passes($value, array $parameters): bool
    {
        $stringLength = strlen($value);
        [$min, $max] = $parameters; // <------- NOTICE IS HERE
        return $stringLength < (int) $min || $stringLength > (int) $max;
    }

    /**
     * Get the validation error message. Specify the message that should
     * be returned if the validation fails. You can make use of the
     * :attribute and :value placeholders in the message string.
     */
    public function message(): string
    {
        return "The :attribute value :value must be a string between :min - :max characters on line :line.";
    }
}
// Script
$validator = new Validator('some/valid/file_path', ",", [
    'Password' => ["string:8,20", new StringRule],
    'State' => ["state", new StateRule]
]);

The StateRule class works perfectly, but this one has no parameters.

Thank you very much in advance for your help.

When is support of PHP 8 planned?

Hi, I'm using this library and it little bit blocking me to upgrade to PHP 8, because latest stable release has unsatisfying php version condition. But in master it seems like right condition to be able used in PHP 8 platform. So can you release patch version with change?

Add github pre-commit

@hoshomoh I think it would be a good idea to create a git pre-commit hook file to check coding standard and code coverage before you push to the repo. So people who are contributing with this repository could know that they need to check/fix some stuff to pass some of the required checks before merging.

Example

WDYT?

Replacement typed value bug

FormatsMessages::makeReplacements accepts $value as mixed data type, but ::replaceValuePlaceholder accepts $value only as string, so when value comes as NULL, then it throw error, cause strict_types are required.

PHP7+ compatibility

@hoshomoh Hi there, what do you think if we start supporting php7+?

My suggestions are to have the master branch using php7+ features(by default if you installed this package), since there are so many people/tools using the latest version of the language. We can keep the current code(without types) as antoher branch. So if anyone out there is still using php5.6, they could be able to use a different branch.

By doing that we can increase the php required version in composer.json.

Line number in error data

Hi,

Great library, I was painfully doing validations in a much uglier way before I stumbled upon this.

One thing is missing, I did not find an easy way to retrieve line number in errors data. Pointing the line number when errors occur is IMHO necessary to provide usable feedback to the user.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.