0

我一直在为 Linux 和 Mac 编写一个打印机驱动程序后端,它显示一个允许用户选择打印机的窗口。该过程的一部分是让用户输入用户名和密码以进行身份​​验证。这一切都在 Linux 上运行良好。但是,我有一个奇怪的问题。当我以普通用户身份在 OSX Mountain Lion 上运行脚本时,它运行良好。但是,当我通过 CUPS 后端(作为用户 _lp)运行它时,用户名和密码框突然不会收到文本,尽管被选中。部分原因是应用程序也不会在所有窗口之上生成。

我已经搜索并阅读了有关 Mac 如何需要 .app 包的信息,但即使在尝试之后,它也没有解决我的问题。这是我的 LoginWindow 类:

class LoginDialog(wx.Dialog):
  def __init__(self, parent, id=-1, title="Login",
        pos=wx.DefaultPosition,
        size=wx.Size(350, 150),
        style=wx.STAY_ON_TOP | wx.DEFAULT_FRAME_STYLE ):
    wx.Dialog.__init__(self, parent, id, title, pos, size, style)
    wx.StaticText(self, -1, 'Please enter your CAEDM username and password.',
        wx.Point(15,5))
    wx.StaticText(self, -1, 'Username:', wx.Point(20, 32))
    wx.StaticText(self, -1, 'Password: ', wx.Point(25, 57))
    self.nameBox = wx.TextCtrl(self, 1, 'password', wx.Point(100, 30),
        wx.Size(170, -1))
    self.passwordBox = wx.TextCtrl(self, 2, '', wx.Point(100, 55),
        wx.Size(170, -1), style=wx.TE_PASSWORD)
    self.btnOK = wx.Button(self, wx.ID_OK, ' OK ', wx.Point(60, 90),
        wx.DefaultSize)
    self.btnOK.SetDefault()
    self.btnCancel = wx.Button(self, wx.ID_CANCEL, ' Cancel ', wx.Point(160, 90),
        wx.DefaultSize)
    self.https_user = []


def https_bind(self):
    val = self.ShowModal()
    self.SetFocus()
    if val == wx.ID_OK:
        u = self.nameBox.GetValue()
        p = self.passwordBox.GetValue()
        #since the username passed by CUPS is trash, we have to re-invent it (authenticate against HTTPS) 


        try:
            os.environ['REQUESTS_CA_BUNDLE'] = RESOURCE_DIR + '/cacert.pem'
            cert = requests.get("https://lp.et.byu.edu/pa/submit.php", auth=(u, p) )
            print cert.status_code
            if ( cert.status_code == 200 ):
                self.https_user.append(u)
                self.https_user.append(p)
            else:
                d = ErrorDialog(self)
                d.SetTitleText("Server Error")
                d.SetLabelText("         Username or password incorrect.")
                d.ShowModal()
                self.https_bind()

        except:
            d = ErrorDialog(self)
            d.SetTitleText("Server Error")
            d.SetLabelText("         Username or password incorrect.")
            d.ShowModal()
            self.https_bind()

    if val == wx.ID_CANCEL:
        os._exit(0)

**编辑:这似乎是一个 python 范围的错误,因为我的整个应用程序没有捕获关键事件。但是,它可以很好地捕获鼠标。

4

1 回答 1

0

我认为您不仅需要一个 .app 包,而且需要以登录到显示器的同一用户身份运行它。这是一种安全措施,有助于防止桌面网络钓鱼。可能有一些方法可以解决这个问题,例如暂时成为那个用户,或者通过一些系统安全 API 工作,这些 API 将允许进程完全访问另一个用户的显示,但我不知道细节。希望这会给你一些搜索的东西。

另一种可能性是将 UI 拆分为一个单独的进程,该进程会根据来自驱动程序的某些信号在用户空间中启动。然后它可以获取凭据并将其发送回驱动程序。

于 2013-05-02T23:28:58.257 回答