/*
 * Copyright (C) 2012 Thiago Bellini <hackedbellini@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Most of this code was forked from gnome-shell-extensions convenience.js:
 *   http://git.gnome.org/browse/gnome-shell-extensions/tree/lib/convenience.js
 *
 */

const Gettext = imports.gettext;
const Gdk = imports.gi.Gdk;
const Gio = imports.gi.Gio;

const Config = imports.misc.config;

/*
   Extension utils
 */

function initTranslations(extension) {
  // This is the same as UUID from metadata.json
  let domain = 'gnome-shell-notifications-alert';

  // check if this extension was built with "make zip-file", and thus
  // has the locale files in a subfolder
  // otherwise assume that extension has been installed in the
  // same prefix as gnome-shell
  let localeDir = extension.dir.get_child('locale');
  if (localeDir.query_exists(null)) {
    Gettext.bindtextdomain(domain, localeDir.get_path());
  } else {
    Gettext.bindtextdomain(domain, Config.LOCALEDIR);
  }
}

function getSettings(extension) {
  let schema = 'org.gnome.shell.extensions.notifications-alert';

  const GioSSS = Gio.SettingsSchemaSource;

  // check if this extension was built with "make zip-file", and thus
  // has the schema files in a subfolder
  // otherwise assume that extension has been installed in the
  // same prefix as gnome-shell (and therefore schemas are available
  // in the standard folders)
  let schemaDir = extension.dir.get_child('schemas');
  let schemaSource;
  if (schemaDir.query_exists(null)) {
    schemaSource = GioSSS.new_from_directory(schemaDir.get_path(),
                                             GioSSS.get_default(),
                                             false);
  } else {
    schemaSource = GioSSS.get_default();
  }

  let schemaObj = schemaSource.lookup(schema, true);
  if (!schemaObj) {
    throw new Error('Schema ' + schema + ' could not be found for extension ' +
                    extension.metadata.uuid + '. Please check your installation.');
  }

  return new Gio.Settings({settings_schema: schemaObj});
}

/*
   Color utils
 */

function _scaleRound(value) {
  // Based on gtk/gtkcoloreditor.c
  value = Math.floor((value / 255) + 0.5);
  value = Math.max(value, 0);
  value = Math.min(value, 255);
  return value;
}

function _dec2Hex(value) {
  value = value.toString(16);

  while (value.length < 2) {
    value = '0' + value;
  }

  return value;
}

function getColorByHexadecimal(hex) {
  let colorArray = Gdk.Color.parse(hex);
  let color = null;

  if (colorArray[0]) {
    color = colorArray[1];
  } else {
    // On any error, default to red
    color = new Gdk.Color({red: 65535});
  }

  return color;
}

function getHexadecimalByColor(color) {
  let red = _scaleRound(color.red);
  let green = _scaleRound(color.green);
  let blue = _scaleRound(color.blue);
  return "#" + _dec2Hex(red) + _dec2Hex(green) + _dec2Hex(blue);
}

function getAppNamesFromAppInfos(list) {
  let appNames = [ ];
  for (let i = 0; i < list.length; i++) {
    let id = list[i];
    let appInfo = Gio.DesktopAppInfo.new(id);
    if (!appInfo)
      continue;
    appNames.push(appInfo.get_name());
  }
  return appNames;
}