Coder Social home page Coder Social logo

Comments (2)

oschonrock avatar oschonrock commented on September 27, 2024

sorry, try again on the code:

use phpbrowscap\Browscap;
class PrioritisedBrowscap extends Browscap
{
  /**                                                                                                                                                                                
   *                                                                                                                                                                                 
   */
  protected $priority_patterns = array(
    // this will match the phone ua in front of it if left low down the list                                                                                                         
    'Googlebot\-Mobile', // note that the '-' is escaped in the pattern for some reason                                                                                              
    );
  /**                                                                                                                                                                                
   *                                                                                                                                                                                 
   */
  protected function movePatternToTop($pattern)
  {
    $temp = array($pattern => $this->_patterns[$pattern]);
    unset($this->_patterns[$pattern]);
    $this->_patterns = $temp + $this->_patterns;
  }
  /**                                                                                                                                                                                
   *                                                                                                                                                                                 
   */
  protected function isProrityPattern($pattern)
  {
    foreach ($this->priority_patterns as $priority_pattern)
    {
      if (stripos($pattern, $priority_pattern) !== false)
      {
        return true;
      }
    }
    return false;
  }
  /**                                                                                                                                                                                
   *                                                                                                                                                                                 
   */
  protected function applyPrioritiesToPatterns()
  {
    foreach ($this->_patterns as $pattern => $pattern_data)
    {
      if ($this->isProrityPattern($pattern))
      {
        $this->movePatternToTop($pattern);
      }
    }
  }
  /**                                                                                                                                                                                
   * Parses the array to cache and creates the PHP string to write to disk                                                                                                           
   *                                                                                                                                                                                 
   * @return string the PHP string to save into the cache file                                                                                                                       
   */
  protected function _buildCache()
  {
    $this->applyPrioritiesToPatterns();
    return parent::_buildCache();
  }
}

from phpbrowscap.

quentin389 avatar quentin389 commented on September 27, 2024

Hi, sorry for the delay.

It's not a simple issue... please read this: browscap/browscap#33

So unfortunately I have to fix problems like that separately for each erroneous match :|

And that means, that the idea of adding an optional priority that overrides the automatic order makes a lot of sense.

I can't promise when I'll look at the code and implement it, but I'm keeping this issue in mind.

from phpbrowscap.

Related Issues (20)

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.